        :root {
            --navy: oklch(0.27 0.018 250);
            --navy-darker: oklch(0.205 0 0);
            --navy-light: oklch(0.3 0.018 250);
            --blue-accent: oklch(0.46 0.13 255);
            --blue-glow: oklch(0.46 0.13 255 / 0.5);
            --teal: oklch(0.6 0.15 160);
            --bg-light: oklch(0.975 0.003 250);
            --white: oklch(1 0 0);
            --gray-text: oklch(0.5 0.01 250);
            --border-color: oklch(0.93 0.005 250);
            --border-navy: oklch(0.205 0 0);
            --card-shadow: 0 12px 32px -16px oklch(0.5 0.05 255 / 0.18);
            --gradient-main: linear-gradient(135deg, oklch(0.98 0.01 250) 0%, oklch(0.95 0.03 250) 100%);
            --gradient-text: linear-gradient(135deg, oklch(0.46 0.13 255) 0%, oklch(0.66 0.13 255) 100%);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--white);
            color: var(--navy);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            background-image:
                radial-gradient(ellipse 70% 50% at 12% 0%, oklch(0.85 0.09 255 / 0.35), transparent 60%),
                radial-gradient(ellipse 60% 50% at 95% 15%, oklch(0.88 0.07 290 / 0.3), transparent 65%),
                radial-gradient(ellipse 80% 50% at 50% 100%, oklch(0.9 0.05 240 / 0.25), transparent 60%);
            background-attachment: fixed;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            letter-spacing: -0.03em;
        }

        /* --- ANIMATIONS --- */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-up {
            animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .delay-1 {
            animation-delay: 0.1s;
        }

        .delay-2 {
            animation-delay: 0.2s;
        }

        .delay-3 {
            animation-delay: 0.3s;
        }

        /* --- NAVIGATION --- */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: oklch(1 0 0 / 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 8%;
            height: 80px;
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--navy);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            letter-spacing: -0.05em;
        }

        .logo span {
            color: var(--blue-accent);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray-text);
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--navy);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--blue-accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .lang-switch {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            padding: 4px;
            display: flex;
            gap: 4px;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
        }

        .lang-btn {
            border: none;
            background: transparent;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            color: var(--gray-text);
            transition: all 0.3s ease;
        }

        .lang-btn.active {
            background: var(--navy);
            color: var(--white);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-discovery {
            background: var(--navy);
            color: var(--white);
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(11, 17, 32, 0.15);
        }

        .btn-discovery:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(11, 17, 32, 0.2);
            background: var(--navy-light);
        }

        /* --- HERO SECTION --- */
        .hero {
            padding: 160px 8% 80px;
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                padding-top: 180px;
                text-align: left;
            }
        }

        .hero-content-left {
            text-align: left;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: oklch(0.975 0.003 250 / 0.6);
            backdrop-filter: blur(10px);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            color: var(--gray-text);
            border: 1px solid var(--border-color);
            margin-bottom: 28px;
            letter-spacing: 0.02em;
        }

        .hero-tag .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--blue-accent);
        }

        .hero h1 {
            font-size: clamp(40px, 5vw, 60px);
            line-height: 1.05;
            margin-bottom: 28px;
            color: var(--navy);
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: 18px;
            color: var(--gray-text);
            max-width: 560px;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            font-size: 12px;
            color: var(--gray-text);
            font-weight: 500;
        }

        .hero-feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* --- HERO RIGHT CARD (POD TRACKER) --- */
        .hero-card-wrapper {
            position: relative;
            animation: float 7s ease-in-out infinite;
        }

        .pod-tracker {
            background: oklch(1 0 0 / 0.6);
            backdrop-filter: blur(24px) saturate(150%);
            border: 1px solid oklch(0.93 0.005 250 / 0.9);
            border-radius: 24px;
            padding: 28px;
            box-shadow: 
                inset 0 1px 0 oklch(1 0 0 / 0.85),
                0 4px 12px -4px rgba(37,71,160,0.12),
                0 24px 48px -20px rgba(37,71,160,0.32),
                0 60px 80px -40px rgba(37,71,160,0.18);
        }

        .pod-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .pod-subtitle {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--gray-text);
            margin-bottom: 4px;
        }

        .pod-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--navy);
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .status-badge {
            font-size: 10px;
            font-weight: 600;
            color: oklch(0.4 0.15 160);
            background: oklch(0.95 0.05 160);
            border: 1px solid oklch(0.9 0.05 160);
            padding: 4px 8px;
            border-radius: 6px;
        }

        .pod-members {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
            justify-content: space-between;
        }

        .member {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex: 1;
        }

        .member-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 11px;
            font-weight: 600;
        }

        .member-role {
            font-size: 10px;
            color: var(--gray-text);
            text-align: center;
        }

        .pod-tasks {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 24px;
        }

        .task-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
        }

        .task-checkbox {
            width: 16px;
            height: 16px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
            background: var(--white);
            flex-shrink: 0;
        }

        .task-checkbox.done {
            background: var(--blue-accent);
            border-color: var(--blue-accent);
            color: white;
        }

        .task-label {
            color: var(--gray-text);
        }
        .task-label.done {
            color: var(--navy);
        }

        .pod-footer {
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .pod-footer-text {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: var(--gray-text);
            margin-bottom: 8px;
        }

        .progress-bar-bg {
            height: 4px;
            background: oklch(0.975 0.003 250);
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-bar-fill {
            height: 100%;
            background: var(--blue-accent);
            border-radius: 4px;
            width: 75%;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* --- LOGO STRIP --- */
        .logo-strip {
            padding: 48px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            overflow: hidden;
            background: transparent;
        }

        .logo-strip-header {
            text-align: center;
            color: rgba(100, 116, 139, 0.7);
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            margin-bottom: 36px;
        }

        .marquee-container {
            position: relative;
            display: flex;
            overflow: hidden;
            /* Fade effect on edges */
            -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
            mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
        }

        .marquee-content {
            display: flex;
            align-items: center;
            gap: 40px;
            animation: marquee 30s linear infinite;
            padding-right: 40px;
        }

        .logo-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            padding: 0 28px;
        }

        .logo-item img {
            width: auto;
            object-fit: contain;
            filter: grayscale(1) opacity(0.4);
            transition: all 0.3s ease;
        }

        .logo-item img:hover {
            filter: grayscale(0) opacity(1);
        }

        .logo-item.text-logo {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 14px;
            color: rgba(100, 116, 139, 0.5);
            letter-spacing: -0.02em;
            white-space: nowrap;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* --- SOLUTIONS GRID REDESIGN --- */
        .section-header {
            text-align: center;
            padding: 120px 8% 60px;
        }

        .section-header h2 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .section-header p {
            color: var(--gray-text);
            font-size: 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            padding: 0 8% 120px;
        }

        .solution-card {
            background: oklch(1 0 0 / 0.6);
            backdrop-filter: blur(24px) saturate(150%);
            -webkit-backdrop-filter: blur(24px) saturate(150%);
            border: 1px solid oklch(0.93 0.005 250 / 0.9);
            box-shadow:
                inset 0 1px 0 oklch(1 0 0 / 0.85),
                0 1px 2px oklch(0 0 0 / 0.04),
                0 12px 32px -16px oklch(0.5 0.05 255 / 0.18);
            border-radius: 32px;
            padding: 48px 40px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            position: relative;
            text-align: left;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-text);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .solution-card:hover {
            transform: translateY(-12px);
            border-color: transparent;
            box-shadow: 0 40px 80px -12px rgba(37, 99, 235, 0.12);
        }

        .solution-card:hover::before {
            opacity: 1;
        }

        .sol-icon-box {
            width: 64px;
            height: 64px;
            background: #EFF6FF;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-accent);
            margin-bottom: 32px;
            transition: all 0.4s ease;
        }

        .solution-card:hover .sol-icon-box {
            background: var(--blue-accent);
            color: var(--white);
            transform: scale(1.1) rotate(5deg);
        }

        .solution-card h3 {
            font-size: 28px;
            margin-bottom: 16px;
            font-weight: 800;
        }

        .price-tag {
            font-size: 16px;
            font-weight: 700;
            color: var(--gray-text);
            margin-bottom: 32px;
            display: block;
            letter-spacing: 0.02em;
            background: var(--bg-light);
            padding: 8px 16px;
            border-radius: 8px;
            width: fit-content;
        }

        .impact-box {
            background: var(--bg-light);
            padding: 24px;
            border-radius: 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--navy);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-top: auto;
            transition: all 0.3s ease;
        }

        .solution-card:hover .impact-box {
            background: #EFF6FF;
            border-color: #BFDBFE;
            color: var(--blue-accent);
        }

        /* --- USE CASE SCENARIOS --- */
        .use-cases {
            background: transparent;
            padding: 120px 8%;
            position: relative;
        }

        .use-case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .case-card {
            background: oklch(1 0 0 / 0.6);
            backdrop-filter: blur(24px) saturate(150%);
            -webkit-backdrop-filter: blur(24px) saturate(150%);
            border: 1px solid oklch(0.93 0.005 250 / 0.9);
            box-shadow:
                inset 0 1px 0 oklch(1 0 0 / 0.85),
                0 1px 2px oklch(0 0 0 / 0.04),
                0 12px 32px -16px oklch(0.5 0.05 255 / 0.18);
            border-radius: 32px;
            padding: 48px;
            transition: all 0.3s ease;
        }

        .case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.05);
        }

        .case-type {
            font-size: 12px;
            font-weight: 800;
            color: var(--blue-accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
            display: inline-block;
            background: #EFF6FF;
            padding: 6px 12px;
            border-radius: 8px;
        }

        .case-problem {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--navy);
            line-height: 1.4;
        }

        .case-solution {
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px dashed var(--border-color);
        }

        .case-link {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 700;
            color: var(--teal);
            margin-bottom: 12px;
        }

        /* --- PRICING CONFIGURATOR --- */
        .pricing {
            background: var(--navy);
            padding: 140px 8%;
            color: var(--white);
            border-radius: 80px 80px 0 0;
            position: relative;
        }

        .pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
            border-radius: 80px 80px 0 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: 1.2fr 480px;
            gap: 80px;
            position: relative;
            z-index: 1;
        }

        .config-title {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: #94A3B8;
            margin-bottom: 32px;
            text-transform: uppercase;
        }

        .service-rows {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .config-row {
            padding: 28px 32px;
            display: flex;
            align-items: center;
            gap: 24px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            transition: all 0.3s ease;
        }

        .config-row:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .config-row.active {
            border-color: var(--teal);
            background: rgba(16, 185, 129, 0.08);
            box-shadow: 0 0 30px rgba(16, 185, 129, 0.1);
        }

        .checkbox-custom {
            width: 28px;
            height: 28px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .active .checkbox-custom {
            background: var(--teal);
            border-color: var(--teal);
        }

        .row-info {
            flex-grow: 1;
        }

        .row-info h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .row-info p {
            color: #94A3B8;
            font-size: 14px;
        }

        .row-price {
            font-weight: 700;
            color: var(--teal);
            font-size: 18px;
        }

        .addons-section {
            margin-top: 60px;
        }

        .addon-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .addon-chip {
            padding: 12px 24px;
            border-radius: 100px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.02);
            color: #CBD5E1;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .addon-chip:hover {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.05);
        }

        .addon-chip.active {
            background: rgba(16, 185, 129, 0.15);
            border-color: var(--teal);
            color: var(--teal);
        }

        .summary-panel {
            background: oklch(1 0 0 / 0.8);
            backdrop-filter: blur(24px) saturate(150%);
            -webkit-backdrop-filter: blur(24px) saturate(150%);
            border: 1px solid oklch(0.93 0.005 250 / 0.9);
            border-radius: 40px;
            padding: 48px;
            position: sticky;
            top: 120px;
            height: fit-content;
            color: var(--navy);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
        }

        .summary-items {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 40px;
        }

        .summary-card-item {
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 24px;
            animation: fadeUp 0.3s ease forwards;
        }

        .summary-card-item:last-child {
            border-bottom: none;
        }

        .sum-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .sum-title {
            font-weight: 800;
            font-size: 16px;
        }

        .sum-price {
            font-weight: 800;
            color: var(--teal);
            font-size: 16px;
        }

        .sum-detail {
            font-size: 14px;
            color: var(--gray-text);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .sum-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 6px;
            background: #F1F5F9;
            color: var(--blue-accent);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .total-box {
            border-top: 1px solid var(--border-color);
            padding-top: 32px;
        }

        .total-amount {
            font-size: 56px;
            font-weight: 800;
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--navy);
            line-height: 1;
            margin: 16px 0;
        }

        .btn-pay {
            width: 100%;
            background: var(--blue-accent);
            color: var(--white);
            border: none;
            padding: 20px;
            border-radius: 16px;
            font-size: 18px;
            font-weight: 700;
            margin-top: 32px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .btn-pay:hover {
            background: #1D4ED8;
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
        }

        /* --- CONTACT SECTION --- */
        .ready-section {
            background: var(--navy-darker);
            padding: 140px 8%;
            color: var(--white);
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 100px;
            align-items: center;
            position: relative;
        }

        .ready-content h2 {
            font-size: 64px;
            line-height: 1.1;
            margin-bottom: 32px;
        }

        .ready-content p {
            color: #94A3B8;
            font-size: 20px;
            margin-bottom: 60px;
            max-width: 520px;
        }

        .benefit-item {
            display: flex;
            gap: 24px;
            margin-bottom: 40px;
            align-items: flex-start;
        }

        .benefit-icon-box {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(37, 99, 235, 0.1);
            border: 1px solid rgba(37, 99, 235, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-accent);
            flex-shrink: 0;
        }

        .benefit-info h4 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .benefit-info p {
            color: #94A3B8;
            font-size: 16px;
            margin-bottom: 0;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 40px;
            padding: 56px;
            backdrop-filter: blur(20px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #CBD5E1;
            margin-bottom: 12px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 18px 24px;
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            color: white;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            outline: none;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--blue-accent);
            background: rgba(37, 99, 235, 0.05);
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }

        .form-group select {
            appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg fill="%23CBD5E1" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
            background-repeat: no-repeat;
            background-position: right 16px center;
        }

        .btn-submit {
            width: 100%;
            background: var(--blue-accent);
            color: white;
            border: none;
            padding: 20px;
            border-radius: 16px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background: #1D4ED8;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
        }

        footer {
            padding: 80px 8% 40px;
            background: var(--navy-darker);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #64748B;
            font-size: 14px;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 800;
            color: white;
            text-decoration: none;
        }

        .footer-logo span {
            color: var(--blue-accent);
        }

        @media (max-width: 1200px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .summary-panel {
                position: static;
            }
        }

        @media (max-width: 1024px) {

            .ready-section,
            .use-case-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 56px;
            }

            .nav-links {
                display: none;
            }

            /* Could add hamburger menu here */
        }

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }

            .hero {
                padding: 180px 5% 100px;
            }

            .section-header,
            .solutions-grid,
            .use-cases,
            .pricing,
            .ready-section {
                padding-left: 5%;
                padding-right: 5%;
            }

            .contact-card {
                padding: 32px;
            }

            .pricing {
                border-radius: 40px 40px 0 0;
            }
        }

        .package-details {
            display: none;
            padding-left: 40px;
            flex-direction: column;
            gap: 12px;
        }

        .config-row.active .package-details {
            display: flex;
        }

        .coupon-section {
            margin-bottom: 24px;
            display: flex;
            gap: 8px;
        }

        .coupon-input {
            flex-grow: 1;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            font-family: inherit;
            font-size: 14px;
            outline: none;
        }

        .btn-coupon {
            padding: 12px 20px;
            background: #F1F5F9;
            color: var(--navy);
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-coupon:hover {
            background: #E2E8F0;
        }

        .faq-section {
            padding: 80px 24px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border-color);
            padding: 24px 0;
            cursor: pointer;
        }

        .faq-item:first-child {
            border-top: 1px solid var(--border-color);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 700;
            color: var(--navy);
            font-size: 15px;
            gap: 16px;
        }

        .faq-question i {
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, margin-top 0.3s ease;
        }

        .faq-answer p {
            color: var(--gray-text);
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            margin-top: 12px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
