* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0052CC;
    --primary-dim: #003d99;
    --bg-dark: #d5dae3;
    --bg-card: #dfe3eb;
    --bg-card-hover: #d0d6e0;
    --border-color: #e2e8f0;
    --border-glow: #0052CC15;
    --text-primary: #1a2332;
    --text-secondary: #4a5568;
    --text-dim: #94a3b8;
    --gradient-primary: linear-gradient(135deg, #0052CC, #0072ff);
    --gradient-glow: radial-gradient(ellipse at center, #0052CC08 0%, transparent 70%);
}

body {
    font-family: 'Inter', 'Noto Sans Thai', sans-serif;
    background-color: #cdd3dc;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== GRID BACKGROUND ===== */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 82, 204, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 82, 204, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    padding: 0 40px;
    margin: 0 auto;
}

/* Transparent state — when at top of pages with hero/page-header */
.navbar.navbar--transparent {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    padding: 24px 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar.navbar--transparent .nav-links a {
    color: #ffffff;
}

.navbar.navbar--transparent .nav-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.navbar.navbar--transparent .logo-img {
    filter: brightness(0) invert(1);
}

.navbar.navbar--transparent .mobile-toggle {
    color: #ffffff;
}

/* Scrolled state — solid white with shadow */
.navbar.navbar--transparent.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.navbar.navbar--transparent.scrolled .nav-links a {
    color: var(--text-secondary);
}

.navbar.navbar--transparent.scrolled .nav-links a:hover {
    color: var(--primary);
}

.navbar.navbar--transparent.scrolled .logo-img {
    filter: none;
}

.navbar.navbar--transparent.scrolled .mobile-toggle {
    color: var(--text-primary);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-right: 24px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    color: #ffffff;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.logo-img-footer {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hide mobile-only drawer pieces on desktop */
.nav-drawer-header,
.nav-drawer-footer {
    display: none;
}

/* On desktop the icon box is hidden (text only) */
.nav-item-icon {
    display: none;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: 700 !important;
    font-size: 14px;
    transition: opacity 0.3s, transform 0.3s;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 0 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100vw;
    max-width: none;
    height: 100vh;
    margin: 0 calc(50% - 50vw) 72px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: #1a2332;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: hero-slide-fade 30s infinite;
    will-change: opacity, transform;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide:nth-child(5) { animation-delay: 24s; }

.hero-slide-caption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    padding: 0 24px;
    width: 100%;
    max-width: 960px;
    z-index: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero .hero-slide-caption h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    margin: 0 0 16px;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero .hero-slide-caption p {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0;
    text-transform: none;
    max-width: none;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .hero-slide-caption { padding: 0 32px; max-width: 720px; }
    .hero .hero-slide-caption h2 { font-size: 32px; line-height: 1.2; margin-bottom: 14px; }
    .hero .hero-slide-caption p { font-size: 16px; line-height: 1.6; }
}

@media (max-width: 768px) {
    .hero-slide-caption { padding: 0 24px; max-width: 100%; }
    .hero .hero-slide-caption h2 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    .hero .hero-slide-caption p {
        font-size: 13px;
        line-height: 1.7;
        margin: 0 auto;
        max-width: 34ch;
    }
}

@keyframes hero-slide-fade {
    0%   { opacity: 1; transform: scale(1.04); }
    17%  { opacity: 1; transform: scale(1); }
    20%  { opacity: 0; transform: scale(1); }
    97%  { opacity: 0; transform: scale(1.04); }
    100% { opacity: 1; transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide { animation: none; }
    .hero-slide:nth-child(1) { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: var(--text-primary);
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 82, 204, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: #0052CC08;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 100px 0;
    position: relative;
}

/* Alternating section backgrounds for visual rhythm */
#our-partners {
    background: #cad0da;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #0052CC10;
    border: 1px solid #0052CC20;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== PRODUCTS (Pricing-style cards) ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: none;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.product-action {
    margin-top: auto;
    padding: 0 24px 24px;
}

.product-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 4px 24px rgba(0, 82, 204, 0.12);
}

.product-card.featured .product-header {
    background: linear-gradient(135deg, #0052CC15, #0072ff15);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
}

.product-header {
    padding: 32px 28px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.product-series {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.product-desc-short {
    font-size: 14px;
    color: var(--text-secondary);
}

.product-features-list {
    padding: 28px;
    list-style: none;
}

.product-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid #f0f0f050;
}

.product-features-list li:last-child {
    border-bottom: none;
}

.product-features-list li i {
    color: var(--primary);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.product-action {
    padding: 0 28px 28px;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.product-btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 0 20px #0052CC20;
}

.product-btn-primary:hover {
    box-shadow: 0 0 40px #0052CC40;
}

.product-btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.product-btn-outline:hover {
    border-color: var(--primary);
    background: #0052CC08;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #0052CC, #0072ff);
}

.cta-box {
    background: transparent;
    border: none;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, #0052CC08 0%, transparent 50%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -1px;
    color: #ffffff;
}

.cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    position: relative;
}

.cta-box .highlight {
    -webkit-text-fill-color: #ffffff;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    color: #0052CC;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* ===== FOOTER ===== */
.footer {
    border-top: none;
    padding: 60px 0 30px;
    background: #1a2332;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer .logo-text {
    color: #ffffff;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    border-color: #0052CC;
    color: #ffffff;
    background: rgba(0, 82, 204, 0.3);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* ===== MOBILE MENU ===== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

.nav-close,
.nav-backdrop {
    display: none;
}

@media (max-width: 768px) {
    .nav-close,
    .nav-backdrop {
        display: flex;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 48px; }
    .section-title { font-size: 36px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 14px 0;
    }
    .navbar .container {
        padding: 0 20px;
    }
    .navbar.navbar--transparent {
        padding: 18px 0;
    }
    .navbar.navbar--transparent.scrolled {
        padding: 10px 0;
    }
    .mobile-toggle { display: block; }

    /* Off-canvas side drawer */
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 88%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 20px 20px 24px;
        gap: 0;
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links.active {
        transform: translateX(0);
    }

    /* Drawer header: logo + close */
    .nav-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 4px 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        margin-bottom: 20px;
    }
    .nav-drawer-logo {
        display: block;
    }
    .nav-drawer-logo img {
        height: 44px;
        width: auto;
        display: block;
    }
    .nav-close {
        width: 38px;
        height: 38px;
        background: #1a2332;
        border: none;
        font-size: 16px;
        color: #ffffff;
        cursor: pointer;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, transform 0.2s;
    }
    .nav-close:hover {
        background: #0b1324;
        transform: rotate(90deg);
    }

    /* Menu list */
    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .nav-menu li {
        list-style: none;
        width: 100%;
    }

    /* Icon + text menu items */
    .navbar .nav-menu a,
    .navbar.navbar--transparent .nav-menu a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 10px 12px;
        border-radius: 14px;
        color: var(--text-primary);
        font-size: 15px;
        font-weight: 500;
        text-align: left;
        transition: background 0.2s, color 0.2s;
    }
    .nav-item-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: rgba(0, 82, 204, 0.08);
        color: var(--primary);
        font-size: 16px;
        flex-shrink: 0;
        transition: background 0.2s, color 0.2s;
    }
    .navbar .nav-menu a:hover,
    .navbar .nav-menu a.active {
        background: rgba(0, 82, 204, 0.06);
        color: var(--primary);
    }
    .navbar .nav-menu a:hover .nav-item-icon,
    .navbar .nav-menu a.active .nav-item-icon {
        background: rgba(0, 82, 204, 0.18);
        color: var(--primary);
    }

    /* Primary CTA button */
    .nav-links .nav-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 20px;
        margin-top: 20px;
        background: #1a2332;
        color: #ffffff !important;
        border-radius: 100px;
        font-size: 15px;
        font-weight: 600 !important;
        text-align: center;
    }
    .nav-links .nav-cta:hover {
        background: #0b1324;
    }

    /* Drawer footer: contact + social */
    .nav-drawer-footer {
        display: block;
        margin-top: auto;
        padding-top: 24px;
    }
    .nav-drawer-footer h4 {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-dim);
        margin-bottom: 14px;
        letter-spacing: 0.5px;
    }
    .nav-drawer-social {
        display: flex;
        gap: 12px;
        align-items: center;
    }
    .nav-social {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff !important;
        font-size: 17px;
        transition: transform 0.2s, filter 0.2s;
    }
    .nav-social:hover {
        transform: translateY(-2px);
        filter: brightness(1.1);
    }
    .nav-social-phone { background: #1a2332; }
    .nav-social-line  { background: #06C755; }
    .nav-social-mail  { background: #EA4335; }
    .nav-social-fb    { background: #1877F2; }

    /* Backdrop overlay */
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        z-index: 999;
    }
    .nav-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Lock body scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }

    /* Hero */
    .hero {
        padding: 0 16px 60px;
    }
    .hero-slider {
        height: 100vh;
        border-radius: 0;
        margin: 0 calc(50% - 50vw) 48px;
    }
    .hero h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 0 24px;
    }
    .hero-buttons .btn-primary {
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Sections */
    .section { padding: 60px 0; }
    .section-title { font-size: 24px; }
    .section-desc { font-size: 14px; }
    .section-badge { font-size: 11px; }

    /* Grids */
    .products-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    /* App-style footer */
    .footer { padding: 48px 0 24px; }
    .footer-grid {
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-brand {
        text-align: center;
    }
    .footer-brand .logo {
        justify-content: center;
    }
    .footer-brand p {
        font-size: 13px;
    }
    .footer-social {
        justify-content: center;
        gap: 16px;
    }
    .footer-social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 18px;
    }

    .footer-col {
        text-align: center;
    }
    .footer-col h4 {
        margin-bottom: 16px;
    }
    .footer-col ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .footer-col ul li {
        margin-bottom: 0;
    }
    .footer-col ul li a {
        display: block;
        padding: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        font-size: 13px;
        transition: background 0.2s, border-color 0.2s;
    }
    .footer-col ul li a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }

    /* Contact column: full-width CTA buttons */
    .footer-col:last-child ul {
        grid-template-columns: 1fr;
    }
    .footer-col:last-child ul li a {
        padding: 14px;
        background: rgba(0, 82, 204, 0.2);
        border-color: rgba(0, 82, 204, 0.3);
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 11px;
    }

    /* CTA */
    .cta-box h2 { font-size: 24px; }
    .cta-box { padding: 40px 20px; }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        justify-content: center;
        font-size: 14px;
    }

    /* Logo */
    .logo-icon {
        height: 32px;
    }
    .logo { margin-right: 0; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PAGE HEADER (Sub pages) ===== */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, #0052CC08 0%, transparent 60%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -2px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.page-header-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.page-header .section-badge {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.page-header .highlight {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    background-clip: unset;
    color: #ffffff;
}

/* ===== REVIEW STATS ===== */
.review-stats-section {
    padding-top: 40px;
}

.review-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.review-stat-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-card);
    border: none;
    border-radius: 16px;
    transition: all 0.4s;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.review-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.review-stat-icon {
    width: 56px;
    height: 56px;
    background: #0052CC10;
    border: 1px solid #0052CC20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--primary);
}

.review-stat-value {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.review-stat-label {
    font-size: 13px;
    color: var(--text-dim);
}

/* ===== REVIEW CARDS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-card);
    border: none;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: #0052CC10;
    border: 1px solid #0052CC20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.review-name {
    font-size: 15px;
    font-weight: 700;
}

.review-company {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px;
}

.review-product {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #0052CC08;
    border: 1px solid #0052CC15;
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

/* ===== CONTACT INFO ===== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-info-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: none;
    border-radius: 16px;
    transition: all 0.4s;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: #0052CC10;
    border: 1px solid #0052CC20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary);
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-info-card p a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info-card p a:hover {
    opacity: 0.8;
}

.contact-info-note {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 8px;
}

/* ===== CONTACT FORM ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper,
.contact-map-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px #0052CC15;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238892a8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    width: 100%;
    justify-content: center;
    font-family: inherit;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* ===== RESPONSIVE (new pages) ===== */
@media (max-width: 1024px) {
    .review-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .page-header-title { font-size: 40px; }
}

@media (max-width: 768px) {
    .page-header { padding: 130px 0 60px; }
    .page-header-title { font-size: 32px; letter-spacing: -1px; }
    .page-header-desc { font-size: 16px; }
    .review-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper,
    .contact-map-wrapper { padding: 24px; }
}

/* ===== PRODUCT CARD IMAGES ===== */
.product-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8, #e8edf5);
    border-bottom: 1px solid var(--border-color);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

.product-card {
    cursor: pointer;
}

/* ===== PRODUCT MODAL ===== */
.product-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow-y: auto;
}

.product-modal-overlay.active {
    display: flex;
}

.product-modal {
    background: var(--bg-card);
    border: none;
    border-radius: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.product-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.product-modal-close:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 100vh;
}

/* Gallery */
.product-modal-gallery {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-right: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    justify-content: center;
}

.modal-main-image {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, #f0f4f8, #e8edf5);
    overflow: hidden;
}

.modal-main-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    padding: 20px;
}

.modal-thumbnails {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.modal-thumbnail {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
    background: linear-gradient(135deg, #f0f4f8, #e8edf5);
}

.modal-thumbnail:hover,
.modal-thumbnail.active {
    border-color: var(--primary);
}

.modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

/* Info */
.product-modal-info {
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.product-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #0052CC10;
    border: 1px solid #0052CC20;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
}

.product-modal-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.product-modal-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-modal-standard {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.product-modal-standard span {
    padding: 4px 10px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 500;
}

.product-modal-features-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-modal-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
    max-height: none;
    overflow-y: visible;
}

.product-modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-modal-features li i {
    color: var(--primary);
    font-size: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.product-modal-actions {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.product-modal-actions .btn-primary,
.product-modal-actions .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
    flex: 1;
    justify-content: center;
}

/* ===== MODAL RESPONSIVE ===== */
@media (max-width: 768px) {
    .product-modal-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .product-modal-gallery {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        position: relative;
        height: auto;
        min-height: auto;
    }
    .modal-main-image img {
        height: 220px;
    }
    .product-modal-info {
        padding: 24px 20px;
    }
    .product-modal-title {
        font-size: 22px;
    }
    .product-modal-actions {
        flex-direction: column;
    }
    .product-modal {
        height: 100vh;
    }
    .product-modal-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto 24px;
    background: rgba(15, 20, 35, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-text i {
    color: #ffa500;
    font-size: 22px;
    flex-shrink: 0;
}

.cookie-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--primary);
    color: #000;
}

.cookie-btn-accept:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookie-btn-decline:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }
    .cookie-text {
        flex-direction: column;
        gap: 8px;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 212, 255, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* ===== BUSINESS PARTNERSHIP ===== */
.partners-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

.partners-track-reverse {
    animation: marqueeScrollReverse 30s linear infinite;
}

@keyframes marqueeScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s, background 0.3s;
}

.partner-logo:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.partner-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partners-track {
        gap: 16px;
    }
    .partner-logo {
        padding: 12px 20px;
    }
    .partner-logo img {
        height: 32px;
    }
}

/* ===== BRANDS WE USE ===== */
.brands-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.brands-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.brands-track-left {
    animation: brandsScrollLeft 40s linear infinite;
}

.brands-track-right {
    animation: brandsScrollRight 40s linear infinite;
}

.brands-marquee:hover .brands-track {
    animation-play-state: paused;
}

@keyframes brandsScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes brandsScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.brand-logo {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.brand-logo:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.brand-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brands-track {
        gap: 12px;
    }
    .brand-logo {
        padding: 10px 16px;
    }
    .brand-logo img {
        height: 28px;
    }
}


/* ===== PRIVACY POLICY CONTENT ===== */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
}

.privacy-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.privacy-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.privacy-content ul {
    list-style: none;
    margin-bottom: 16px;
}

.privacy-content ul li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.privacy-content ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.privacy-content a {
    color: var(--primary);
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 24px;
    }
}

/* ===== DDW-STYLE SECTIONS ===== */
.ddw-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.ddw-section-header h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.ddw-section-header h2 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ddw-section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.ddw-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.3s;
}

.ddw-link i {
    font-size: 12px;
    transition: transform 0.3s;
}

.ddw-link:hover {
    gap: 14px;
}

.ddw-link:hover i {
    transform: translateX(4px);
}

/* --- PRODUCTS SHOWCASE --- */
.ddw-products {
    background: #ffffff;
}

.ddw-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ddw-product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s;
}

.ddw-product-card:hover {
    transform: translateY(-6px);
}

.ddw-product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
    margin-bottom: 18px;
}

.ddw-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ddw-product-card:hover .ddw-product-img img {
    transform: scale(1.05);
}

.ddw-product-info h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

/* --- SOLUTIONS BY INDUSTRY --- */
.ddw-solutions {
    background: #f5f7fa;
}

.ddw-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ddw-solution-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 16px;
    text-decoration: none;
    color: #ffffff;
    background: #0f172a;
    border: 0;
    padding: 0;
    cursor: pointer;
    font: inherit;
    text-align: left;
    width: 100%;
    isolation: isolate;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.ddw-solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    pointer-events: none;
    z-index: 3;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.ddw-solution-card::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, background 0.4s ease;
}

.ddw-solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.ddw-solution-card:hover::before {
    border-color: rgba(0, 82, 204, 0.55);
    box-shadow: inset 0 0 30px rgba(0, 82, 204, 0.15);
}

.ddw-solution-card:hover::after {
    transform: scale(1) rotate(90deg);
    opacity: 1;
    background: var(--primary);
}

.ddw-solution-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    filter: brightness(0.88) saturate(0.9);
}

.ddw-solution-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.05) saturate(1.1);
}

.ddw-solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 15, 35, 0.96) 0%, rgba(0, 82, 204, 0.35) 45%, rgba(0, 0, 0, 0.05) 85%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px;
    z-index: 2;
}

.ddw-solution-overlay h3 {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.2px;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ddw-solution-overlay::after {
    content: 'ดูรายละเอียด \2192';
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(8px);
    transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin 0.4s ease;
    margin-top: 0;
}

.ddw-solution-card:hover .ddw-solution-overlay h3 {
    transform: translateY(-2px);
}

.ddw-solution-card:hover .ddw-solution-overlay::after {
    max-height: 22px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 8px;
}

/* --- SOLUTION MODAL --- */
.solution-modal-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 82, 204, 0.35) 0%, rgba(8, 15, 35, 0.85) 60%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.solution-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.solution-modal {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f6f9ff 100%);
    border-radius: 24px;
    max-width: 980px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    box-shadow: 0 30px 80px rgba(0, 30, 100, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.solution-modal-overlay.active .solution-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.solution-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.solution-modal-close:hover {
    transform: rotate(90deg) scale(1.08);
    background: var(--primary);
    color: #ffffff;
}

.solution-modal-image {
    position: relative;
    background: #0f172a;
    overflow: hidden;
    min-height: 320px;
}

.solution-modal-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.25) 0%, transparent 45%, rgba(8, 15, 35, 0.4) 100%);
    pointer-events: none;
}

.solution-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.solution-modal-overlay.active .solution-modal-image img {
    transform: scale(1);
}

.solution-modal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.solution-modal-badge i { font-size: 11px; }

.solution-modal-body {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    overflow-y: auto;
    position: relative;
}

.solution-modal-body::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.solution-modal-body > * { position: relative; z-index: 1; }

.solution-modal-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
}

.solution-modal-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-modal-divider {
    width: 48px;
    height: 3px;
    border-radius: 3px;
    background: var(--gradient-primary);
    margin: 4px 0 8px;
}

.solution-modal-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin: 0;
}

.solution-modal-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.solution-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.35);
}

.solution-modal-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 82, 204, 0.45);
}

.solution-modal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.solution-modal-link i {
    transition: transform 0.3s ease;
}

.solution-modal-link:hover { color: #0046B3; }
.solution-modal-link:hover i { transform: translateX(4px); }

/* Cascade entry animation for content */
.solution-modal-overlay.active .solution-modal-kicker,
.solution-modal-overlay.active .solution-modal-title,
.solution-modal-overlay.active .solution-modal-divider,
.solution-modal-overlay.active .solution-modal-desc,
.solution-modal-overlay.active .solution-modal-actions {
    animation: solutionModalSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.solution-modal-overlay.active .solution-modal-kicker    { animation-delay: 0.10s; }
.solution-modal-overlay.active .solution-modal-title     { animation-delay: 0.18s; }
.solution-modal-overlay.active .solution-modal-divider   { animation-delay: 0.26s; }
.solution-modal-overlay.active .solution-modal-desc      { animation-delay: 0.32s; }
.solution-modal-overlay.active .solution-modal-actions   { animation-delay: 0.42s; }

@keyframes solutionModalSlideIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

body.solution-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .solution-modal {
        grid-template-columns: 1fr;
        max-height: 92vh;
        border-radius: 20px;
    }
    .solution-modal-image { aspect-ratio: 16 / 10; min-height: 0; }
    .solution-modal-body { padding: 28px 22px 32px; }
    .solution-modal-title { font-size: 24px; }
    .solution-modal-desc { font-size: 14px; line-height: 1.75; }
    .solution-modal-badge { top: 14px; left: 14px; font-size: 10px; padding: 6px 12px; }
    .solution-modal-close { top: 12px; right: 12px; width: 36px; height: 36px; }
    .solution-modal-actions { gap: 16px; }
    .solution-modal-cta { padding: 12px 22px; font-size: 13px; }
}

/* --- FEATURED PRODUCT SPOTLIGHTS --- */
.ddw-spotlights {
    background: #ffffff;
}

.ddw-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.ddw-spotlight:last-child {
    margin-bottom: 0;
}

.ddw-spotlight-reverse .ddw-spotlight-img {
    order: 2;
}

/* --- Slide-in animation on scroll (image from one side, text from the other) --- */
.ddw-spotlight.fade-in {
    opacity: 1;
    transform: none;
}

.ddw-spotlight .ddw-spotlight-img,
.ddw-spotlight .ddw-spotlight-text {
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.ddw-spotlight .ddw-spotlight-img { transform: translateX(-60px); transition-delay: 0.1s; }
.ddw-spotlight .ddw-spotlight-text { transform: translateX(60px); transition-delay: 0.25s; }

.ddw-spotlight.ddw-spotlight-reverse .ddw-spotlight-img { transform: translateX(60px); }
.ddw-spotlight.ddw-spotlight-reverse .ddw-spotlight-text { transform: translateX(-60px); }

.ddw-spotlight.visible .ddw-spotlight-img,
.ddw-spotlight.visible .ddw-spotlight-text {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .ddw-spotlight .ddw-spotlight-img,
    .ddw-spotlight .ddw-spotlight-text {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.ddw-spotlight-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: #f5f5f5;
    padding: 24px;
    box-sizing: border-box;
}

.ddw-spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.ddw-spotlight:hover .ddw-spotlight-img img {
    transform: scale(1.03);
}

.ddw-spotlight-text h3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.ddw-spotlight-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.ddw-spotlight-text ul {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.ddw-spotlight-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.ddw-spotlight-text ul li i {
    color: var(--primary);
    font-size: 13px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* --- CUSTOM SERVICE --- */
.ddw-service {
    background: #f5f7fa;
}

.ddw-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ddw-service-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ddw-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.ddw-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 82, 204, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--primary);
}

.ddw-service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.ddw-service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* --- CUSTOM SERVICE (DDW-style layout) --- */
.custom-service-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: stretch;
}

.custom-service-intro {
    display: flex;
    flex-direction: column;
}

.custom-service-intro .custom-service-image {
    flex: 1 1 auto;
    min-height: 0;
}

.custom-service-intro .custom-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-service-intro h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.custom-service-intro h2 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-service-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.custom-service-image {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #f5f5f5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.custom-service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.custom-service-image:hover img {
    transform: scale(1.05);
}

.custom-service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 28px 32px;
    align-content: stretch;
}

.custom-service-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.custom-service-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 82, 204, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    transition: background 0.3s, color 0.3s;
}

.custom-service-card:hover .custom-service-icon {
    background: var(--primary);
    color: #ffffff;
}

.custom-service-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
    line-height: 1.4;
}

.custom-service-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.custom-service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 16px rgba(0, 82, 204, 0.25);
    align-self: center;
    justify-self: start;
}

.custom-service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.35);
    background: #0046B3;
}

/* --- WHY CHOOSE US --- */
.ddw-why {
    background: #ffffff;
}

.ddw-why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ddw-why-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: #f5f5f5;
}

.ddw-why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ddw-why-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.ddw-why-text h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.ddw-why-text h2 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ddw-why-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
}

.ddw-why-text .ddw-link {
    margin-top: 12px;
}

/* --- DDW RESPONSIVE --- */
@media (max-width: 1024px) {
    .ddw-section-header h2 { font-size: 32px; }
    .ddw-products-grid { grid-template-columns: repeat(2, 1fr); }
    .ddw-solutions-grid { grid-template-columns: repeat(3, 1fr); }
    .ddw-service-grid { grid-template-columns: repeat(2, 1fr); }
    .custom-service-layout { grid-template-columns: 1fr; gap: 48px; }
    .custom-service-intro h2 { font-size: 30px; }
    .ddw-spotlight { gap: 40px; }
    .ddw-spotlight-text h3 { font-size: 30px; }
    .ddw-why-layout { gap: 40px; }
    .ddw-why-text h2 { font-size: 32px; }
}

@media (max-width: 768px) {
    .ddw-section-header { margin-bottom: 40px; }
    .ddw-section-header h2 { font-size: 26px; }
    .ddw-section-header p { font-size: 14px; }

    .ddw-products-grid,
    .ddw-service-grid { grid-template-columns: 1fr; gap: 20px; }

    .custom-service-layout { grid-template-columns: 1fr; gap: 40px; }
    .custom-service-features { grid-template-columns: 1fr; gap: 20px; }
    .custom-service-intro h2 { font-size: 26px; }

    .ddw-solutions-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .ddw-solution-card { aspect-ratio: 1 / 1; }
    .ddw-solution-overlay { padding: 16px; }
    .ddw-solution-overlay h3 { font-size: 15px; }

    .ddw-spotlight {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 56px;
    }
    .ddw-spotlight-reverse .ddw-spotlight-img { order: 0; }
    .ddw-spotlight-text h3 { font-size: 26px; }
    .ddw-spotlight-tag { font-size: 12px; margin-bottom: 16px; }
    .ddw-spotlight-text ul li { font-size: 14px; }

    .ddw-service-card { padding: 32px 24px; }

    .ddw-why-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ddw-why-text h2 { font-size: 26px; margin-bottom: 18px; }
    .ddw-why-text p { font-size: 14px; }
}

