
        :root {
            --bg: #0b0b0b;
            --card: #151515;
            --card-soft: #1a1a1a;
            --gold: #F4B400;
            --gold-light: #FFD54F;
            --white: #ffffff;
            --muted: #A6A6A6;
            --muted-dim: #7A7A7A;
            --border: rgba(244, 180, 0, 0.18);
            --border-soft: rgba(255, 255, 255, 0.08);
            --gradient-gold: linear-gradient(135deg, #F4B400 0%, #FFD54F 100%);
            --shadow-gold: 0 12px 35px rgba(244, 180, 0, 0.22);
            --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.55);
            --container: 1150px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: var(--bg);
            color: var(--white);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 28px;
        }

        /* ================= HERO SECTION ================= */

        .automation-hero { 
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 95% 8%, rgba(244, 180, 0, 0.16), transparent 28%),
                radial-gradient(circle at 80% 85%, rgba(244, 180, 0, 0.05), transparent 30%),
                #0b0b0b;
            padding: 90px 0 60px;
        }

        .automation-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(11, 11, 11, 0.96) 0%, rgba(11, 11, 11, 0.88) 50%, rgba(11, 11, 11, 0.64) 100%);
            pointer-events: none;
        }

        .hero-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        /* LEFT CONTENT */

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 9px 14px;
            border-radius: 999px;
            background: rgba(244, 180, 0, 0.09);
            border: 1px solid var(--border);
            color: var(--gold-light);
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 26px;
            box-shadow: inset 0 0 20px rgba(244, 180, 0, 0.04);
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            box-shadow: 0 0 0 5px rgba(244, 180, 0, 0.17);
        }

        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: 42px;
            line-height: 1.09;
            font-weight: 800;
            letter-spacing: -1.8px;
            max-width: 620px;
            margin-bottom: 24px;
        }

        .hero-title .highlight {
            color: var(--gold);
        }

        .hero-desc {
            max-width: 540px;
            color: var(--muted);
            font-size: 17px;
            line-height: 1.65;
            margin-bottom: 34px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 43px;
            padding: 0 15px;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 700;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--gradient-gold);
            color: #17130a;
            box-shadow: var(--shadow-gold);
            border: 1px solid transparent;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 42px rgba(244, 180, 0, 0.34);
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.18);
            color: var(--white);
        }

        .btn-outline:hover {
            border-color: var(--gold);
            background: rgba(244, 180, 0, 0.06);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }

        .hero-stat strong {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 29px;
            line-height: 1;
            color: var(--white);
            font-weight: 800;
            margin-bottom: 10px;
        }

        .hero-stat span {
            color: var(--muted-dim);
            font-size: 13px;
            font-weight: 500;
        }

        /* RIGHT DASHBOARD MOCKUP */

        .hero-visual {
            top: -5%;
            position: relative;
            min-height: 450px;
        }

        .dashboard-window {
            position: relative;
            width: 100%;
            min-height: 450px;
            border-radius: 22px;
            background: #151515;
            border: 1px solid rgba(255, 255, 255, 0.09);
            box-shadow: var(--shadow-dark);
            overflow: hidden;
        }

        .dashboard-window::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 42px;
            background: rgba(255, 255, 255, 0.025);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .window-dots {
            position: absolute;
            top: 15px;
            left: 18px;
            display: flex;
            gap: 7px;
            z-index: 3;
        }

        .window-dots span {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.18);
        }

        .dashboard-glow {
            position: absolute;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            filter: blur(45px);
            opacity: 0.25;
            background: rgba(244, 180, 0, 0.18);
            right: 40px;
            bottom: 20px;
        }

        .float-card {
            position: absolute;
            z-index: 5;
            min-width: 124px;
            padding: 15px 15px 16px;
            border-radius: 10px;
            background: rgba(21, 21, 21, 0.95);
            border: 1px solid rgba(244, 180, 0, 0.20);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
            animation: floatCard 5s ease-in-out infinite;
        }

        .float-card .label {
            display: block;
            color: var(--muted-dim);
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .float-card .value {
            display: block;
            color: var(--gold-light);
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            line-height: 1;
            font-weight: 800;
        }

        .card-orders {
            top: 52px;
            left: 24px;
        }

        .card-uptime {
            top: 130px;
            right: 22px;
            animation-delay: 1.1s;
        }

        .card-hours {
            left: 38px;
            bottom: 38px;
            animation-delay: 2s;
            min-width: 135px;
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* ANIMATION ON LOAD */

        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            animation: fadeUp 0.8s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.12s;
        }

        .delay-2 {
            animation-delay: 0.24s;
        }

        .delay-3 {
            animation-delay: 0.36s;
        }

        .delay-4 {
            animation-delay: 0.48s;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* RESPONSIVE */

        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .hero-title {
                max-width: 760px;
            }

            .hero-desc {
                max-width: 660px;
            }

            .hero-visual {
                max-width: 650px;
            }
        }

        @media (max-width: 768px) {
            .automation-hero {
                padding: 70px 0 45px;
                min-height: auto;
            }

            .container {
                padding: 0 20px;
            }

            .hero-title {
                font-size: 42px;
                letter-spacing: -1.2px;
            }

            .hero-desc {
                font-size: 15.5px;
            }

            .btn {
                width: 100%;
                min-height: 54px;
            }

            .hero-actions {
                margin-bottom: 38px;
            }

            .hero-stats {
                gap: 28px;
            }

            .hero-stat {
                width: calc(33.333% - 20px);
            }

            .hero-stat strong {
                font-size: 24px;
            }

            .hero-stat span {
                font-size: 12px;
            }

            .hero-visual {
                min-height: 340px;
            }

            .dashboard-window {
                min-height: 340px;
                border-radius: 18px;
            }

            .float-card {
                transform: scale(0.9);
            }

            .card-orders {
                top: 55px;
                left: 18px;
            }

            .card-uptime {
                top: 128px;
                right: 12px;
            }

            .card-hours {
                left: 20px;
                bottom: 28px;
            }
        }

        @media (max-width: 480px) {
            .hero-badge {
                font-size: 11px;
                padding: 8px 12px;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-stats {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
            }

            .hero-stat {
                width: auto;
            }

            .hero-stat strong {
                font-size: 22px;
            }

            .hero-stat span {
                font-size: 11px;
                line-height: 1.3;
                display: block;
            }

            .hero-visual {
                min-height: 310px;
            }

            .dashboard-window {
                min-height: 310px;
            }

            .float-card {
                min-width: 112px;
                padding: 13px;
            }

            .float-card .label {
                font-size: 10px;
            }

            .float-card .value {
                font-size: 16px;
            }
        }

        /* ================= TRUST BAR SECTION ================= */

        .trust-bar {
            width: 100%;
            background: #0b0b0b;
            border-top: 1px solid var(--border-soft);
            border-bottom: 1px solid var(--border-soft);
            padding: 26px 0;
        }

        .trust-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .trust-title {
            color: var(--muted-dim);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .trust-items {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 42px;
            flex-wrap: wrap;
        }

        .trust-item {
            color: var(--muted);
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
        }

        .trust-item strong {
            color: var(--gold-light);
            font-weight: 800;
            margin-right: 4px;
        }

        /* RESPONSIVE */

        @media (max-width: 992px) {
            .trust-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 18px;
            }

            .trust-items {
                justify-content: flex-start;
                gap: 22px 34px;
            }
        }

        @media (max-width: 576px) {
            .trust-bar {
                padding: 24px 0;
            }

            .container {
                padding: 0 20px;
            }

            .trust-title {
                font-size: 12px;
                white-space: normal;
            }

            .trust-items {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                width: 100%;
                gap: 16px 20px;
            }

            .trust-item {
                font-size: 13px;
                white-space: normal;
            }
        }



        .problem-section {
            background: var(--bg);
            color: var(--white);
            padding: 70px 0 80px;
            font-family: "Inter", sans-serif;
        }

        .problem-section * {
            box-sizing: border-box;
        }

        .problem-container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .problem-head {
            max-width: 660px;
            margin: 0 auto 55px;
            text-align: center;
        }

        .problem-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .problem-eyebrow::before {
            content: "";
            width: 16px;
            height: 1px;
            background: var(--gold);
            display: inline-block;
        }

        .problem-head h2 {
            font-family: "Poppins", sans-serif;
            font-size: clamp(28px, 4vw, 42px);
            line-height: 1.13;
            font-weight: 800;
            letter-spacing: -1.2px;
            margin: 0 0 14px;
        }

        .problem-head p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
            margin: 0 auto;
            max-width: 600px;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .problem-card {
            background: var(--card);
            border: 1px solid var(--border-soft);
            border-radius: 13px;
            padding: 30px 26px 28px;
            min-height: 154px;
            transition: all 0.28s ease;
        }

        .problem-card:hover {
            background: var(--card-hover);
            border-color: var(--border-hover);
            transform: translateY(-5px);
            box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
        }

        .problem-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--red-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }

        .problem-icon svg {
            width: 19px;
            height: 19px;
        }

        .problem-card h3 {
            font-family: "Poppins", sans-serif;
            font-size: 15px;
            line-height: 1.3;
            font-weight: 800;
            margin: 0 0 9px;
            color: var(--white);
        }

        .problem-card p {
            color: var(--muted);
            font-size: 13px;
            line-height: 1.65;
            margin: 0;
        }

        @media (max-width: 992px) {
            .problem-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .problem-section {
                padding: 58px 0 64px;
            }

            .problem-container {
                padding: 0 18px;
            }

            .problem-head {
                margin-bottom: 36px;
            }

            .problem-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .problem-card {
                padding: 26px 22px;
            }
        }

        .solutions-section {
            background: var(--bg);
            color: var(--white);
            padding: 70px 0 80px;
            font-family: "Inter", sans-serif;
        }

        .solutions-section * {
            box-sizing: border-box;
        }

        .solutions-container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .solutions-head {
            max-width: 650px;
            margin: 0 auto 48px;
            text-align: center;
        }

        .solutions-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .solutions-eyebrow::before {
            content: "";
            width: 16px;
            height: 1px;
            background: var(--gold);
            display: inline-block;
        }

        .solutions-head h2 {
            font-family: "Poppins", sans-serif;
            font-size: 42px;
            line-height: 1.12;
            font-weight: 800;
            letter-spacing: -1.2px;
            margin: 0 0 16px;
        }

        .solutions-head p {
            color: var(--muted);
            font-size: 13px;
            line-height: 1.7;
            margin: 0 auto;
            max-width: 610px;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .solution-card {
            background: var(--card);
            border: 1px solid var(--border-soft);
            border-radius: 12px;
            padding: 28px 24px 24px;
            min-height: 190px;
            transition: all 0.28s ease;
        }

        .solution-card:hover {
            background: var(--card-hover);
            border-color: var(--border-hover);
            transform: translateY(-5px);
            box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
        }

        .solution-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(244, 180, 0, 0.09);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }

        .solution-icon svg {
            width: 18px;
            height: 18px;
        }

        .solution-card h3 {
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            line-height: 1.3;
            font-weight: 800;
            margin: 0 0 9px;
            color: var(--white);
        }

        .solution-card p {
            color: var(--muted);
            font-size: 12.5px;
            line-height: 1.6;
            margin: 0 0 18px;
        }

        .solution-link {
            display: inline-flex;
            align-items: center;
            color: var(--gold-light);
            font-size: 11px;
            font-weight: 800;
            text-decoration: none;
            transition: gap 0.2s ease, color 0.2s ease;
            gap: 4px;
        }

        .solution-link:hover {
            gap: 8px;
            color: var(--gold);
        }

        @media (max-width: 1100px) {
            .solutions-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 820px) {
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 560px) {
            .solutions-section {
                padding: 58px 0 64px;
            }

            .solutions-container {
                padding: 0 18px;
            }

            .solutions-head {
                margin-bottom: 36px;
            }

            .solutions-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .solution-card {
                padding: 26px 22px;
                min-height: auto;
            }
        }

        :root {
            --process-bg: #0b0b0b;
            --process-white: #ffffff;
            --process-muted: #a6a6a6;
            --process-muted-dim: #7a7a7a;
            --process-gold: #f4b400;
            --process-card: #151515;
            --process-border: rgba(244, 180, 0, 0.22);
            --process-line: rgba(244, 180, 0, 0.18);
            --process-container: 1220px;
        }

        .process-section {
            background: var(--process-bg);
            color: var(--process-white);
            padding: 76px 0 88px;
            font-family: "Inter", sans-serif;
            overflow: hidden;
        }

        .process-section * {
            box-sizing: border-box;
        }

        .process-container {
            width: 100%;
            max-width: var(--process-container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .process-head {
            max-width: 760px;
            margin: 0 auto 76px;
            text-align: center;
        }

        .process-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--process-gold);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 22px;
        }

        .process-eyebrow::before {
            content: "";
            width: 22px;
            height: 2px;
            background: var(--process-gold);
            display: inline-block;
        }

        .process-head h2 {
            font-family: "Poppins", sans-serif;
            font-size: 42px;
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -1.8px;
            margin: 0 0 24px;
        }

        .process-head p {
            color: var(--process-muted);
            font-size: 19px;
            line-height: 1.55;
            margin: 0 auto;
            max-width: 690px;
        }

        .process-timeline-wrap {
            width: 100%;
            overflow-x: auto;
            padding: 0 0 12px;
        }

        .process-timeline-wrap::-webkit-scrollbar {
            height: 6px;
        }

        .process-timeline-wrap::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 999px;
        }

        .process-timeline-wrap::-webkit-scrollbar-thumb {
            background: rgba(244, 180, 0, 0.35);
            border-radius: 999px;
        }

        .process-timeline {
            position: relative;
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            min-width: 1140px;
            gap: 0;
        }

        .process-timeline::before {
            content: "";
            position: absolute;
            top: 28px;
            left: 36px;
            right: 36px;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent 0%,
                    var(--process-line) 8%,
                    var(--process-line) 92%,
                    transparent 100%);
        }

        .process-step {
            position: relative;
            text-align: center;
            padding: 0 14px;
        }

        .process-num {
            position: relative;
            z-index: 2;
            width: 58px;
            height: 58px;
            margin: 0 auto 18px;
            border-radius: 50%;
            background: var(--process-card);
            border: 1.5px solid var(--process-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--process-gold);
            font-family: "Poppins", sans-serif;
            font-size: 17px;
            line-height: 1;
            font-weight: 800;
            transition: all 0.28s ease;
        }

        .process-step:hover .process-num {
            background: rgba(244, 180, 0, 0.12);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(244, 180, 0, 0.15);
        }

        .process-step h3 {
            font-family: "Poppins", sans-serif;
            color: var(--process-white);
            font-size: 17px;
            line-height: 1.12;
            font-weight: 800;
            margin: 0 0 12px;
        }

        .process-step p {
            color: var(--process-muted-dim);
            font-size: 15px;
            line-height: 1.55;
            margin: 0 auto;
            max-width: 132px;
        }

        @media (max-width: 768px) {
            .process-section {
                padding: 62px 0 70px;
            }

            .process-container {
                padding: 0 18px;
            }

            .process-head {
                margin-bottom: 46px;
            }

            .process-head p {
                font-size: 16px;
            }

            .process-timeline {
                min-width: 940px;
            }

            .process-step h3 {
                font-size: 15px;
            }

            .process-step p {
                font-size: 13px;
                max-width: 115px;
            }

            .process-num {
                width: 54px;
                height: 54px;
            }
        }


        .why-section {
            background: var(--bg);
            color: var(--white);
            padding: 95px 0;
            font-family: "Inter", sans-serif;
        }

        .why-section * {
            box-sizing: border-box;
        }

        .why-container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1.02fr;
            gap: 80px;
            align-items: center;
        }

        .why-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .why-eyebrow::before {
            content: "";
            width: 22px;
            height: 2px;
            background: var(--gold);
            display: inline-block;
        }

        .why-content h2 {
            font-family: "Poppins", sans-serif;
            font-size: 42px;
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -1.6px;
            margin: 0 0 30px;
            color: var(--white);
        }

        .why-content p {
            color: var(--muted);
            font-size: 17px;
            line-height: 1.65;
            max-width: 560px;
            margin: 0;
        }

        .why-list {
            width: 100%;
        }

        .why-item {
            display: grid;
            grid-template-columns: 36px 1fr;
            gap: 18px;
            padding: 24px 0;
            border-bottom: 1px solid var(--border-soft);
        }

        .why-item:first-child {
            padding-top: 0;
        }

        .why-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .why-check {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(244, 180, 0, 0.12);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
        }

        .why-check svg {
            width: 18px;
            height: 18px;
        }

        .why-item h3 {
            font-family: "Poppins", sans-serif;
            font-size: 17px;
            line-height: 1.3;
            font-weight: 800;
            margin: 0 0 6px;
            color: var(--white);
        }

        .why-item p {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.55;
            margin: 0;
        }

        @media (max-width: 992px) {
            .why-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .why-content h2 {
                max-width: 720px;
            }

            .why-content p {
                max-width: 700px;
            }
        }

        @media (max-width: 640px) {
            .why-section {
                padding: 70px 0;
            }

            .why-container {
                padding: 0 18px;
            }

            .why-grid {
                gap: 42px;
            }

            .why-eyebrow {
                font-size: 12px;
                margin-bottom: 18px;
            }

            .why-content h2 {
                font-size: 34px;
                letter-spacing: -1px;
                margin-bottom: 22px;
            }

            .why-content p {
                font-size: 15px;
            }

            .why-item {
                grid-template-columns: 34px 1fr;
                gap: 15px;
                padding: 22px 0;
            }

            .why-check {
                width: 34px;
                height: 34px;
            }

            .why-item h3 {
                font-size: 15.5px;
            }

            .why-item p {
                font-size: 14px;
            }
        }


        .case-section {
            background: var(--bg);
            color: var(--white);
            padding: 90px 0 80px;
            font-family: "Inter", sans-serif;
            border-top: 1px solid rgba(244, 180, 0, 0.18);
        }

        .case-section * {
            box-sizing: border-box;
        }

        .case-container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .case-head {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 70px;
        }

        .case-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .case-eyebrow::before {
            content: "";
            width: 22px;
            height: 2px;
            background: var(--gold);
            display: inline-block;
        }

        .case-head h2 {
            font-family: "Poppins", sans-serif;
            font-size: 42px;
            line-height: 1.18;
            font-weight: 800;
            letter-spacing: -1.7px;
            margin: 0;
            color: var(--white);
        }

        .case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }

        .case-card {
            background: var(--card);
            border: 1px solid var(--border-soft);
            border-radius: 16px;
            padding: 32px 28px 30px;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            transition: all 0.28s ease;
        }

        .case-card:hover {
            background: var(--card-soft);
            border-color: var(--border);
            transform: translateY(-6px);
            box-shadow: var(--shadow-dark);
        }

        .case-tag {
            display: inline-flex;
            align-self: flex-start;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(244, 180, 0, 0.13);
            color: var(--gold-light);
            font-size: 13px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .case-block {
            margin-bottom: 20px;
        }

        .case-label {
            color: var(--muted-dim);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .case-block p {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.65;
            margin: 0;
        }

        .case-results {
            display: flex;
            gap: 34px;
            margin-top: auto;
            padding-top: 24px;
            border-top: 1px solid var(--border-soft);
        }

        .case-result strong {
            display: block;
            color: var(--gold-light);
            font-family: "Poppins", sans-serif;
            font-size: 23px;
            line-height: 1;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .case-result span {
            display: block;
            color: var(--muted-dim);
            font-size: 13px;
            line-height: 1.35;
        }

        @media (max-width: 992px) {
            .case-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .case-card {
                min-height: 390px;
            }
        }

        @media (max-width: 640px) {
            .case-section {
                padding: 70px 0;
            }

            .case-container {
                padding: 0 18px;
            }

            .case-head {
                margin-bottom: 46px;
            }

            .case-eyebrow {
                font-size: 11px;
                margin-bottom: 18px;
            }

            .case-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .case-card {
                padding: 28px 24px;
                min-height: auto;
            }

            .case-tag {
                margin-bottom: 24px;
            }

            .case-block p {
                font-size: 15px;
            }

            .case-results {
                gap: 26px;
            }

            .case-result strong {
                font-size: 22px;
            }
        }


        .results-section {
            background: var(--bg);
            color: var(--white);
            padding: 95px 0 90px;
            font-family: "Inter", sans-serif;
            overflow: hidden;
        }

        .results-section * {
            box-sizing: border-box;
        }

        .results-container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .results-head {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 80px;
        }

        .results-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .results-eyebrow::before {
            content: "";
            width: 22px;
            height: 2px;
            background: var(--gold);
            display: inline-block;
        }

        .results-head h2 {
            font-family: "Poppins", sans-serif;
            font-size: 42px;
            line-height: 1.13;
            font-weight: 800;
            letter-spacing: -1.7px;
            margin: 0;
            color: var(--white);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 45px;
            text-align: center;
        }

        .result-item {
            min-height: 120px;
        }

        .result-number {
            font-family: "Poppins", sans-serif;
            font-size: 38px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: -1.5px;
            color: var(--gold-light);
            margin-bottom: 28px;
        }

        .result-label {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.4;
            font-weight: 500;
        }

        @media (max-width: 992px) {
            .results-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 55px 32px;
            }

            .results-head {
                margin-bottom: 60px;
            }
        }

        @media (max-width: 560px) {
            .results-section {
                padding: 70px 0;
            }

            .results-container {
                padding: 0 18px;
            }

            .results-head {
                margin-bottom: 48px;
            }

            .results-eyebrow {
                font-size: 11px;
                margin-bottom: 18px;
            }

            .results-grid {
                grid-template-columns: 1fr;
                gap: 38px;
            }

            .result-number {
                font-size: 50px;
                margin-bottom: 16px;
            }

            .result-label {
                font-size: 15px;
            }
        }


        .pricing-section {
            background: var(--bg);
            color: var(--white);
            padding: 78px 0 80px;
            font-family: "Inter", sans-serif;
        }

        .pricing-section * {
            box-sizing: border-box;
        }

        .pricing-container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .pricing-head {
            max-width: 680px;
            margin: 0 auto 62px;
            text-align: center;
        }

        .pricing-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .pricing-eyebrow::before {
            content: "";
            width: 18px;
            height: 1.5px;
            background: var(--gold);
            display: inline-block;
        }

        .pricing-head h2 {
            font-family: "Poppins", sans-serif;
            font-size: 42px;
            line-height: 1.12;
            font-weight: 800;
            letter-spacing: -1.2px;
            margin: 0 0 20px;
            color: var(--white);
        }

        .pricing-head p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
            max-width: 590px;
            margin: 0 auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            align-items: stretch;
        }

        .price-card {
            position: relative;
            background: var(--card);
            border: 1px solid var(--border-soft);
            border-radius: 14px;
            padding: 38px 32px 30px;
            min-height: 410px;
            display: flex;
            flex-direction: column;
            text-align: center;
            transition: all 0.28s ease;
        }

        .price-card:hover {
            background: var(--card-soft);
            border-color: var(--border);
            transform: translateY(-6px);
            box-shadow: var(--shadow-dark);
        }

        .price-card.featured {
            border-color: var(--gold);
            box-shadow: 0 0 0 1px rgba(244, 180, 0, 0.12), var(--shadow-gold);
            transform: translateY(-8px);
        }

        .price-card.featured:hover {
            transform: translateY(-12px);
        }

        .price-ribbon {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-gold);
            color: #17130a;
            padding: 7px 18px;
            border-radius: 999px;
            font-size: 11px;
            line-height: 1;
            font-weight: 800;
            white-space: nowrap;
            box-shadow: var(--shadow-gold);
        }

        .price-name {
            color: var(--muted-dim);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .price-value {
            font-family: "Poppins", sans-serif;
            font-size: 31px;
            line-height: 1;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 18px;
        }

        .price-value span {
            font-family: "Inter", sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--muted-dim);
            margin-left: 4px;
        }

        .price-desc {
            color: var(--muted);
            font-size: 13px;
            line-height: 1.6;
            margin: 0 auto 28px;
            max-width: 270px;
        }

        .price-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px;
            text-align: left;
        }

        .price-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.45;
            margin-bottom: 17px;
        }

        .price-list li::before {
            content: "✓";
            color: var(--gold-light);
            font-size: 14px;
            font-weight: 800;
            line-height: 1.25;
            flex: 0 0 auto;
        }

        .price-btn {
            margin-top: auto;
            width: 100%;
            min-height: 56px;
            border-radius: 999px;
            border: 1.5px solid rgba(255, 255, 255, 0.18);
            background: transparent;
            color: var(--white);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .price-btn:hover {
            border-color: var(--gold);
            background: rgba(244, 180, 0, 0.06);
            transform: translateY(-3px);
        }

        .price-btn.primary {
            background: var(--gradient-gold);
            color: #17130a;
            border-color: transparent;
            box-shadow: var(--shadow-gold);
        }

        .price-btn.primary:hover {
            box-shadow: 0 16px 40px rgba(244, 180, 0, 0.32);
        }

        @media (max-width: 992px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .price-card.featured {
                transform: none;
            }

            .price-card.featured:hover {
                transform: translateY(-6px);
            }
        }

        @media (max-width: 640px) {
            .pricing-section {
                padding: 65px 0 70px;
            }

            .pricing-container {
                padding: 0 18px;
            }

            .pricing-head {
                margin-bottom: 46px;
            }

            .pricing-eyebrow {
                font-size: 10px;
                margin-bottom: 14px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .price-card {
                padding: 34px 24px 26px;
                min-height: auto;
            }

            .price-card.featured {
                margin-top: 10px;
            }

            .price-value {
                font-size: 29px;
            }
        }


        .tech-section {
            background: var(--bg);
            color: var(--white);
            padding: 92px 0 95px;
            font-family: "Inter", sans-serif;
            overflow: hidden;
        }

        .tech-section * {
            box-sizing: border-box;
        }

        .tech-container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .tech-head {
            max-width: 720px;
            margin: 0 auto 68px;
            text-align: center;
        }

        .tech-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 22px;
        }

        .tech-eyebrow::before {
            content: "";
            width: 22px;
            height: 2px;
            background: var(--gold);
            display: inline-block;
        }

        .tech-head h2 {
            font-family: "Poppins", sans-serif;
            font-size: 42px;
            line-height: 1.16;
            font-weight: 800;
            letter-spacing: -1.5px;
            margin: 0;
            color: var(--white);
        }

        .tech-ticker-wrap {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .tech-ticker-wrap::before,
        .tech-ticker-wrap::after {
            content: "";
            position: absolute;
            top: 0;
            width: 120px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .tech-ticker-wrap::before {
            left: 0;
            background: linear-gradient(90deg, var(--bg), transparent);
        }

        .tech-ticker-wrap::after {
            right: 0;
            background: linear-gradient(270deg, var(--bg), transparent);
        }

        .tech-ticker {
            display: flex;
            width: max-content;
            gap: 36px;
            animation: techScroll 32s linear infinite;
        }

        .tech-ticker:hover {
            animation-play-state: paused;
        }

        .tech-chip {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-height: 46px;
            padding: 0 24px;
            border-radius: 999px;
            background: var(--card);
            border: 1px solid var(--border-soft);
            color: var(--muted);
            font-size: 14px;
            font-weight: 800;
            white-space: nowrap;
            transition: all 0.25s ease;
        }

        .tech-chip:hover {
            border-color: var(--border);
            background: var(--card-soft);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-dark);
        }

        .tech-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.12);
            flex: 0 0 auto;
        }

        @keyframes techScroll {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .tech-section {
                padding: 70px 0;
            }

            .tech-container {
                padding: 0 18px;
            }

            .tech-head {
                margin-bottom: 48px;
            }

            .tech-eyebrow {
                font-size: 10px;
                margin-bottom: 16px;
            }

            .tech-ticker {
                gap: 18px;
                animation-duration: 24s;
            }

            .tech-chip {
                min-height: 42px;
                padding: 0 18px;
                font-size: 13px;
            }

            .tech-ticker-wrap::before,
            .tech-ticker-wrap::after {
                width: 50px;
            }
        }

        .testimonial-section {
            background: var(--bg);
            color: var(--white);
            padding: 90px 0;
            font-family: "Inter", sans-serif;
        }

        .testimonial-section * {
            box-sizing: border-box;
        }

        .testimonial-container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .testimonial-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 60px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 22px;
        }

        .section-badge::before {
            content: "";
            width: 22px;
            height: 2px;
            background: var(--gold);
            display: inline-block;
        }

        .testimonial-title {
            font-family: "Poppins", sans-serif;
            font-size: 38px;
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -1.5px;
            margin: 0;
            color: var(--white);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }

        .testimonial-card {
            background: var(--card);
            border: 1px solid var(--border-soft);
            border-radius: 16px;
            padding: 34px 28px 30px;
            min-height: 360px;
            display: flex;
            flex-direction: column;
            transition: all 0.28s ease;
        }

        .testimonial-card:hover {
            background: var(--card-soft);
            border-color: var(--border);
            transform: translateY(-6px);
            box-shadow: var(--shadow-dark);
        }

        .stars {
            color: var(--gold-light);
            font-size: 18px;
            letter-spacing: 3px;
            margin-bottom: 22px;
        }

        .testimonial-text {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.7;
            margin: 0 0 30px;
        }

        .client-info {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-top: auto;
            padding-top: 24px;
            border-top: 1px solid var(--border-soft);
        }

        .client-avatar {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 50%;
            background: var(--gradient-gold);
            color: #17130a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Poppins", sans-serif;
            font-size: 15px;
            font-weight: 800;
        }

        .client-info h6 {
            font-family: "Poppins", sans-serif;
            color: var(--white);
            font-size: 16px;
            line-height: 1.3;
            font-weight: 800;
            margin: 0 0 5px;
        }

        .client-info span {
            display: block;
            color: var(--muted-dim);
            font-size: 13px;
            line-height: 1.45;
            margin-bottom: 10px;
        }

        .client-result {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(244, 180, 0, 0.10);
            color: var(--gold-light);
            font-size: 12px;
            line-height: 1;
            font-weight: 800;
        }

        @media (max-width: 992px) {
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .testimonial-section {
                padding: 70px 0;
            }

            .testimonial-container {
                padding: 0 18px;
            }

            .testimonial-header {
                margin-bottom: 44px;
            }

            .section-badge {
                font-size: 10px;
                margin-bottom: 16px;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimonial-card {
                min-height: auto;
                padding: 30px 24px 26px;
            }

            .testimonial-text {
                font-size: 15px;
            }
        }
    
         
  .final-cta-section {
    background: var(--bg);
    color: var(--white);
    padding: 70px 0 95px;
    font-family: "Inter", sans-serif;
  }

  .final-cta-section * {
    box-sizing: border-box;
  }

  .final-cta-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
  }

  .final-cta-box {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background:
      radial-gradient(circle at 50% 0%, rgba(244, 180, 0, 0.16), transparent 34%),
      linear-gradient(160deg, #171717 0%, #101010 55%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 28px;
    box-shadow: var(--shadow-dark);
  }

  .final-cta-box::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -310px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(244, 180, 0, 0.24) 0%, rgba(244, 180, 0, 0) 68%);
    pointer-events: none;
  }

  .final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
  }

  .final-cta-title {
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.3px;
    margin: 0 0 18px;
    color: var(--white);
  }

  .final-cta-text {
    max-width: 540px;
    margin: 0 auto 34px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.6;
  }

  .final-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .final-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 30px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
  }

  .final-cta-btn.audit {
    background: var(--gradient-gold);
    color: #17130a;
    box-shadow: var(--shadow-gold);
  }

  .final-cta-btn.audit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(244, 180, 0, 0.32);
  }

  .final-cta-btn.whatsapp {
    background: rgba(37, 211, 102, 0.10);
    color: #4ADE80;
    border: 1.5px solid rgba(37, 211, 102, 0.35);
  }

  .final-cta-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.18);
    transform: translateY(-3px);
  }

  @media (max-width: 640px) {
    .final-cta-section {
      padding: 55px 0 70px;
    }

    .final-cta-container {
      padding: 0 18px;
    }

    .final-cta-box {
      min-height: auto;
      padding: 55px 22px;
      border-radius: 16px;
    }

    .final-cta-title {
      font-size: 32px;
      letter-spacing: -1px;
    }

    .final-cta-text {
      font-size: 14px;
      margin-bottom: 26px;
    }

    .final-cta-actions {
      flex-direction: column;
      gap: 12px;
    }

    .final-cta-btn {
      width: 100%;
      min-height: 54px;
    }
  }

  

            .faq-section {
                background: var(--bg);
                color: var(--white);
                padding: 90px 0;
                font-family: "Inter", sans-serif;
            }

            .faq-section * {
                box-sizing: border-box;
            }

            .faq-container {
                width: 100%;
                max-width: var(--container);
                margin: 0 auto;
                padding: 0 24px;
            }

            .faq-head {
                max-width: 720px;
                margin: 0 auto 58px;
                text-align: center;
            }

            .faq-eyebrow {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                color: var(--gold);
                font-size: 12px;
                font-weight: 800;
                letter-spacing: 0.18em;
                text-transform: uppercase;
                margin-bottom: 22px;
            }

            .faq-eyebrow::before {
                content: "";
                width: 22px;
                height: 2px;
                background: var(--gold);
                display: inline-block;
            }

            .faq-head h2 {
                font-family: "Poppins", sans-serif;
                font-size: 42px;
                line-height: 1.15;
                font-weight: 800;
                letter-spacing: -1.5px;
                margin: 0;
                color: var(--white);
            }

            .faq-list {
                max-width: 850px;
                margin: 0 auto;
                border-top: 1px solid var(--border-soft);
            }

            .faq-item {
                border-bottom: 1px solid var(--border-soft);
            }

            .faq-q {
                width: 100%;
                min-height: 70px;
                padding: 22px 4px;
                background: transparent;
                border: none;
                color: var(--white);
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 18px;
                text-align: left;
                cursor: pointer;
                font-family: "Poppins", sans-serif;
                font-size: 17px;
                line-height: 1.35;
                font-weight: 800;
            }

            .faq-q:hover {
                color: var(--gold-light);
            }

            .faq-plus {
                position: relative;
                width: 30px;
                height: 30px;
                min-width: 30px;
                border-radius: 50%;
                border: 1.5px solid var(--border);
                background: rgba(244, 180, 0, 0.05);
                transition: all 0.28s ease;
            }

            .faq-plus::before,
            .faq-plus::after {
                content: "";
                position: absolute;
                left: 50%;
                top: 50%;
                background: var(--gold);
                border-radius: 999px;
                transform: translate(-50%, -50%);
                transition: all 0.28s ease;
            }

            .faq-plus::before {
                width: 12px;
                height: 2px;
            }

            .faq-plus::after {
                width: 2px;
                height: 12px;
            }

            .faq-item.active .faq-plus {
                background: rgba(244, 180, 0, 0.14);
                transform: rotate(180deg);
            }

            .faq-item.active .faq-plus::after {
                height: 0;
            }

            .faq-a {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.35s ease;
            }

            .faq-a p {
                color: var(--muted);
                font-size: 15.5px;
                line-height: 1.75;
                margin: 0;
                padding: 0 52px 24px 4px;
                max-width: 760px;
            }

            .faq-cta {
                max-width: 850px;
                margin: 44px auto 0;
                padding: 34px 30px;
                border: 1px solid var(--border);
                border-radius: 18px;
                background: linear-gradient(160deg, #171717, #0f0f0f);
                text-align: center;
                box-shadow: var(--shadow-dark);
            }

            .faq-cta h3 {
                font-family: "Poppins", sans-serif;
                color: var(--white);
                font-size: 26px;
                line-height: 1.25;
                font-weight: 800;
                margin: 0 0 10px;
            }

            .faq-cta p {
                color: var(--muted);
                font-size: 15px;
                line-height: 1.65;
                margin: 0 auto 24px;
                max-width: 620px;
            }

            .faq-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-height: 54px;
                padding: 0 28px;
                border-radius: 999px;
                background: var(--gradient-gold);
                color: #17130a;
                font-size: 14px;
                font-weight: 800;
                text-decoration: none;
                box-shadow: var(--shadow-gold);
                transition: all 0.25s ease;
            }

            .faq-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 16px 40px rgba(244, 180, 0, 0.32);
            }

            @media (max-width: 640px) {
                .faq-section {
                    padding: 70px 0;
                }

                .faq-container {
                    padding: 0 18px;
                }

                .faq-head {
                    margin-bottom: 42px;
                }

                .faq-eyebrow {
                    font-size: 10px;
                    margin-bottom: 16px;
                }

                .faq-q {
                    min-height: 64px;
                    font-size: 15px;
                    padding: 20px 0;
                }

                .faq-a p {
                    font-size: 14px;
                    padding: 0 0 22px;
                }

                .faq-plus {
                    width: 28px;
                    height: 28px;
                    min-width: 28px;
                }

                .faq-cta {
                    padding: 28px 22px;
                    margin-top: 34px;
                }

                .faq-cta h3 {
                    font-size: 22px;
                }

                .faq-btn {
                    width: 100%;
                }
            }
       