 :root {
     --primary-blue: #5B7FDB;
     --dark-navy: #0A1628;
     --light-gray: #F5F7FA;
     --text-dark: #1E293B;
     --text-light: #64748B;
     --accent-cyan: #00B8D4;
     --white: #FFFFFF;
     --gradient-hero: linear-gradient(135deg, #0A1628 0%, #0f2345 50%, #1a3060 100%);
     --glow-blue: rgba(91, 127, 219, 0.25);
     --glow-cyan: rgba(0, 184, 212, 0.2);
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Poppins', sans-serif;
     background: var(--white);
     color: var(--text-dark);
     overflow-x: hidden;
 }

 /* ─── HEADER / NAV ─── */
 header {
     background: var(--white);
     padding: 1rem 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
 }

 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 1rem;
 }

 .logo {
     display: inline-flex;
     align-items: center;
 }

 .logo-img {
     height: auto;
     width: 200px;
 }

 .nav-container nav {
     position: static;
     background: transparent;
     border: 0;
     box-shadow: none;
     padding: 0;
     display: block;
 }

 .nav-container nav ul {
     display: flex;
     list-style: none;
     gap: 1.2rem;
     align-items: center;
     margin: 0;
     padding: 0;
 }

 .nav-container nav ul li {
     position: relative;
 }

 .nav-container nav a {
     text-decoration: none;
     color: var(--text-dark);
     font-weight: 500;
     transition: color 0.3s;
     font-size: 0.95rem;
 }

 .nav-container nav a:hover {
     color: var(--primary-blue);
 }

 .nav-dropdown-toggle {
     display: inline-flex;
     align-items: center;
     gap: 0.45rem;
     border: 0;
     appearance: none;
     background: transparent;
     color: var(--text-dark);
     font-family: inherit;
     font-weight: 500;
     font-size: 0.95rem;
     line-height: 1;
     text-decoration: none;
     cursor: pointer;
     transition: color 0.3s;
     padding: 0;
 }

 .nav-dropdown-toggle i {
     font-size: 0.75rem;
     transition: transform 0.25s ease;
 }

 .nav-dropdown:hover .nav-dropdown-toggle,
 .nav-dropdown:focus-within .nav-dropdown-toggle {
     color: var(--primary-blue);
 }

 .nav-dropdown:hover .nav-dropdown-toggle i,
 .nav-dropdown:focus-within .nav-dropdown-toggle i {
     transform: rotate(180deg);
 }

 .nav-dropdown-menu {
     position: absolute;
     top: calc(100% + 12px);
     left: 0;
     min-width: 190px;
     display: flex;
     flex-direction: column;
     gap: 0.2rem;
     padding: 0.75rem;
     list-style: none;
     background: var(--white);
     border: 1px solid rgba(91, 127, 219, 0.15);
     border-radius: 14px;
     box-shadow: 0 18px 36px rgba(16, 35, 74, 0.12);
     opacity: 0;
     visibility: hidden;
     transform: translateY(8px);
     transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
     z-index: 1001;
 }

 .nav-dropdown-menu a {
     display: block;
     width: 100%;
     padding: 0.7rem 0.85rem;
     border-radius: 10px;
 }

 .nav-dropdown-menu a:hover,
 .nav-dropdown-menu a:focus-visible {
     background: rgba(91, 127, 219, 0.08);
     color: var(--primary-blue);
 }

 .nav-dropdown:hover .nav-dropdown-menu,
 .nav-dropdown:focus-within .nav-dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .home-nav-cta {
     display: inline-block;
     padding: 0.55rem 1rem;
     border: 2px solid var(--primary-blue);
     border-radius: 999px;
     color: var(--primary-blue) !important;
     font-weight: 700;
     font-size: 0.86rem;
     transition: all 0.25s;
 }

 .home-nav-cta:hover {
     background: var(--primary-blue);
     color: #fff !important;
 }

 .mobile-menu-toggle {
     display: none;
 }

 #mobile-menu-toggle:checked~* {
     overflow: hidden;
 }

 body:has(#mobile-menu-toggle:checked) {
     overflow: hidden;
 }

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--text-dark);
     transition: all 0.3s ease;
 }

 .mobile-menu-btn:hover {
     color: var(--primary-blue);
     transform: scale(1.1);
 }

 .mobile-menu {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .mobile-nav-backdrop {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(0, 0, 0, 0.5);
     z-index: 9998;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 #mobile-menu-toggle:checked~.mobile-nav-backdrop {
     opacity: 1;
     visibility: visible;
 }

 .mobile-nav {
     position: fixed;
     top: 0;
     right: 0;
     width: 100%;
     max-width: 400px;
     height: 100vh;
     background: var(--white);
     z-index: 9999;
     padding: 2rem;
     overflow-y: auto;
     transform: translateX(100%);
     transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
 }

 #mobile-menu-toggle:checked~.mobile-nav {
     transform: translateX(0);
 }

 .mobile-nav-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 2rem;
 }

 .close-mobile-menu {
     background: none;
     border: none;
     font-size: 2rem;
     cursor: pointer;
     color: var(--text-dark);
 }

 .mobile-nav ul {
     list-style: none;
 }

 .mobile-nav ul li {
     margin-bottom: 1.2rem;
 }

 .mobile-nav ul li label {
     display: block;
     cursor: pointer;
 }

 .mobile-nav ul li a {
     color: var(--text-dark);
     font-size: 1.05rem;
     text-decoration: none;
     font-weight: 500;
 }

 .mobile-nav ul li a:hover {
     color: var(--primary-blue);
 }

 /* ─── HERO ─── */
 .hero {
     min-height: 100vh;
     background: linear-gradient(135deg, #071733 0%, #0e2952 52%, #1a3d72 100%);
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
     padding: 120px 5% 80px;
 }

 .hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background:
         radial-gradient(ellipse 60% 50% at 80% 40%, rgba(0, 184, 212, 0.18) 0%, transparent 70%),
         radial-gradient(ellipse 50% 60% at 20% 70%, rgba(91, 127, 219, 0.22) 0%, transparent 70%);
 }

 .hero::after {
     content: '';
     position: absolute;
     inset: 0;
     background-image: radial-gradient(rgba(255, 255, 255, 0.05) 0.7px, transparent 0.7px);
     background-size: 22px 22px;
     opacity: 0.18;
     pointer-events: none;
 }

 .hero-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     width: 100%;
     position: relative;
     z-index: 2;
 }

 .hero-grid::after {
     content: '';
     position: absolute;
     top: 7%;
     bottom: 7%;
     left: 50%;
     width: 1px;
     background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
     opacity: 0.7;
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(0, 184, 212, 0.16);
     border: 1px solid rgba(0, 184, 212, 0.38);
     border-radius: 50px;
     padding: 7px 16px;
     color: var(--accent-cyan);
     font-size: 0.82rem;
     font-weight: 500;
     margin-bottom: 24px;
     animation: fadeInUp 0.6s ease both;
 }

 .hero-badge::before {
     content: '🔥';
 }

 h1.hero-headline {
     font-family: 'Poppins', sans-serif;
     font-size: clamp(2rem, 4vw, 3.2rem);
     font-weight: 800;
     color: var(--white);
     line-height: 1.15;
     margin-bottom: 20px;
     letter-spacing: -1px;
     text-shadow: 0 8px 26px rgba(0, 0, 0, 0.3);
     animation: fadeInUp 0.6s ease 0.1s both;
 }

 h1.hero-headline em {
     font-style: normal;
     background: linear-gradient(90deg, #20d9ff, #61a4ff);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero-bullets {
     list-style: none;
     margin-bottom: 36px;
     animation: fadeInUp 0.6s ease 0.2s both;
 }

 .hero-bullets li {
     color: rgba(255, 255, 255, 0.88);
     font-size: 1.02rem;
     padding: 5px 0;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .hero-bullets li::before {
     content: '✔';
     color: var(--accent-cyan);
     font-weight: 700;
 }

 .hero-cta-wrap {
     animation: fadeInUp 0.6s ease 0.3s both;
 }

 .btn-primary {
     display: inline-block;
     background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
     color: #fff;
     font-weight: 700;
     font-size: 1.1rem;
     padding: 18px 38px;
     border-radius: 60px;
     text-decoration: none;
     border: none;
     cursor: pointer;
     box-shadow: 0 8px 30px rgba(91, 127, 219, 0.45);
     transition: all 0.3s;
     font-family: 'Poppins', sans-serif;
     letter-spacing: 0.2px;
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 14px 40px rgba(91, 127, 219, 0.6);
 }

 .urgency-text {
     display: flex;
     align-items: center;
     gap: 8px;
     color: rgba(255, 255, 255, 0.55);
     font-size: 0.82rem;
     margin-top: 14px;
 }

 .urgency-text span {
     color: #FFB74D;
     font-weight: 600;
 }

 /* Hero card */
 .hero-card {
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
     border: 1px solid rgba(255, 255, 255, 0.18);
     border-radius: 24px;
     padding: 36px;
     backdrop-filter: blur(12px);
     box-shadow: 0 18px 44px rgba(7, 23, 51, 0.42);
     animation: fadeInRight 0.7s ease 0.2s both;
 }

 .hero-card h3 {
     font-family: 'Poppins', sans-serif;
     color: var(--white);
     font-size: 1.2rem;
     margin-bottom: 20px;
     font-weight: 700;
 }

 .price-display {
     display: flex;
     align-items: baseline;
     gap: 12px;
     margin-bottom: 24px;
 }

 .price-old {
     font-size: 1.4rem;
     color: rgba(255, 255, 255, 0.35);
     text-decoration: line-through;
 }

 .price-new {
     font-family: 'Poppins', sans-serif;
     font-size: 3.5rem;
     font-weight: 800;
     color: var(--accent-cyan);
     line-height: 1;
 }

 .price-label {
     font-size: 0.82rem;
     color: rgba(255, 255, 255, 0.5);
     align-self: flex-end;
     padding-bottom: 6px;
 }

 .feature-list {
     list-style: none;
 }

 .feature-list li {
     color: rgba(255, 255, 255, 0.8);
     padding: 8px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 0.92rem;
 }

 .feature-list li:last-child {
     border-bottom: none;
 }

 .feature-list li span {
     color: rgba(84, 225, 246, 0.9);
 }

 /* Country flags */
 .flag-row {
     display: flex;
     gap: 8px;
     margin-top: 20px;
     flex-wrap: wrap;
 }

 .flag-chip {
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.12);
     border-radius: 50px;
     padding: 5px 13px;
     font-size: 0.8rem;
     color: rgba(255, 255, 255, 0.7);
     display: flex;
     align-items: center;
     gap: 5px;
 }

 /* ─── TRUST STRIP ─── */
 .trust-strip {
     background: var(--light-gray);
     padding: 40px 5%;
     border-bottom: 1px solid #E2E8F0;
 }

 .trust-strip-inner {
     max-width: 1000px;
     margin: 0 auto;
     display: flex;
     justify-content: space-around;
     align-items: center;
     flex-wrap: wrap;
     gap: 24px;
 }

 .trust-item {
     text-align: center;
 }

 .trust-num {
     font-family: 'Poppins', sans-serif;
     font-size: 2rem;
     font-weight: 800;
     color: var(--primary-blue);
     line-height: 1;
 }

 .trust-label {
     font-size: 0.82rem;
     color: var(--text-light);
     margin-top: 4px;
 }

 .trust-divider {
     width: 1px;
     height: 50px;
     background: #CBD5E1;
 }

 /* ─── WHAT YOU GET ─── */
 section {
     padding: 80px 5%;
 }

 .section-label {
     font-size: 0.78rem;
     font-weight: 600;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--accent-cyan);
     margin-bottom: 10px;
 }

 h2.section-title {
     font-family: 'Poppins', sans-serif;
     font-size: clamp(1.7rem, 3vw, 2.4rem);
     font-weight: 800;
     color: var(--text-dark);
     line-height: 1.2;
     letter-spacing: -0.5px;
     margin-bottom: 14px;
 }

 .section-sub {
     color: var(--text-light);
     font-size: 1rem;
     max-width: 500px;
     margin-bottom: 50px;
     line-height: 1.7;
 }

 .get-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 20px;
     max-width: 1100px;
     margin: 0 auto;
 }

 .get-card {
     background: var(--white);
     border: 1.5px solid #E2E8F0;
     border-radius: 18px;
     padding: 28px 24px;
     transition: all 0.3s;
     position: relative;
     overflow: hidden;
 }

 .get-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
     transform: scaleX(0);
     transition: transform 0.3s;
 }

 .get-card:hover {
     transform: translateY(-5px);
     border-color: var(--primary-blue);
     box-shadow: 0 12px 30px rgba(91, 127, 219, 0.12);
 }

 .get-card:hover::before {
     transform: scaleX(1);
 }

 .get-icon {
     font-size: 2.2rem;
     margin-bottom: 16px;
     display: block;
 }

 .get-card h4 {
     font-family: 'Poppins', sans-serif;
     font-weight: 700;
     font-size: 1rem;
     color: var(--text-dark);
     margin-bottom: 8px;
 }

 .get-card p {
     font-size: 0.88rem;
     color: var(--text-light);
     line-height: 1.6;
 }

 /* ─── HOW IT WORKS ─── */
 .how-section {
     background: var(--dark-navy);
     padding: 80px 5%;
 }

 .how-section .section-label {
     color: var(--accent-cyan);
 }

 .how-section h2.section-title {
     color: var(--white);
 }

 .how-section .section-sub {
     color: rgba(255, 255, 255, 0.5);
 }

 .steps-row {
     display: flex;
     gap: 0;
     align-items: stretch;
     max-width: 900px;
     margin: 0 auto;
     position: relative;
 }

 .step {
     flex: 1;
     text-align: center;
     position: relative;
     padding: 36px 24px;
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     margin: 0 10px;
     transition: all 0.3s;
 }

 .step:hover {
     background: rgba(91, 127, 219, 0.1);
     border-color: rgba(91, 127, 219, 0.3);
     transform: translateY(-5px);
 }

 .step-num {
     width: 52px;
     height: 52px;
     background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: 'Poppins', sans-serif;
     font-weight: 800;
     font-size: 1.3rem;
     color: white;
     margin: 0 auto 18px;
     box-shadow: 0 0 0 6px rgba(91, 127, 219, 0.15);
 }

 .step h4 {
     font-family: 'Poppins', sans-serif;
     color: white;
     font-weight: 700;
     font-size: 1.05rem;
     margin-bottom: 10px;
 }

 .step p {
     color: rgba(255, 255, 255, 0.5);
     font-size: 0.88rem;
     line-height: 1.6;
 }

 .step-arrow {
     position: absolute;
     right: -20px;
     top: 50%;
     transform: translateY(-50%);
     color: var(--accent-cyan);
     font-size: 1.2rem;
     z-index: 2;
 }

 /* ─── OFFER / COUNTDOWN ─── */
 .offer-section {
     background: linear-gradient(135deg, var(--primary-blue) 0%, #3a5fc1 50%, var(--accent-cyan) 100%);
     padding: 80px 5%;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .offer-section::before {
     content: '';
     position: absolute;
     inset: 0;
     background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
 }

 .offer-section>* {
     position: relative;
     z-index: 1;
 }

 .offer-tag {
     display: inline-block;
     background: rgba(255, 255, 255, 0.2);
     border: 1px solid rgba(255, 255, 255, 0.3);
     border-radius: 50px;
     padding: 6px 18px;
     color: white;
     font-size: 0.82rem;
     font-weight: 600;
     margin-bottom: 20px;
     letter-spacing: 1px;
     text-transform: uppercase;
 }

 .offer-section h2 {
     font-family: 'Poppins', sans-serif;
     font-size: clamp(1.8rem, 4vw, 3rem);
     color: white;
     font-weight: 800;
     margin-bottom: 8px;
 }

 .price-strike {
     color: rgba(255, 255, 255, 0.6);
     font-size: 1.3rem;
     text-decoration: line-through;
     margin-bottom: 4px;
 }

 .price-big {
     font-family: 'Poppins', sans-serif;
     font-size: 5rem;
     font-weight: 800;
     color: white;
     line-height: 1;
     margin-bottom: 30px;
     text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
 }

 .countdown {
     display: flex;
     justify-content: center;
     gap: 16px;
     margin-bottom: 36px;
 }

 .cd-box {
     background: rgba(255, 255, 255, 0.15);
     border: 1px solid rgba(255, 255, 255, 0.25);
     border-radius: 14px;
     padding: 14px 20px;
     min-width: 70px;
     backdrop-filter: blur(8px);
 }

 .cd-num {
     font-family: 'Poppins', sans-serif;
     font-size: 2rem;
     font-weight: 800;
     color: white;
     line-height: 1;
 }

 .cd-label {
     font-size: 0.7rem;
     color: rgba(255, 255, 255, 0.6);
     margin-top: 4px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .btn-white {
     background: white;
     color: var(--primary-blue);
     font-weight: 700;
     font-size: 1.1rem;
     padding: 18px 42px;
     border-radius: 60px;
     border: none;
     cursor: pointer;
     font-family: 'Poppins', sans-serif;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
     transition: all 0.3s;
     display: inline-block;
     text-decoration: none;
 }

 .btn-white:hover {
     transform: translateY(-3px);
     box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
 }

 /* ─── TESTIMONIALS ─── */
 .testi-section {
     background: var(--light-gray);
 }

 .testi-grid {
     display: flex;
     align-items: stretch;
     flex-wrap: nowrap;
     gap: 20px;
     max-width: 1100px;
     margin: 0 auto;
     transition: transform 0.45s ease;
     will-change: transform;
 }

 .testi-card {
     background: white;
     border-radius: 20px;
     padding: 28px;
     border: 1.5px solid #E2E8F0;
     transition: all 0.3s;
     flex: 0 0 auto;
 }

 .testi-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 }

 .stars {
     color: #F59E0B;
     font-size: 1rem;
     margin-bottom: 14px;
     letter-spacing: 2px;
 }

 .testi-text {
     color: var(--text-dark);
     font-size: 0.95rem;
     line-height: 1.7;
     margin-bottom: 20px;
     font-style: italic;
 }

 .testi-author {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .testi-avatar {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
     font-weight: 700;
     color: white;
     flex-shrink: 0;
 }

 .testi-name {
     font-weight: 600;
     color: var(--text-dark);
     font-size: 0.9rem;
 }

 .testi-meta {
     font-size: 0.78rem;
     color: var(--text-light);
     margin-top: 2px;
 }

 .testi-carousel {
     position: relative;
     display: flex;
     align-items: center;
     gap: 14px;
 }

 .testi-viewport {
     overflow: hidden;
     width: 100%;
     padding: 6px;
 }

 .testi-nav {
     width: 42px;
     height: 42px;
     border: none;
     border-radius: 50%;
     cursor: pointer;
     background: #0f2345;
     color: #fff;
     font-size: 1.2rem;
     line-height: 1;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 8px 20px rgba(15, 35, 69, 0.25);
     transition: transform 0.2s ease, opacity 0.2s ease;
 }

 .testi-nav:hover {
     transform: translateY(-2px);
 }

 .testi-nav:disabled {
     opacity: 0.35;
     cursor: not-allowed;
     transform: none;
 }

 .testi-dots {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 8px;
     margin-top: 16px;
 }

 .testi-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     border: none;
     background: #cbd5e1;
     cursor: pointer;
     transition: transform 0.2s ease, background-color 0.2s ease;
 }

 .testi-dot.active {
     background: #0f2345;
     transform: scale(1.2);
 }

 /* ─── GOOGLE REVIEW STRIP ─── */
 .review-strip {
     background: white;
     padding: 32px 5%;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 14px;
     border-top: 1px solid #E2E8F0;
     border-bottom: 1px solid #E2E8F0;
     flex-wrap: wrap;
 }

 .review-strip .g-logo {
     font-size: 1.4rem;
 }

 .review-strip .g-logo img {
     width: 100%;
     height: auto;
     max-width: 120px;
     display: block;
 }

 .review-strip .rating-text {
     font-family: 'Poppins', sans-serif;
     font-weight: 700;
     font-size: 1.2rem;
     color: var(--text-dark);
 }

 .review-strip .stars-g {
     color: #F59E0B;
     font-size: 1.2rem;
     letter-spacing: 2px;
 }

 .review-strip .review-count {
     color: var(--text-light);
     font-size: 0.88rem;
 }

 /* ─── FAQ ─── */
 .faq-wrap {
     max-width: 740px;
     margin: 0 auto;
 }

 .faq-item {
     border: 1.5px solid #E2E8F0;
     border-radius: 14px;
     margin-bottom: 12px;
     overflow: hidden;
     transition: all 0.3s;
 }

 .faq-item.open {
     border-color: var(--primary-blue);
 }

 .faq-q {
     padding: 20px 24px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
     color: var(--text-dark);
     font-size: 0.97rem;
     user-select: none;
 }

 .faq-icon {
     color: var(--primary-blue);
     font-size: 1.3rem;
     transition: transform 0.3s;
     flex-shrink: 0;
 }

 .faq-item.open .faq-icon {
     transform: rotate(45deg);
 }

 .faq-a {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.35s ease, padding 0.3s;
     padding: 0 24px;
     color: var(--text-light);
     font-size: 0.9rem;
     line-height: 1.7;
 }

 .faq-item.open .faq-a {
     max-height: 200px;
     padding: 0 24px 20px;
 }

 /* ─── FORM SECTION ─── */
 .form-section {
     background: var(--dark-navy);
     padding: 80px 5%;
 }

 .form-layout {
     max-width: 1280px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 26px;
     align-items: start;
 }

 .form-promo {
     border-radius: 28px;
     overflow: hidden;
     border: 1px solid rgba(255, 255, 255, 0.12);
     background: rgba(255, 255, 255, 0.06);
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 12px;
 }

 .form-promo img {
     width: 100%;
     height: auto;
     max-height: 100%;
     object-fit: contain;
     display: block;
     border-radius: 18px;
 }

 .form-wrap {
     max-width: none;
     width: 100%;
     margin: 0;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04));
     border: 1px solid rgba(255, 255, 255, 0.14);
     border-radius: 28px;
     padding: 36px 40px 48px;
     backdrop-filter: blur(12px);
     box-shadow: 0 24px 52px rgba(6, 18, 40, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.12);
 }

 .form-top-heading {
     text-align: center;
     margin-bottom: 24px;
     padding-bottom: 20px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.12);
 }

 .form-top-badge {
     display: inline-block;
     background: rgba(0, 184, 212, 0.18);
     color: #00E5FF;
     font-size: 0.78rem;
     font-weight: 600;
     letter-spacing: 0.8px;
     text-transform: uppercase;
     padding: 4px 14px;
     border-radius: 50px;
     border: 1px solid rgba(0, 184, 212, 0.35);
     margin-bottom: 10px;
 }

 .form-top-heading h3 {
     font-size: 1.45rem;
     font-weight: 800;
     color: #ffffff;
     margin: 0 0 6px;
     line-height: 1.3;
 }

 .form-top-heading p {
     font-size: 0.88rem;
     color: rgba(255, 255, 255, 0.6);
     margin: 0;
 }

 .form-section h2 {
     color: white;
 }

 .form-section .section-sub {
     color: rgba(255, 255, 255, 0.5);
 }

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

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

 .error-message {
     min-height: 14px;
     font-size: 0.75rem;
     color: #FCA5A5;
     line-height: 1.2;
 }

 .form-group.full {
     grid-column: 1 / -1;
 }

 label {
     font-size: 0.8rem;
     font-weight: 500;
     color: rgba(255, 255, 255, 0.56);
     letter-spacing: 0.5px;
 }

 input,
 select {
     background: rgba(255, 255, 255, 0.11);
     border: 1.5px solid rgba(255, 255, 255, 0.15);
     border-radius: 10px;
     padding: 13px 16px;
     color: white;
     font-family: 'Poppins', sans-serif;
     font-size: 0.95rem;
     outline: none;
     transition: border-color 0.3s, background 0.3s;
     width: 100%;
 }

 input::placeholder {
     color: rgba(255, 255, 255, 0.34);
 }

 input:focus,
 select:focus {
     border-color: #6ba3ff;
     background: rgba(91, 127, 219, 0.2);
     box-shadow: 0 0 0 3px rgba(91, 127, 219, 0.2);
 }

 select option {
     background: #0A1628;
     color: white;
 }

 .btn-form {
     width: 100%;
     padding: 18px;
     background: linear-gradient(135deg, #4f7ee8 0%, #14c8e5 100%);
     color: white;
     font-size: 1.1rem;
     font-weight: 700;
     border: none;
     border-radius: 12px;
     cursor: pointer;
     font-family: 'Poppins', sans-serif;
     box-shadow: 0 12px 36px rgba(20, 200, 229, 0.35), 0 8px 24px rgba(79, 126, 232, 0.3);
     transition: all 0.3s;
     margin-top: 6px;
 }

 .btn-form:disabled {
     opacity: 0.7;
     cursor: not-allowed;
 }

 .terms-text {
     color: rgba(255, 255, 255, 0.5);
     font-size: 0.82rem;
     margin-top: 8px;
     margin-bottom: 8px;
 }

 .terms-text a {
     color: #3fd8ef;
     text-decoration: none;
 }

 .terms-text a:hover {
     text-decoration: underline;
 }

 .btn-form:hover {
     transform: translateY(-2px);
     filter: brightness(1.05);
     box-shadow: 0 16px 46px rgba(20, 200, 229, 0.42), 0 10px 28px rgba(79, 126, 232, 0.35);
 }

 .form-guarantee {
     text-align: center;
     margin-top: 14px;
     color: rgba(255, 255, 255, 0.4);
     font-size: 0.8rem;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
 }

 /* ─── FINAL CTA ─── */
 .final-cta {
     padding: 60px 5%;
     background: #f8f9fb;
 }

 .final-cta-card {
     max-width: 1100px;
     margin: 0 auto;
     background: var(--gradient-hero);
     border-radius: 28px;
     padding: 72px 60px;
     text-align: center;
     position: relative;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(13, 31, 60, 0.22);
 }

 .final-cta-card::before {
     content: '';
     position: absolute;
     top: -80px;
     left: -80px;
     width: 320px;
     height: 320px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
     pointer-events: none;
 }

 .final-cta-card::after {
     content: '';
     position: absolute;
     bottom: -80px;
     right: -80px;
     width: 280px;
     height: 280px;
     background: radial-gradient(circle, rgba(0, 184, 212, 0.12) 0%, transparent 70%);
     pointer-events: none;
 }

 .final-cta h2 {
     font-family: 'Poppins', sans-serif;
     font-size: clamp(1.8rem, 3.5vw, 2.6rem);
     color: #ffffff;
     font-weight: 800;
     margin-bottom: 16px;
     text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
     position: relative;
     z-index: 1;
 }

 .final-cta p {
     color: rgba(255, 255, 255, 0.82);
     font-size: 1.05rem;
     max-width: 560px;
     margin: 0 auto 40px;
     line-height: 1.7;
     position: relative;
     z-index: 1;
 }

 .final-cta .btn-primary,
 .final-cta a[href] {
     position: relative;
     z-index: 1;
 }

 @media (max-width: 768px) {
     .final-cta-card {
         padding: 50px 28px;
         border-radius: 20px;
     }
 }

 /* ─── WHATSAPP ─── */
 a.whatsapp-button {
     position: fixed;
     bottom: 80px;
     right: 15px;
     background: #25D366;
     color: #fff;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
     transition: all 0.3s;
     z-index: 10000;
 }

 .wa-btn:hover {
     transform: scale(1.1);
     box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
 }

 /* ─── FOOTER ─── */
 footer {
     background: var(--dark-navy);
     padding: 30px 5%;
     text-align: center;
     color: rgba(255, 255, 255, 0.35);
     font-size: 0.82rem;
     border-top: 1px solid rgba(255, 255, 255, 0.06);
 }

 footer strong {
     color: rgba(255, 255, 255, 0.6);
 }

 /* ─── ANIMATIONS ─── */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(28px);
     }

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

 @keyframes fadeInRight {
     from {
         opacity: 0;
         transform: translateX(28px);
     }

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

 @keyframes pulse {

     0%,
     100% {
         box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
     }

     50% {
         box-shadow: 0 6px 30px rgba(37, 211, 102, 0.65);
     }
 }

 /* ─── RESPONSIVE ─── */
 @media (max-width: 968px) {
     .mobile-menu-btn {
         display: block;
     }

     .nav-container nav ul {
         display: none;
     }
 }

 @media (max-width: 768px) {
     header {
         position: sticky;
         top: 0;
     }

     .hero {
         padding: 60px 5%;
     }

     .nav-container {
         padding: 0 1rem;
     }

     .logo-img {
         height: 42px;
     }

     .hero-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .hero-grid::after {
         display: none;
     }

     .steps-row {
         flex-direction: column;
     }

     .step-arrow {
         display: none;
     }

     .form-layout {
         grid-template-columns: 1fr;
     }

     .form-promo {
         max-width: 680px;
         margin: 0 auto;
     }

     .form-grid {
         grid-template-columns: 1fr;
     }

     .form-wrap {
         padding: 32px 24px;
     }

     .trust-divider {
         display: none;
     }

     .price-big {
         font-size: 3.5rem;
     }

     .testi-carousel {
         gap: 8px;
     }

     .testi-nav {
         width: 34px;
         height: 34px;
         font-size: 1rem;
     }
 }