
        :root {
            /* Brand */
            --amber: #F5A623;
            --amber-light: #FFC85A;
            --amber-dark: #D98B10;
            --amber-glow: rgba(245, 166, 35, .18);
            --amber-glow2: rgba(245, 166, 35, .08);

            /* Surfaces */
            --dark: #111110;
            --dark2: #1A1A18;
            --dark3: #242420;
            --dark-card: #282826;
            --cream: #F9F5F0;
            --cream2: #F0EAE0;
            --cream3: #F4EFE7;

            /* Text */
            --text: #111110;
            --text-sec: #555550;
            --text-muted: #888880;
            --text-inv: #FFFFFF;
            --text-inv-dim: rgba(255, 255, 255, .6);

            /* Borders */
            --border: rgba(0, 0, 0, .09);
            --border-dark: rgba(255, 255, 255, .10);

            /* Gradients */
            --grad-amber: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
            --grad-dark: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
            --grad-text: linear-gradient(135deg, var(--amber-dark) 0%, var(--amber-light) 100%);

            /* Shadows */
            --shadow-xs: 0 2px 8px rgba(0, 0, 0, .06);
            --shadow-sm: 0 4px 16px rgba(0, 0, 0, .08);
            --shadow-md: 0 8px 28px rgba(0, 0, 0, .13);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, .17);
            --shadow-amber: 0 10px 32px rgba(245, 166, 35, .40);
            --shadow-amber-sm: 0 6px 18px rgba(245, 166, 35, .32);

            /* Typography */
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'DM Sans', system-ui, sans-serif;

            /* Font sizes */
            --fs-xs: .72rem;
            --fs-sm: .82rem;
            --fs-base: .9rem;
            --fs-md: 1rem;
            --fs-lg: 1.1rem;
            --fs-xl: 1.3rem;
            --fs-2xl: 1.6rem;
            --fs-3xl: 2rem;
            --fs-4xl: 2.5rem;

            /* Font weights */
            --fw-light: 300;
            --fw-regular: 400;
            --fw-medium: 500;
            --fw-semi: 600;
            --fw-bold: 700;
            --fw-black: 900;

            /* Spacing */
            --sp-1: 4px;
            --sp-2: 8px;
            --sp-3: 12px;
            --sp-4: 16px;
            --sp-5: 20px;
            --sp-6: 24px;
            --sp-8: 32px;
            --sp-10: 40px;
            --sp-12: 48px;
            --sp-16: 64px;
            --sp-20: 80px;

            /* Radii */
            --rad-xs: 6px;
            --rad-sm: 10px;
            --rad-md: 16px;
            --rad-lg: 24px;
            --rad-xl: 32px;
            --rad-2xl: 40px;
            --rad-full: 999px;

            /* Transitions */
            --ease: cubic-bezier(.4, 0, .2, 1);
            --dur-base: .28s;
            --dur-slow: .5s;
            --t: var(--dur-base) var(--ease);
            --t-slow: var(--dur-slow) var(--ease);

            --navbar-h: 66px;
        }

        /* ═══════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: var(--fs-md);
            line-height: 1.7;
            background: var(--cream);
            color: var(--text);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
        }

        /* ═══════════════════════════════════════════
       UTILITIES
    ═══════════════════════════════════════════ */
        .text-amber {
            color: var(--amber) !important;
        }

        .bg-amber {
            background: var(--amber) !important;
        }

        .gradient-text {
            background: var(--grad-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.85rem, 3.2vw, 2.85rem);
            font-weight: var(--fw-bold);
            line-height: 1.15;
            color: var(--dark);
        }

        /* ═══════════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════════ */
        .primary-btn,
        .secondary-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--sp-2);
            font-family: var(--font-body);
            font-weight: var(--fw-semi);
            font-size: var(--fs-base);
            padding: 10px 28px;
            border-radius: var(--rad-full);
            border: 2px solid transparent;
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
            transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
            position: relative;
            overflow: hidden;
        }

        .primary-btn {
            background: var(--grad-amber);
            color: var(--dark);
            box-shadow: var(--shadow-amber-sm);
        }

        .primary-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, .18);
            opacity: 0;
            transition: opacity var(--t);
        }

        .primary-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-amber);
            color: var(--dark);
        }

        .primary-btn:hover::before {
            opacity: 1;
        }

        .primary-btn:active {
            transform: translateY(0);
        }

        .secondary-btn {
            background: transparent;
            color: var(--text-inv);
            border-color: rgba(255, 255, 255, .5);
        }

        .secondary-btn:hover {
            background: var(--dark);
            color: var(--text-inv);
            border-color: var(--dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .secondary-btn:active {
            transform: translateY(0);
        }

        .primary-btn.btn-sm,
        .secondary-btn.btn-sm {
            padding: 8px 20px;
            font-size: var(--fs-sm);
        }

        /* ═══════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════ */
        .navbar {
            background: var(--cream);
            padding: 0 !important;
            height: var(--navbar-h);
            transition: box-shadow var(--t);
        }

        .navbar.scrolled {
            box-shadow: var(--shadow-sm);
        }

        .navbar-brand {
            font-family: var(--font-display);
            font-weight: var(--fw-bold);
            font-size: var(--fs-xl);
            color: var(--dark) !important;
            display: flex;
            align-items: center;
            gap: var(--sp-2);
            letter-spacing: -.01em;
        }

        .logo-diamond {
            width: 24px;
            height: 24px;
            background: var(--grad-amber);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            flex-shrink: 0;
            transition: transform var(--t);
        }

        .navbar-brand:hover .logo-diamond {
            transform: rotate(90deg);
        }

        .navbar-nav .nav-link {
            color: var(--text-sec) !important;
            font-weight: var(--fw-medium);
            font-size: var(--fs-base);
            padding: 0 !important;
            margin: 0 var(--sp-4);
            position: relative;
            transition: color var(--t);
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--amber);
            border-radius: var(--rad-full);
            transition: width var(--t);
        }

        .navbar-nav .nav-link:hover {
            color: var(--amber) !important;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .nav-icon-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-sec);
            font-size: var(--fs-lg);
            width: 36px;
            height: 36px;
            border-radius: var(--rad-full);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background var(--t), color var(--t);
        }

        .nav-icon-btn:hover {
            background: var(--amber-glow2);
            color: var(--amber);
        }

        /* ═══════════════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════════════ */
        .hero-section {
            padding: 0 clamp(16px, 4vw, 70px) clamp(32px, 4vw, 55px);
            background: var(--cream);
        }

        .hero-content {
            position: relative;
            padding: clamp(24px, 3vw, 40px);
            border-radius: 30px;
            background: url("../img/hero.jpg") center/cover no-repeat;
            min-height: 520px;
            display: flex;
            align-items: center;
           
}

        .hero-content::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 30px;
            background: linear-gradient(to right, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .60) 35%, rgba(0, 0, 0, .25) 65%, rgba(0, 0, 0, .05) 100%);
            z-index: 1;
            pointer-events: none;
        }

       

        .hero-content>.row {
            position: relative;
            z-index: 2;
            width: 100%;
            margin: 0;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245, 166, 35, .08);
            color: #d89012;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            padding: 10px 18px;
            border-radius: var(--rad-full);
            border: 1px solid rgba(245, 166, 35, .15);
            margin-bottom: var(--sp-6);
            backdrop-filter: blur(8px);
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.6vw, 3.8rem);
            font-weight: 800;
            line-height: 1.06;
            color: var(--text-inv);
            letter-spacing: -0.04em;
            font-style: oblique;
            margin-bottom: var(--sp-5);
        }

        .hero-title span {
            background: linear-gradient(135deg, #d98b10 0%, #ffbf4d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, .88);
            font-size: var(--fs-md);
            line-height: 1.85;
            max-width: 500px;
            margin-bottom: var(--sp-8);
        }

        /* ═══════════════════════════════════════════
       INQUIRY FORM
    ═══════════════════════════════════════════ */
        .inquiry-form-card {
            background: rgba(255, 255, 255, .82);
            border-radius: 20px;
            padding: clamp(20px, 3vw, 30px);
            backdrop-filter: blur(18px);
        }

        .form-label-custom {
            display: block;
            font-size: .78rem;
            font-weight: var(--fw-medium);
            letter-spacing: .06em;
            color: rgba(62, 58, 53, .9);
            margin-bottom: 8px;
        }

        .form-group-icon {
            position: relative;
        }

        .form-group-icon .fgi-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #9d978f;
            font-size: .95rem;
            transition: color var(--t);
            pointer-events: none;
        }

        .form-group-icon:focus-within .fgi-icon {
            color: var(--amber);
        }

        .form-control-custom {
            width: 100%;
            height: 42px;
            background: rgba(240, 234, 224, .20);
            border: 1px solid rgba(0, 0, 0, .07);
            border-radius: 14px;
            padding: 0 18px 0 44px;
            font-size: .94rem;
            font-family: var(--font-body);
            color: #222;
            outline: none;
            transition: border-color var(--t), background var(--t), box-shadow var(--t);
        }

        .form-control-custom::placeholder {
            color: #928c84;
            font-size: .9rem;
        }

        .form-control-custom:hover {
            border-color: rgba(245, 166, 35, .25);
            background: rgba(255, 255, 255, .6);
        }

        .form-control-custom:focus {
            background: #fff;
            border-color: var(--amber);
            box-shadow: 0 0 0 4px rgba(245, 166, 35, .10);
        }

        select.form-control-custom {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20'%3E%3Cpath fill='%2388827a' d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 44px;
        }

        /* ═══════════════════════════════════════════
       BENTO GRID
    ═══════════════════════════════════════════ */
        .bento-section{
            padding: 0 clamp(16px, 4vw, 70px) clamp(32px, 4vw, 55px);
        }

        .section{
            padding: 60px 0;
        }
        .hero-bento {
            display: grid;
            grid-template-columns: 1.2fr 2fr 1.2fr;
            gap: var(--sp-5);
        }

        .hero-box {
            position: relative;
            overflow: hidden;
            border-radius: var(--rad-lg);
            background: var(--cream3);
        }

        .hero-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform var(--t-slow);
        }

        .hero-box:hover img {
            transform: scale(1.04);
        }

        /* Left large */
        .hero-large {
            height: 400px;
        }

        .hero-large::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .20) 60%, rgba(0, 0, 0, .04) 100%);
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: var(--sp-10);
            left: var(--sp-10);
            max-width: 340px;
            z-index: 5;
            color: var(--text-inv);
        }

        .hero-overlay h2 {
            font-family: var(--font-display);
            font-size: var(--fs-3xl);
            line-height: 1.4;
            font-weight: var(--fw-semi);
            margin-bottom: var(--sp-4);
        }

        .hero-overlay p {
            font-size: var(--fs-base);
            opacity: .85;
            line-height: 1.85;
        }

        .hero-arrow {
            position: absolute;
            bottom: var(--sp-8);
            right: var(--sp-8);
            width: 68px;
            height: 68px;
            border-radius: var(--rad-full);
            background: var(--grad-amber);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-size: var(--fs-2xl);
            z-index: 5;
            box-shadow: var(--shadow-amber-sm);
            transition: transform var(--t), box-shadow var(--t);
        }

        .hero-arrow:hover {
            transform: scale(1.08) rotate(15deg);
            box-shadow: var(--shadow-amber);
        }

        /* Center column */
        .hero-middle {
            display: flex;
            flex-direction: column;
            gap: var(--sp-5);
        }

        .hero-about {
            background: var(--amber);
            padding: var(--sp-6);
            min-height: 200px;
            border-radius: var(--rad-lg);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: var(--sp-4);
            overflow: hidden;
        }

        .hero-about h4 {
            font-family: var(--font-display);
            color: var(--text-inv);
            font-size: var(--fs-2xl);
            font-weight: var(--fw-bold);
            margin-bottom: var(--sp-3);
        }

        .hero-about p {
            color: rgba(255, 255, 255, .88);
            line-height: 1.85;
            font-size: var(--fs-base);
        }

        .hero-about img {
            width: 180px;
            height: 160px;
            object-fit: cover;
            border-radius: var(--rad-md);
            flex-shrink: 0;
            scale: 1.3;
        }

        .hero-small-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--sp-5);
            flex: 1;
        }

        .small-card {
            height: 160px;
        }

        /* Right product card */
        .hero-product {
            height: 400px;
            background: #fff;
        }

        .product-content {
            position: absolute;
            top: var(--sp-10);
            left: var(--sp-10);
            max-width: 260px;
        }

        .product-content span {
            width: 44px;
            height: 44px;
            border-radius: var(--rad-full);
            border: 1.5px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--sp-5);
            color: var(--amber);
            background: var(--amber-glow2);
        }

        .product-content h3 {
            font-family: var(--font-display);
            font-size: var(--fs-4xl);
            font-weight: var(--fw-bold);
            margin-bottom: var(--sp-4);
            color: var(--dark);
        }

        .product-content p {
            color: var(--text-muted);
            line-height: 1.85;
            font-size: var(--fs-base);
        }

        /* ═══════════════════════════════════════════
       EXPERTISE
    ═══════════════════════════════════════════ */
        .expertise-section {
            background: var(--dark2);
            color: var(--text-inv);
            border-radius: var(--rad-lg);
            margin: 0 clamp(12px, 3vw, 20px) 60px;
            padding: clamp(40px, 6vw, 75px) clamp(20px, 5vw, 60px);
            position: relative;
            overflow: hidden;
        }

        .expertise-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 320px;
            height: 320px;
            border-radius: var(--rad-full);
            background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
            pointer-events: none;
        }

        .expertise-card {
            background: var(--dark-card);
            border: 1px solid var(--border-dark);
            border-radius: var(--rad-md);
            padding: var(--sp-8);
            height: 100%;
            transition: background var(--t), transform var(--t), border-color var(--t), box-shadow var(--t);
        }

        .expertise-card:hover {
            background: rgba(255, 255, 255, .07);
            transform: translateY(-5px);
            border-color: rgba(245, 166, 35, .25);
            box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
        }

        .expertise-heading {
            display: flex;
            flex-direction: row-reverse;
            justify-content: space-between;
            align-items: center;
            gap: var(--sp-4);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            padding-bottom: var(--sp-4);
            margin-bottom: var(--sp-5);
        }

        .expertise-icon {
            width: 40px;
            height: 40px;
            background: var(--grad-amber);
            border-radius: var(--rad-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--fs-xl);
            color: var(--dark);
            flex-shrink: 0;
            transition: transform var(--t);
        }

        .expertise-card:hover .expertise-icon {
            transform: rotate(-6deg) scale(1.1);
        }

        .expertise-card h5 {
            font-family: var(--font-display);
            font-size: var(--fs-2xl);
            margin: 0;
            color: var(--text-inv);
        }

        .expertise-card p {
            font-size: var(--fs-sm);
            color: var(--text-inv-dim);
            line-height: 1.85;
            margin: 0;
        }

        /* ═══════════════════════════════════════════
       POSTER / SWIPER
    ═══════════════════════════════════════════ */
        .poster-section {
            padding: 0 clamp(16px, 4vw, 70px) clamp(32px, 4vw, 55px);
        }
.poster-section img{
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
        .poster img {
            width: 100%;
            object-fit: cover;
            border-radius: var(--rad-lg);
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            display: block;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            -ms-border-radius: 20px;
            -o-border-radius: 20px;
}

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--amber);
        }

        .swiper-pagination-bullet {
            background: var(--text-muted);
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: var(--amber);
        }

        /* ═══════════════════════════════════════════
       TRUSTED STATS
    ═══════════════════════════════════════════ */
        .trusted-section {
            padding: var(--sp-20) 0;
        }

        .trusted-img {
            border-radius: var(--rad-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: transform var(--t-slow);
        }

        .trusted-img:hover {
            transform: translateY(-4px);
        }

        .trusted-img img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
        }

        .stat-num {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            line-height: 1;
            color: var(--dark);
        }

        .stat-label {
            font-size: var(--fs-md);
            font-style: italic;
            font-weight: var(--fw-semi);
            text-align: center;
            color: var(--amber);
            margin-top: 6px;
        }

        /* ═══════════════════════════════════════════
       CATEGORIES
    ═══════════════════════════════════════════ */
        .cat-card {
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            height: 400px;
            cursor: pointer;
            background: #000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
            transition: transform .45s var(--ease), box-shadow .45s var(--ease);
        }

        .cat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 22px 50px rgba(0, 0, 0, .14);
        }

        .cat-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .8s ease;
        }

        .cat-card:hover img {
            transform: scale(1.08);
        }

        .cat-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .18) 45%, rgba(0, 0, 0, .05) 100%);
            z-index: 1;
        }

        .cat-overlay {
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 18px;
            z-index: 5;
            padding: 20px 22px;
            border-radius: 22px;
            background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05));
            border: 1px solid rgba(255, 255, 255, .14);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .12);
            transition: transform .4s ease, background .4s ease, border-color .4s ease;
        }

        .cat-card:hover .cat-overlay {
            transform: translateY(-4px);
            background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .07));
            border-color: rgba(255, 255, 255, .2);
        }

        .cat-overlay h5 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-inv);
            margin: 0 0 8px;
            line-height: 1.3;
        }

        .cat-overlay small {
            display: block;
            color: rgba(255, 255, 255, .72);
            font-size: .9rem;
            line-height: 1.7;
            letter-spacing: .02em;
        }

        /* ═══════════════════════════════════════════
       FAQ
    ═══════════════════════════════════════════ */
        .faq-section {
            background: var(--dark2);
            border-radius: var(--rad-lg);
            margin: 0 clamp(12px, 3vw, 20px) 60px;
            padding: clamp(40px, 6vw, 75px) clamp(20px, 5vw, 60px);
            color: var(--text-inv);
            position: relative;
            overflow: hidden;
        }

        .faq-section::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 240px;
            height: 240px;
            border-radius: var(--rad-full);
            background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
            pointer-events: none;
        }

        .faq-section h2 {
            font-family: var(--font-display);
            font-size: var(--fs-4xl);
            font-weight: var(--fw-bold);
            line-height: 1.4;
        }

        .accordion-item {
            background: transparent !important;
            border: none !important;
            border-top: 1px solid var(--border-dark) !important;
        }

        .accordion-item:last-child {
            border-bottom: 1px solid var(--border-dark) !important;
        }

        .accordion-button {
            background: transparent !important;
            color: var(--text-inv) !important;
            font-family: var(--font-body) !important;
            font-weight: var(--fw-semi) !important;
            font-size: var(--fs-base) !important;
            padding: var(--sp-5) 0 !important;
            box-shadow: none !important;
            transition: color var(--t) !important;
        }

        .accordion-button::after {
            filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg);
        }

        .accordion-button:not(.collapsed) {
            color: var(--amber) !important;
        }

        .accordion-body {
            color: var(--text-inv-dim);
            font-size: var(--fs-sm);
            line-height: 1.85;
            padding: 0 0 var(--sp-5) !important;
        }

        /* ═══════════════════════════════════════════
       REVIEWS
    ═══════════════════════════════════════════ */
        .review-card {
            background: #fff;
            border-radius: var(--rad-md);
            padding: var(--sp-8);
            box-shadow: var(--shadow-sm);
            height: 100%;
            position: relative;
            border: 1px solid var(--border);
            transition: transform var(--t), box-shadow var(--t);
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .review-card-dark {
            background: var(--dark2);
            border-color: var(--border-dark);
        }

        .review-avatar {
            width: 58px;
            height: 58px;
            border-radius: var(--rad-full);
            overflow: hidden;
            margin-bottom: var(--sp-4);
            box-shadow: var(--shadow-sm);
            border: 2px solid var(--amber-glow);
        }

        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .review-name {
            font-weight: var(--fw-bold);
            font-size: var(--fs-md);
            color: var(--dark);
        }

        .review-card-dark .review-name {
            color: var(--text-inv);
        }

        .review-role {
            font-size: var(--fs-xs);
            color: var(--text-muted);
            margin-top: var(--sp-1);
        }

        .review-stars {
            color: var(--amber);
            font-size: var(--fs-sm);
            margin: var(--sp-3) 0;
            display: flex;
            gap: 2px;
        }

        .review-text {
            font-size: var(--fs-sm);
            line-height: 1.85;
            font-style: italic;
            color: var(--text-sec);
        }

        .review-card-dark .review-text {
            color: var(--text-inv-dim);
        }

        .quote-large {
            font-family: var(--font-display);
            font-size: 5rem;
            line-height: 0;
            color: var(--amber);
            opacity: .28;
            position: absolute;
            top: 28px;
            right: 24px;
        }

        /* ═══════════════════════════════════════════
       CTA
    ═══════════════════════════════════════════ */
        .cta-section {
            background: var(--cream2);
            border-radius: var(--rad-lg);
            margin: 0 clamp(12px, 3vw, 20px) 60px;
            padding: var(--sp-20) clamp(20px, 5vw, 60px);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            width: 300px;
            height: 300px;
            border-radius: var(--rad-full);
            background: radial-gradient(circle, rgba(245, 166, 35, .12) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-section h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: var(--fw-black);
            color: var(--dark);
            line-height: 1.15;
        }

        .watch-link {
            display: inline-flex;
            align-items: center;
            gap: var(--sp-3);
            color: var(--dark);
            font-weight: var(--fw-semi);
            text-decoration: none;
            font-size: var(--fs-base);
            transition: gap var(--t), opacity var(--t);
        }

        .watch-link:hover {
            opacity: .75;
            gap: var(--sp-4);
        }

        .watch-play {
            width: 42px;
            height: 42px;
            background: var(--dark);
            color: var(--text-inv);
            border-radius: var(--rad-full);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background var(--t), color var(--t);
        }

        .watch-link:hover .watch-play {
            background: var(--amber);
            color: var(--dark);
        }

        /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
        footer {
            background: var(--dark);
            color: rgba(255, 255, 255, .5);
            padding: var(--sp-16) 0 var(--sp-8);
        }

        .footer-brand-name {
            font-family: var(--font-display);
            font-weight: var(--fw-bold);
            font-size: var(--fs-xl);
            color: var(--text-inv);
            display: flex;
            align-items: center;
            gap: var(--sp-2);
            margin-bottom: var(--sp-4);
        }

        footer h6 {
            color: var(--text-inv);
            font-weight: var(--fw-semi);
            font-size: var(--fs-sm);
            margin-bottom: var(--sp-4);
            letter-spacing: .04em;
            text-transform: uppercase;
        }

        footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        footer ul li {
            margin-bottom: var(--sp-3);
            font-size: var(--fs-sm);
            cursor: pointer;
            transition: color var(--t), padding-left var(--t);
        }

        footer ul li:hover {
            color: var(--amber);
            padding-left: var(--sp-2);
        }

        .footer-divider {
            border-color: rgba(255, 255, 255, .08);
            margin: var(--sp-10) 0 var(--sp-6);
        }

        .footer-bottom {
            font-size: var(--fs-xs);
            color: rgba(255, 255, 255, .28);
        }

        .social-icon {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: var(--rad-full);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .55);
            font-size: var(--fs-base);
            margin-right: var(--sp-2);
            text-decoration: none;
            transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
        }

        .social-icon:hover {
            background: var(--amber);
            color: var(--dark);
            border-color: var(--amber);
            transform: translateY(-3px);
        }

        /* ═══════════════════════════════════════════
       SCROLL REVEAL
    ═══════════════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .65s var(--ease), transform .65s var(--ease);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */

        /* Tablet */
        @media (max-width: 991px) {
            .hero-bento {
                grid-template-columns: 1fr;
            }

            .hero-large {
                height: 340px;
            }

            .hero-product {
                height: 260px;
            }

            .hero-overlay {
                left: var(--sp-6);
                top: var(--sp-6);
            }

            .hero-overlay h2 {
                font-size: var(--fs-2xl);
            }

            .hero-about img {
                display: none;
            }

            /* hide decorative image on tablet */

            .trusted-img img {
                height: 300px;
            }
        }

        /* Mobile */
        @media (max-width: 767px) {

            .hero-section,
            .poster-section,
            .bento-section {
                padding-left: var(--sp-4);
                padding-right: var(--sp-4);
            }

            .hero-content {
                border-radius: 20px;
                min-height: auto;
            }

            .hero-content::before {
                border-radius: 20px;
                background: rgba(0, 0, 0, .68);
            }

            .hero-subtitle {
                max-width: 100%;
            }

            .hero-large {
                height: 300px;
            }

            .hero-small-grid {
                grid-template-columns: 1fr 1fr;
            }

            .small-card {
                height: 130px;
            }

            .hero-product {
                height: 220px;
            }

            .product-content {
                top: var(--sp-6);
                left: var(--sp-6);
            }

            .product-content h3 {
                font-size: var(--fs-2xl);
            }

            .expertise-section,
            .faq-section,
            .cta-section {
                margin-left: var(--sp-3);
                margin-right: var(--sp-3);
                padding: 40px var(--sp-5);
            }

            .cat-card {
                height: 300px;
                border-radius: 20px;
            }

            .cat-overlay {
                left: 12px;
                right: 12px;
                bottom: 12px;
                padding: 14px 16px;
                border-radius: 16px;
            }

            .primary-btn,
            .secondary-btn {
                width: 100%;
                justify-content: center;
            }

            .trusted-img img {
                height: 240px;
            }

            .trusted-section {
                padding: var(--sp-12) 0;
            }
        }

        /* Tiny screens */
        @media (max-width: 480px) {
            .hero-small-grid {
                grid-template-columns: 1fr;
            }

            .small-card {
                height: 160px;
            }

            .hero-about {
                flex-direction: column;
                min-height: auto;
            }
        }
    


        /* about */








        .breadcrumb-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 var(--rad-2xl) var(--rad-2xl);
}

.overlay {
    position: absolute;
    inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .60) 35%, rgba(0, 0, 0, .25) 65%, rgba(0, 0, 0, .05) 100%);
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: var(--sp-20) 0;
    color: var(--text-inv);
}

.breadcrumb-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: var(--sp-5);

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);

    backdrop-filter: blur(12px);

    border-radius: var(--rad-full);

    font-size: var(--fs-sm);
    color: var(--amber-light);
}

.breadcrumb-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    margin-bottom: var(--sp-4);
}

.breadcrumb-content p {
    font-size: var(--fs-lg);
    line-height: 1.8;
    color: var(--text-inv-dim);
    margin-bottom: var(--sp-6);
    max-width: 620px;
}

.custom-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;

    padding: 14px 22px;
    margin: 0;

    list-style: none;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: var(--rad-full);

    width: fit-content;

    backdrop-filter: blur(14px);
}

.custom-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--text-inv-dim);
    font-size: var(--fs-sm);
}

.custom-breadcrumb li:not(:last-child)::after {
    content: "›";
    color: var(--amber);
    font-size: 18px;
}

.custom-breadcrumb a {
    color: var(--text-inv);
    text-decoration: none;
    transition: var(--t);
}

.custom-breadcrumb a:hover {
    color: var(--amber-light);
}

.custom-breadcrumb .active {
    color: var(--amber-light);
    font-weight: var(--fw-semi);
}

@media (max-width: 768px) {

    .breadcrumb-hero {
        min-height: 360px;
    }

    .breadcrumb-content h1 {
        font-size: 2.4rem;
    }

    .breadcrumb-content p {
        font-size: 1rem;
    }

    .custom-breadcrumb {
        padding: 12px 18px;
    }
}







    /* ── STORY SECTION ── */
    .story-section {
      background: var(--cream);
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-16);
      align-items: center;
    }

    .story-text .body-text {
      font-size: var(--fs-md);
      color: var(--text-sec);
      line-height: 1.8;
      margin-bottom: var(--sp-5);
    }

    .quote-block {
      border-left: 3px solid var(--amber);
      padding: var(--sp-4) var(--sp-6);
      background: var(--amber-glow2);
      border-radius: 0 var(--rad-sm) var(--rad-sm) 0;
      margin: var(--sp-8) 0;
    }

    .quote-block p {
      font-family: var(--font-display);
      font-style: italic;
      font-size: var(--fs-xl);
      color: var(--dark);
      line-height: 1.5;
    }

    .quote-block cite {
      display: block;
      margin-top: var(--sp-3);
      font-size: var(--fs-xs);
      font-weight: var(--fw-semi);
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* timeline on right */
    .timeline {
      position: relative;
      padding-left: var(--sp-8);
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 0;
      top: var(--sp-3);
      bottom: var(--sp-3);
      width: 2px;
      background: linear-gradient(to bottom, var(--amber), var(--amber-light), transparent);
    }

    .tl-item {
      position: relative;
      padding-bottom: var(--sp-8);
    }

    .tl-item:last-child {
      padding-bottom: 0;
    }

    .tl-dot {
      position: absolute;
      left: calc(-1 * var(--sp-8) - 5px);
      top: 4px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 0 4px var(--amber-glow);
    }

    .tl-year {
      font-size: var(--fs-xs);
      font-weight: var(--fw-bold);
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--amber-dark);
      margin-bottom: var(--sp-1);
    }

    .tl-title {
      font-family: var(--font-display);
      font-size: var(--fs-xl);
      font-weight: var(--fw-bold);
      color: var(--dark);
      margin-bottom: var(--sp-2);
    }

    .tl-desc {
      font-size: var(--fs-sm);
      color: var(--text-muted);
      line-height: 1.65;
    }









    /* ═══════════════════════════════════════════
       HERO — SPLIT LAYOUT
    ═══════════════════════════════════════════ */
        .about-hero {
            min-height: calc(100vh - var(--navbar-h));
            display: grid;
            grid-template-columns: 1fr 1fr;
            overflow: hidden;
        }

        /* Left dark panel */
        .hero-left {
          
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* .hero-left::before {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--amber-glow) 0%, transparent 65%);
            pointer-events: none;
        } */

        .hero-left::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 166, 35, .08) 0%, transparent 65%);
            pointer-events: none;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--amber);
            font-size: var(--fs-xs);
            font-weight: var(--fw-bold);
            letter-spacing: .16em;
            text-transform: uppercase;
            margin-bottom: var(--sp-6);
        }

        .hero-eyebrow span {
            width: 24px;
            height: 2px;
            background: var(--amber);
            border-radius: 2px;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 4.5vw, 5rem);
            font-weight: var(--fw-black);
            line-height: 1.0;
            color: var(--text-inv);
            letter-spacing: -0.03em;
            margin-bottom: var(--sp-6);
        }

        .hero-title em {
            font-style: italic;
            background: var(--grad-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            color: var(--text-inv-dim);
            font-size: var(--fs-base);
            line-height: 1.9;
            max-width: 440px;
            margin-bottom: var(--sp-10);
        }

        .hero-stats-row {
            display: flex;
            gap: var(--sp-8);
            flex-wrap: wrap;
            border-top: 1px solid var(--border-dark);
            padding-top: var(--sp-8);
        }

        .h-stat-num {
            font-family: var(--font-display);
            font-size: 2.4rem;
            font-weight: var(--fw-black);
            color: var(--text-inv);
            line-height: 1;
        }

        .h-stat-label {
            font-size: var(--fs-xs);
            font-weight: var(--fw-medium);
            color: var(--amber);
            letter-spacing: .06em;
            text-transform: uppercase;
            margin-top: 4px;
        }

        /* Right image collage */
        .hero-right {
            display: grid;
            grid-template-rows: 1fr 1fr;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            height: 100%;
            padding: 10px;
        }

        .hero-img-main {
         
            position: relative;
            overflow: hidden;
            border-radius: var(--rad-lg) 0 0 var(--rad-lg);
        }

        .hero-img-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--t-slow);
        }

        .hero-img-main:hover img {
            transform: scale(1.04);
        }

        .hero-img-sm {
            position: relative;
            overflow: hidden;
            border-radius: var(--rad-md);
        }

        .hero-img-sm:first-of-type {
            border-radius: 0 var(--rad-lg) 0 0;
        }

        .hero-img-sm:last-of-type {
            border-radius: 0 0 var(--rad-lg) var(--rad-lg);
            grid-column: 2;
        }

        .hero-img-sm img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--t-slow);
        }

        .hero-img-sm:hover img {
            transform: scale(1.06);
        }

        /* Badge overlay on main image */
        .hero-badge {
            position: absolute;
            bottom: 24px;
            left: 24px;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(12px);
            border-radius: var(--rad-md);
            padding: 14px 20px;
            box-shadow: var(--shadow-md);
            z-index: 3;
        }

        .hero-badge-num {
            font-family: var(--font-display);
            font-size: 1.9rem;
            font-weight: var(--fw-black);
            color: var(--dark);
            line-height: 1;
        }

        .hero-badge-label {
            font-size: var(--fs-xs);
            color: var(--text-muted);
            font-weight: var(--fw-medium);
        }


        .about-us .hero-title{
color: var(--dark);
        }

      .about-us .hero-desc{
color: var(--text);
max-width: 100%;
width: 100%;
        }


        /* contact */


        
        /* Contact Section */
        .contact-section {
            padding: clamp(60px, 6vw, 100px) clamp(16px, 4vw, 70px);
            background: var(--cream);
        }

        .contact-form-wrapper {
            background: white;
            border-radius: var(--rad-lg);
            padding: clamp(30px, 5vw, 50px);
            box-shadow: var(--shadow-sm);
        }

        .form-textarea {
            resize: vertical;
            padding: 16px 44px 16px 16px !important;
            height: auto !important;
        }

        .form-check-input {
            width: 20px;
            height: 20px;
            border-color: var(--border);
            cursor: pointer;
            accent-color: var(--amber);
        }

        .form-check-label {
            margin-left: var(--sp-3);
            cursor: pointer;
            color: var(--text-sec);
            font-size: var(--fs-base);
        }

        /* Contact Info */
        .contact-info {
            background: var(--dark2);
            border-radius: var(--rad-lg);
            padding: clamp(30px, 5vw, 50px);
            color: var(--text-inv);
        }

        .contact-info-title {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: var(--fw-bold);
            margin-bottom: var(--sp-8);
            color: var(--text-inv);
        }

        .contact-info-card {
            display: flex;
            gap: var(--sp-6);
            margin-bottom: var(--sp-8);
            padding-bottom: var(--sp-6);
            border-bottom: 1px solid var(--border-dark);
        }

        .contact-info-card:last-of-type {
            border-bottom: none;
        }

        .contact-info-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--rad-full);
            background: var(--amber-glow2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--amber);
            font-size: var(--fs-xl);
            flex-shrink: 0;
        }

        .contact-info-card h5 {
            font-size: var(--fs-lg);
            font-weight: var(--fw-semi);
            margin-bottom: var(--sp-2);
            color: var(--text-inv);
        }

        .contact-info-card p {
            font-size: var(--fs-base);
            color: var(--text-inv-dim);
            margin: 0;
            line-height: 1.8;
        }

        .contact-info-card a {
            color: var(--amber);
            text-decoration: none;
            transition: color var(--t);
        }

        .contact-info-card a:hover {
            color: var(--amber-light);
            text-decoration: underline;
        }

        /* Social Links */
        .contact-socials {
            margin-top: var(--sp-10);
            padding-top: var(--sp-8);
            border-top: 1px solid var(--border-dark);
        }

        .contact-socials h5 {
            font-size: var(--fs-lg);
            font-weight: var(--fw-semi);
            margin-bottom: var(--sp-4);
            color: var(--text-inv);
        }

        .social-links {
            display: flex;
            gap: var(--sp-3);
        }

        .social-link {
            width: 44px;
            height: 44px;
            border-radius: var(--rad-full);
            background: var(--amber-glow2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--amber);
            font-size: var(--fs-lg);
            text-decoration: none;
            transition: background var(--t), color var(--t), transform var(--t);
            -webkit-transition: background var(--t), color var(--t), transform var(--t);
            -moz-transition: background var(--t), color var(--t), transform var(--t);
            -ms-transition: background var(--t), color var(--t), transform var(--t);
            -o-transition: background var(--t), color var(--t), transform var(--t);
            -webkit-border-radius: var(--rad-full);
            -moz-border-radius: var(--rad-full);
            -ms-border-radius: var(--rad-full);
            -o-border-radius: var(--rad-full);
}

        .social-link:hover {
            background: var(--amber);
            color: var(--dark);
            transform: translateY(-3px);
            -webkit-transform: translateY(-3px);
            -moz-transform: translateY(-3px);
            -ms-transform: translateY(-3px);
            -o-transform: translateY(-3px);
}

     
        
        /* Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
        }

        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }









        /* gallery */

  
    .gallery-section {
        padding: var(--sp-20) 0;
        background: var(--cream);
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: var(--rad-lg);
        cursor: pointer;
        height: 100%;
    }

    .gallery-item img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        transition: transform .7s var(--ease);
        border-radius: var(--rad-lg);
    }


     .gallery-item img:hover{ transform: scale(1.1); -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1);
}













/*  */


   /* ── CLIENTS SECTION ── */
    .clients-section {
      background: var(--cream2);
      padding: var(--sp-16) 0;
      overflow: hidden;
      position: relative;
    }

    .clients-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
    }

    .clients-section::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
    }

    .clients-header {
      text-align: center;
      margin-bottom: var(--sp-12);
    }

    .clients-header .clients-tagline {
      font-size: var(--fs-sm);
      color: var(--text-muted);
      margin-top: var(--sp-3);
      font-weight: var(--fw-regular);
    }

    /* marquee track */
    .clients-track-wrap {
      position: relative;
      overflow: hidden;
    }

    /* fade edges */
    .clients-track-wrap::before,
    .clients-track-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }

    .clients-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--cream2), transparent);
    }

    .clients-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--cream2), transparent);
    }

    .clients-track {
      display: flex;
      gap: var(--sp-5);
      width: max-content;
      animation: marquee 32s linear infinite;
    }

    .clients-track:hover {
      animation-play-state: paused;
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .client-logo-card {
      flex-shrink: 0;
      width: 190px;
      height: 80px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--rad-md);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-xs);
      padding: var(--sp-4) var(--sp-5);
      transition: box-shadow var(--t), border-color var(--t), transform var(--t);
      cursor: default;
    }

    .client-logo-card:hover {
      box-shadow: var(--shadow-sm);
      border-color: rgba(245, 166, 35, .3);
      transform: translateY(-2px);
    }

    .client-logo-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      width: 100%;
    }

    .client-logo-icon {
      font-size: 22px;
      line-height: 1;
    }

    .client-logo-name {
      font-family: var(--font-body);
      font-size: var(--fs-xs);
      font-weight: var(--fw-semi);
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .client-logo-sector {
      font-size: 9px;
      font-weight: var(--fw-regular);
      color: var(--text-muted);
      opacity: .7;
      letter-spacing: .04em;
    }

    /* second slower row */
    .clients-track-row2 {
      margin-top: var(--sp-4);
    }

    .clients-track-row2 .clients-track {
      animation-duration: 42s;
      animation-direction: reverse;
    }

    /* trust badge strip */
    .clients-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--sp-8);
      flex-wrap: wrap;
      margin-top: var(--sp-10);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: var(--sp-2);
      font-size: var(--fs-xs);
      font-weight: var(--fw-medium);
      color: var(--text-muted);
    }

    .trust-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--amber);
      flex-shrink: 0;
    }

    .trust-divider {
      width: 1px;
      height: 16px;
      background: var(--border);
    }

    /* ── FOOTER NOTE ── */
    .footer-note {
      background: var(--dark);
      border-top: 1px solid var(--border-dark);
      padding: var(--sp-8) 0;
      text-align: center;
      font-size: var(--fs-xs);
      color: var(--text-muted);
    }

    .footer-note strong {
      color: var(--amber);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s var(--ease), transform .65s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: .1s;
    }

    .reveal-delay-2 {
      transition-delay: .2s;
    }

    .reveal-delay-3 {
      transition-delay: .3s;
    }

    .reveal-delay-4 {
      transition-delay: .4s;
    }


    /* ═══════════════════════════════════════
   PRODUCT DETAIL PAGE — product-page.css
   ═══════════════════════════════════════ */

/* ── DETAILS BODY ── */
.details-body {
    background: var(--cream);
}

/* ── STICKY SUB-NAV ── */
.detail-nav {
    position: sticky;
    top: var(--navbar-h);
    background: rgba(249, 245, 240, .95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.detail-nav-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.detail-nav-inner::-webkit-scrollbar {
    height: 0;
}

.dnav-link {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--text-muted);
    padding: var(--sp-4) var(--sp-6);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    transition: color var(--t), border-color var(--t);
    text-decoration: none;
}

.dnav-link:hover,
.dnav-link.active {
    color: var(--amber-dark);
}

.dnav-link.active {
    border-bottom-color: var(--amber);
}

/* ── SHARED SECTION ── */
.detail-section {
    padding: var(--sp-16) 0;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: var(--sp-3);
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    background: var(--amber);
}

.section-h2 {
    font-family: var(--font-display);
    font-size: clamp(var(--fs-3xl), 3.5vw, var(--fs-4xl));
    font-weight: var(--fw-bold);
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: var(--sp-2);
}

.section-h2 em {
    font-style: italic;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── OVERVIEW ── */
.overview-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--sp-12);
    align-items: start;
}

.overview-body p {
    font-size: var(--fs-md);
    color: var(--text-sec);
    line-height: 1.85;
    margin-bottom: var(--sp-5);
}

.highlight-list {
    margin-top: var(--sp-6);
    list-style: none;
    padding: 0;
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: var(--fs-md);
    color: var(--text-sec);
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--border);
}

.highlight-list li:last-child {
    border-bottom: none;
}

.hl-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--amber-glow);
    border-radius: var(--rad-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--amber-dark);
    margin-top: 2px;
}

.hl-text strong {
    display: block;
    font-weight: var(--fw-semi);
    color: var(--dark);
    margin-bottom: 2px;
}

.hl-text span {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

/* ── SUMMARY CARD ── */
.summary-card {
    background: var(--dark);
    border-radius: var(--rad-xl);
    padding: var(--sp-8);
    position: sticky;
    top: calc(var(--navbar-h) + 56px);
    box-shadow: var(--shadow-lg);
}

.summary-title {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--text-inv);
    margin-bottom: var(--sp-6);
}

.summary-rows {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);
}

.sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-sm);
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--border-dark);
}

.sum-row:last-child {
    border-bottom: none;
}

.sum-key {
    color: var(--text-muted);
}

.sum-val {
    font-weight: var(--fw-semi);
    color: var(--text-inv);
}

.sum-val.green {
    color: #5CDB8F;
}

.sum-cta {
    width: 100%;
    background: var(--grad-amber);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    padding: var(--sp-4) var(--sp-6);
    border-radius: var(--rad-full);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-amber-sm);
    transition: box-shadow var(--t), transform var(--t);
}

.sum-cta:hover {
    box-shadow: var(--shadow-amber);
    transform: translateY(-2px);
}

/* ── SPECIFICATIONS ── */
.specs-section {
    background: var(--cream2);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
}

.spec-group {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--rad-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.spec-group-header {
    background: var(--dark);
    padding: var(--sp-4) var(--sp-6);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.spec-group-icon {
    font-size: 18px;
    color: var(--amber);
}

.spec-group-title {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    color: var(--text-inv);
    letter-spacing: .04em;
}

.spec-rows {
    padding: var(--sp-4) var(--sp-6);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--border);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-key {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.spec-value {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    color: var(--dark);
    text-align: right;
}

/* ── APPLICATIONS ── */
.applications-section {
    background: var(--cream3);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
}

.app-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--rad-lg);
    overflow: hidden;
    text-align: center;
    padding: var(--sp-8) var(--sp-5);
    transition: transform var(--t), box-shadow var(--t);
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.app-icon {
    font-size: 32px;
    color: var(--amber-dark);
    margin-bottom: var(--sp-4);
    display: block;
}

.app-title {
    font-weight: var(--fw-semi);
    color: var(--dark);
    margin-bottom: var(--sp-2);
    font-size: var(--fs-md);
}

.app-desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── PROCESS ── */
.process-section {
    background: var(--cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--sp-4);
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--grad-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-4);
    font-weight: var(--fw-black);
    font-size: var(--fs-lg);
    color: var(--dark);
    box-shadow: var(--shadow-amber-sm);
    border: 3px solid var(--cream);
}

.step-title {
    font-weight: var(--fw-semi);
    font-size: var(--fs-sm);
    color: var(--dark);
    margin-bottom: var(--sp-2);
}

.step-desc {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    line-height: 1.6;
}


/* ── MODAL OVERLAY ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 16, .75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-5);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-slow);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #fff;
    border-radius: var(--rad-xl);
    width: 100%;
    max-width: 620px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(28px) scale(.97);
    transition: transform var(--t-slow);
    box-shadow: var(--shadow-lg);
    scrollbar-width: none;
}

.modal-box::-webkit-scrollbar {
    width: 0;
}

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
}

/* modal header */
.modal-header {
    background: var(--dark);
    border-radius: var(--rad-xl) var(--rad-xl) 0 0;
    padding: var(--sp-8) var(--sp-8) var(--sp-6);
    position: relative;
}

.modal-close {
    position: absolute;
    top: var(--sp-5);
    right: var(--sp-5);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: none;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t), color var(--t);
    line-height: 1;
}

.modal-close:hover {
    background: var(--amber);
    color: var(--dark);
}

.modal-amber-bar {
    height: 4px;
    background: var(--grad-amber);
}

/* modal body */
.modal-body {
    padding: var(--sp-8);
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--text);
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--rad-sm);
    padding: var(--sp-3) var(--sp-4);
    width: 100%;
    transition: border-color var(--t), box-shadow var(--t);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, .15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--sp-4) center;
    background-color: var(--cream);
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 88px;
    line-height: 1.6;
}

/* checkboxes */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
}

.check-chip {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    cursor: pointer;
}

.check-chip input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.check-chip-label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--rad-full);
    border: 1.5px solid var(--border);
    color: var(--text-sec);
    transition: all var(--t);
    cursor: pointer;
}

.check-chip input:checked ~ .check-chip-label {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--dark);
    font-weight: var(--fw-semi);
}

/* modal footer */
.modal-footer {
    padding: 0 var(--sp-8) var(--sp-8);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.btn-submit {
    width: 100%;
    background: var(--grad-amber);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    padding: var(--sp-5);
    border-radius: var(--rad-full);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-amber);
    transition: box-shadow var(--t), transform var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
}

.btn-submit:hover {
    box-shadow: 0 14px 36px rgba(245, 166, 35, .55);
    transform: translateY(-2px);
}

.form-disclaimer {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

.form-disclaimer a {
    color: var(--amber-dark);
    text-decoration: none;
}

/* success state */
.modal-success {
    display: none;
    padding: var(--sp-12) var(--sp-8);
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--grad-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto var(--sp-6);
    box-shadow: var(--shadow-amber);
}

.success-title {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--dark);
    margin-bottom: var(--sp-3);
}

.success-text {
    font-size: var(--fs-md);
    color: var(--text-sec);
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto var(--sp-8);
}

.btn-close-success {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: var(--dark);
    color: var(--text-inv);
    font-family: var(--font-body);
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    padding: var(--sp-4) var(--sp-8);
    border-radius: var(--rad-full);
    border: none;
    cursor: pointer;
    transition: background var(--t);
}

.btn-close-success:hover {
    background: var(--dark3);
}

/* ═══════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════ */

/* Tablet — ≤ 992px */
@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .summary-card {
        position: static;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        row-gap: var(--sp-8);
    }

    .process-steps::before {
        display: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile — ≤ 576px */
@media (max-width: 576px) {
    .detail-section {
        padding: var(--sp-10) 0;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-3);
    }

    .app-card {
        padding: var(--sp-5) var(--sp-3);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: 1;
    }

    .modal-body,
    .modal-footer {
        padding-left: var(--sp-5);
        padding-right: var(--sp-5);
    }

    .dnav-link {
        padding: var(--sp-3) var(--sp-4);
        font-size: var(--fs-xs);
    }
}