/* ======================== VARIABLES ======================== */
:root {
  --navy: #0B1121;
  --navy-mid: #1E293B;
  --blue: #38bdf8;
  --blue-dark: #0284c7;
  --green: #10B981;
  --green-light: #34D399;
  --white: #FFFFFF;
  --off-white: #F9FAFB;
  --gray: #A0ABC0;
  --gray-dark: #4A5568;
  --font-main: 'Calibri', 'Candara', 'Segoe UI', 'Optima', 'Arial', sans-serif;
  --radius: 20px;
  --shadow-elevated: 0 20px 64px rgba(11, 36, 71, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.75);
}

/* ======================== RESET ======================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-main); color: var(--navy); background: var(--off-white); overflow-x: hidden; line-height: 1.6; top: 0 !important; position: static !important; }

/* Hide Google Translate original UI Elements */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon, .goog-te-gadget-simple { display: none !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background-color: transparent !important; border: none !important; box-shadow: none !important; }
a, button { text-decoration: none; color: inherit; cursor: pointer; }
img, svg { max-width: 100%; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* REMOVED NOISE & CUSTOM CURSOR FOR PROFESSIONAL AESTHETIC */
.noise-overlay, .custom-cursor, .cursor-follower { display: none !important; }

/* ======================== PAGE LOADER ======================== */
.page-loader { position: fixed; inset: 0; background: var(--navy); z-index: 10000; display: flex; align-items: center; justify-content: center; }
.loader-logo { font-family: var(--font-main); font-size: 40px; color: var(--white); font-weight: 800; margin-bottom: 24px; }
.loader-logo span { color: var(--blue); }
.loader-road { width: 240px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; position: relative; margin: 24px auto 0; }
.loader-van { position: absolute; bottom: 0; left: 0px; transform: translateX(-50%); display: flex; align-items: flex-end; }

/* ======================== UTILITY & LAYOUT ======================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

.section-label { font-family: var(--font-main); font-size: 13px; letter-spacing: 4px; color: var(--blue); font-weight: 700; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 8px; }
.section-label::before, .section-label::after { content: ''; height: 2px; width: 24px; background: var(--blue); border-radius: 2px; opacity: 0.5; }
.section-title { font-family: var(--font-main); font-size: clamp(28px, 6vw, 56px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.03em; }
.section-desc { font-size: 18px; color: var(--gray-dark); margin-bottom: 32px; max-width: 600px; }

/* PROFESSIONAL CARDS (Clean UI rather than Glassmorphism) */
.feature-card-inner, .use-case-card-inner, .pricing-card-inner, .route-card-inner, .contact-inner {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 4px 12px rgba(10,22,40,0.02); border-radius: 16px; transition: all 0.25s ease;
}
.feature-card:hover .feature-card-inner, .use-case-card:hover .use-case-card-inner, .pricing-card:hover .pricing-card-inner, .route-card:hover .route-card-inner {
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,22,40,0.08); border-color: rgba(0,0,0,0.1);
}
.card-glow { display: none; }

/* ======================== BUTTONS ======================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-main); font-weight: 500; font-size: 15px; padding: 12px 24px; border-radius: 8px; transition: all 0.2s; position: relative; }
.btn-primary { background: var(--blue); color: var(--white); border: 1px solid transparent; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary { background: var(--white); color: var(--navy); border: 1px solid #C8CED8; }
.btn-secondary:hover { border-color: var(--gray-dark); background: #F9FAFB; }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ======================== HEADER ======================== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 12px 0; transition: background 0.3s, border 0.3s; border-bottom: 1px solid transparent; }
.site-header.scrolled { padding: 8px 0; background: rgba(255,255,255,0.98); border-bottom: 1px solid rgba(0,0,0,0.05); }
.header-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-family: var(--font-main); font-weight: 800; font-size: 26px; color: var(--white); transition: color 0.4s; }
.logo span { color: var(--blue); }
.scrolled .logo { color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 40px; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); padding: 12px 32px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.1); transition: 0.4s; }
.scrolled .nav-links { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.05); }
.nav-links a { font-family: var(--font-main); font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8); transition: color 0.4s; }
.nav-links a:hover { color: var(--white); }
.scrolled .nav-links a { color: var(--gray-dark); }
.scrolled .nav-links a:hover { color: var(--navy); }

.lang-toggle { 
  display: flex; 
  gap: 0; 
  font-family: var(--font-main); 
  font-size: 13px; 
  font-weight: 700; 
  color: rgba(255,255,255,0.6); 
  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.1); 
  border-radius: 50px; 
  padding: 4px;
  cursor: pointer; 
  transition: 0.3s; 
  user-select: none; 
}
.scrolled .lang-toggle { 
  background: rgba(0,0,0,0.05); 
  border-color: rgba(0,0,0,0.1);
  color: var(--gray-dark);
}
.lang-btn {
  padding: 6px 12px;
  border-radius: 50px;
  transition: 0.3s;
}
.lang-btn.active { 
  background: var(--blue);
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(40,159,252,0.3);
}
.lang-btn:not(.active):hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.scrolled .lang-btn:not(.active):hover {
  color: var(--navy);
  background: rgba(0,0,0,0.05);
}
.lang-toggle .sep { display: none; }

.hamburger { display: none; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--white); margin: 4px auto; transition: 0.4s; }

.mobile-menu { display: none; }

@media (max-width: 992px) {
  .hamburger { display: block; } .nav-links, .header-cta { display: none; }
  .mobile-menu { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 105; opacity: 0; pointer-events: none; transition: 0.4s; }
  .mobile-menu-bg { position: absolute; inset: 0; background: var(--navy); z-index: -1; }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a { font-family: var(--font-main); font-size: 32px; font-weight: 700; color: #fff; margin: 16px 0; }
}

/* ======================== HERO ======================== */
.hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
#hero-particles { display: none; }
.hero-gradient-orb { display: none; }

.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 2; height: 100%; text-align: left; }
.hero-content { max-width: 600px; display: flex; flex-direction: column; align-items: flex-start; margin: 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(5, 8, 15, 0.7); border: 1px solid rgba(0, 243, 255, 0.3); border-radius: 6px; font-weight: 500; font-size: 13px; color: var(--white); margin-bottom: 32px; box-shadow: 0 0 10px rgba(0, 243, 255, 0.1); }
.pulse-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); animation: pulse-ring 2s infinite; }
@keyframes pulse-ring { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 168, 107, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 168, 107, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 168, 107, 0); } }

/* Premium Driving Simulation Animations */
.driving-motion { animation: suspensionBounce 0.4s infinite alternate cubic-bezier(0.4, 0.0, 0.2, 1); }
.driving-motion img { animation: engineVibe 0.08s infinite alternate linear, zoomDrive 10s infinite alternate ease-in-out; transform-origin: 50% 80%; }
.speed-streak { position: absolute; left: 100%; width: 150px; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);     animation: speedStreakSwipe 1.5s infinite linear; filter: blur(2px); mix-blend-mode: overlay; z-index: 2; pointer-events: none; }
.moving-ground-overlay { position: absolute; bottom: 0; width: 100%; height: 30%; background: linear-gradient(to top, rgba(0,0,0,0.1), transparent); animation: roadRush 0.3s infinite linear; z-index: 1; pointer-events: none; }

@keyframes suspensionBounce { 0% { transform: translateY(0); } 100% { transform: translateY(2px); } }
@keyframes engineVibe { 0% { transform: translate(0, 0) rotate(0deg) scale(1.05); } 100% { transform: translate(0.5px, -0.5px) rotate(0.02deg) scale(1.05); } }
@keyframes zoomDrive { 0% { transform: scale(1.02); } 100% { transform: scale(1.1); } }
@keyframes speedStreakSwipe { 0% { left: 120%; transform: scaleX(1); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: -50%; transform: scaleX(3); opacity: 0; } }
@keyframes roadRush { 0% { opacity: 0.8; transform: translateY(0); } 100% { opacity: 1; transform: translateY(5px); } }

.hero h1 { font-family: var(--font-main); font-size: clamp(36px, 8vw, 84px); font-weight: 800; line-height: 1.05; color: var(--white); margin-bottom: 24px; letter-spacing: -0.03em; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub { font-size: 20px; color: var(--gray); margin-bottom: 48px; line-height: 1.6; max-width: 520px; }
.hero-buttons { display: flex; justify-content: flex-start; gap: 16px; margin-bottom: 64px; }

.hero-stat-row { 
  display: flex; 
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 24px; 
  border-top: 1px solid rgba(255,255,255,0.08); 
  padding-top: 48px; 
  margin-top: 16px; 
}
.hero-stat { display: flex; flex-direction: column; gap: 8px; }
.hero-stat .num-wrapper { 
  display: flex; 
  align-items: baseline; 
  font-family: var(--font-main); 
  font-size: 48px; 
  font-weight: 800; 
  color: var(--white); 
  line-height: 1;
}
.hero-stat .num-suffix { font-size: 28px; color: var(--blue); margin-left: 2px; }
.label { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

.bloom-text { text-shadow: 0 0 10px rgba(255,255,255,0.3), 0 0 20px rgba(40,159,252,0.2); }
.glow-blue { text-shadow: 0 0 10px rgba(40,159,252,0.8), 0 0 20px rgba(40,159,252,0.5), 0 0 30px rgba(40,159,252,0.3); }
.glow-amber { text-shadow: 0 0 10px rgba(250,204,21,0.8), 0 0 20px rgba(250,204,21,0.5), 0 0 30px rgba(250,204,21,0.3); }
.glow-red { text-shadow: 0 0 10px rgba(255,0,0,0.8), 0 0 20px rgba(255,0,0,0.5); }

.flicker-1 { animation: flicker 3s infinite; }
.flicker-2 { animation: flicker 4s infinite 1s; }

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.4; }
}

.scanlines {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 4px, 3px 100%;
  pointer-events: none;
}

.ticker-anim { animation: ticker 10s linear infinite; white-space: nowrap; }
@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.neon-hub { position: relative; height: 700px; display: flex; align-items: center; justify-content: center; z-index: 1; overflow: visible; }
#three-car-container { width: 100%; height: 100%; }

.float-card { position: absolute; background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(12px); border-radius: 12px; z-index: 5; box-shadow: 0 12px 36px rgba(0,0,0,0.4); border: 1px solid rgba(255, 255, 255, 0.08); animation: floatBounce 4s ease-in-out infinite; }
.float-card-inner { display: flex; align-items: center; gap: 10px; padding: 12px 20px; font-size: 15px; font-weight: 700; font-family: var(--font-main); letter-spacing: -0.2px; }
.float-card svg { stroke: currentColor; stroke-width: 3; filter: drop-shadow(0 0 8px currentColor); }
.float-anim-1 { top: 15%; right: 12%; color: #10B981; border-color: rgba(16,185,129,0.3); box-shadow: 0 12px 24px rgba(16,185,129,0.1); animation-delay: 0s; }
.float-anim-2 { bottom: 20%; left: 8%; color: #38bdf8; border-color: rgba(56, 189, 248, 0.3); box-shadow: 0 12px 24px rgba(56,189,248,0.1); animation-delay: 1.3s; }
.float-anim-3 { top: 50%; right: 2%; color: #F59E0B; border-color: rgba(245,158,11,0.3); box-shadow: 0 12px 24px rgba(245,158,11,0.1); animation-delay: 2.6s; }
@keyframes floatBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
  .hero-stat-row { justify-content: center; gap: 40px; width: 100%; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 16px; padding-top: 32px; }
  .hero-visual { height: 450px; margin-top: 24px; position: relative; width: 100%; border-radius: 20px; overflow: hidden; } 
  .float-card { transform: scale(0.75); }
  .float-anim-1 { right: 5%; top: 5%; }
  .float-anim-2 { bottom: 5%; left: 0%; }
  .float-anim-3 { right: 2%; top: 40%; }
}

@media (max-width: 480px) {
  .header-cta .btn { display: none; }
  .hero { padding-top: 100px; padding-bottom: 40px; }
  .hero-stat-row { flex-direction: column; gap: 24px; padding-top: 24px; align-items: center; text-align: center; }
  .hero-stat .num-wrapper { font-size: 40px; justify-content: center; }
  .hero-stat .num-suffix { font-size: 24px; }
  .hero-visual { height: 350px; border-radius: 12px; }
  .float-card { transform: scale(0.65); }
  .faq-list { padding: 16px; }
  .faq-question { font-size: 17px; padding: 16px 0; }
  .input-group input { padding: 16px 20px 16px 52px; }
  .contact-inner, .feature-card-inner, .use-case-card-inner, .pricing-card-inner, .comparison-card-inner { padding: 32px 24px !important; }
}

/* ======================== TRUST MARQUEE ======================== */
.trust-bar { padding: 40px 0; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.05); overflow: hidden; }
.trust-marquee { display: flex; width: 100%; overflow: hidden; position: relative; }
.trust-track { display: flex; align-items: center; gap: 40px; white-space: nowrap; animation: marquee 20s linear infinite; }
.trust-item { display: flex; align-items: center; gap: 12px; font-family: var(--font-main); font-size: 18px; font-weight: 600; color: var(--navy); }
.trust-divider { color: #C8CED8; font-size: 20px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ======================== FEATURES ======================== */
.features { padding: 140px 0; text-align: center; }
.features .section-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 80px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: left; }
.feature-card-inner { padding: 48px 40px; height: 100%; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.feature-card:hover .feature-card-inner { transform: translateY(-8px); box-shadow: var(--shadow-elevated); border-color: rgba(40,159,252,0.4); }
.feature-icon { width: 64px; height: 64px; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 32px; transition: 0.4s; }
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }
.feature-icon.blue { background: rgba(40,159,252,0.1); color: var(--blue); box-shadow: inset 0 0 0 1px rgba(40,159,252,0.2); }
.feature-icon.green { background: rgba(0,168,107,0.1); color: var(--green); box-shadow: inset 0 0 0 1px rgba(0,168,107,0.2); }
.feature-icon.navy { background: rgba(10,22,40,0.05); color: var(--navy); box-shadow: inset 0 0 0 1px rgba(10,22,40,0.1); }
.feature-card h3 { font-family: var(--font-main); font-size: 22px; font-weight: 700; margin-bottom: 16px; }

@media (max-width: 992px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

/* ======================== VERTICAL HOW IT WORKS ======================== */
.how-it-works { padding: 140px 0; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.how-it-works .section-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 100px; }
.how-it-works .section-desc { color: rgba(255,255,255,0.6); }

.steps-container { max-width: 800px; margin: 0 auto; position: relative; display: flex; }
.step-progress-wrapper { width: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-right: 48px; position: absolute; left: 30px; top: 0; bottom: 0; }
.step-progress-bar { width: 100%; background: linear-gradient(180deg, var(--blue), var(--green)); border-radius: 4px; height: 0%; transition: height 0.1s; }

.steps-vertical { display: flex; flex-direction: column; gap: 80px; width: 100%; z-index: 2; }
.step-v { display: flex; align-items: flex-start; gap: 48px; opacity: 0.3; transition: 0.4s; }
.step-v.active { opacity: 1; transform: translateX(10px); }
.step-v-icon { width: 64px; height: 64px; background: var(--navy-mid); border: 2px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }
.step-v.active .step-v-icon { border-color: var(--blue); background: var(--blue); box-shadow: 0 0 30px rgba(40,159,252,0.4); }
.step-v-icon span { font-family: var(--font-main); font-size: 24px; font-weight: 800; }
.step-v.active .step-v-icon span { color: var(--white); }
.step-v-content h3 { font-family: var(--font-main); font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.step-v-content p { font-size: 16px; color: var(--gray); }

/* ======================== ROUTE VISUAL ======================== */
/* ======================== TRIP COMPARISON ======================== */
.route-visual { padding: 120px 0; background: var(--off-white); position: relative; z-index: 10; }
.comparison-header { text-align: center; margin-bottom: 64px; }
.comparison-title { font-size: 42px; font-weight: 800; color: var(--navy); }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1100px; margin: 0 auto; }
.comparison-card-inner { background: var(--white); padding: 56px 48px; border-radius: 24px; border: 1px solid rgba(0,0,0,0.05); height: 100%; display: flex; flex-direction: column; position: relative; }
.comparison-card.featured .comparison-card-inner { border-color: var(--blue); box-shadow: 0 30px 60px rgba(40,159,252,0.1); background: var(--white); }
.comparison-label { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-dark); margin-bottom: 8px; }
.comparison-card.featured .comparison-label { color: var(--blue); }
.comparison-route { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 40px; }
.comparison-stats { display: flex; flex-direction: column; gap: 32px; }
.comp-stat { display: flex; flex-direction: column; }
.comp-val { font-size: 32px; font-weight: 800; color: var(--navy); }
.comp-desc { font-size: 15px; color: var(--gray-dark); margin-top: 4px; }
.comparison-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 800; text-transform: uppercase; box-shadow: 0 10px 20px rgba(40,159,252,0.3); }
.savings-tag { margin-top: 48px; padding-top: 32px; border-top: 1px dashed rgba(0,0,0,0.1); font-size: 20px; font-weight: 800; color: var(--green); }

@media (max-width: 850px) {
  .comparison-grid { grid-template-columns: 1fr; }
  .route-visual { padding: 80px 0; }
}

/* ======================== USE CASES ======================== */
.use-cases { padding: 140px 0; background: var(--off-white); text-align: center; }
.use-cases .section-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 80px; }
.use-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.use-case-card-inner { padding: 56px 40px; height: 100%; display: flex; flex-direction: column; background: var(--white); }
.use-case-card:hover .use-case-card-inner { transform: translateY(-8px); box-shadow: var(--shadow-elevated); border-color: rgba(40,159,252,0.2); }
.use-case-emoji { font-size: 56px; margin-bottom: 32px; display: inline-block; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.1)); }
.use-case-card h3 { font-family: var(--font-main); font-size: 24px; font-weight: 700; margin-bottom: 16px; }

@media (max-width: 900px) { .use-cases-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; } }

/* ======================== PRICING ======================== */
.pricing { padding: 140px 0; background: #fff; text-align: center; }
.pricing .section-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 80px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; align-items: center; text-align: left; }
.pricing-card-inner { padding: 56px 40px; display: flex; flex-direction: column; height: 100%; background: var(--white); }
.pricing-card.featured .pricing-card-inner { padding: 64px 40px; border-color: var(--blue); box-shadow: 0 12px 32px rgba(40,159,252,0.1); z-index: 2; position: relative; }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-weight: 600; font-size: 12px; padding: 4px 16px; border-radius: 100px; text-transform: uppercase; }
.pricing-card:hover .pricing-card-inner { transform: translateY(-8px); box-shadow: var(--shadow-elevated); }
.pricing-card.featured:hover .pricing-card-inner { transform: scale(1.05) translateY(-8px); }
.pricing-name { font-family: var(--font-main); font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.pricing-desc { font-size: 15px; color: var(--gray); margin-bottom: 32px; height: 44px; }
.pricing-amount { font-family: var(--font-main); font-size: 56px; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-amount .currency { font-size: 28px; font-weight: 600; vertical-align: top; margin-right: 4px; }
.pricing-period { font-size: 14px; color: var(--gray); margin: 8px 0 40px; font-weight: 500; }
.pricing-features { margin-bottom: 48px; flex: 1; }
.pricing-features li { padding: 12px 0 12px 36px; position: relative; color: var(--gray-dark); font-weight: 500; border-bottom: 1px solid rgba(0,0,0,0.03); }
.pricing-features li::before { content: ''; position: absolute; left: 0; top: 14px; width: 20px; height: 20px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300A86B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); }
.pricing-card .btn { width: 100%; border-radius: 16px; }

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 450px; } .pricing-card.featured .pricing-card-inner { transform: scale(1); padding: 56px 40px; } }

/* ======================== FAQ ======================== */
.faq { padding: 140px 0; background: var(--off-white); text-align: center; }
.faq .section-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 80px; }
.faq-list { max-width: 800px; margin: 0 auto; background: var(--white); border-radius: 24px; padding: 20px 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.04); }
.faq-item { border-bottom: none; border: none; }
.faq-item:last-child { border-bottom: none; border: none; }
.faq-question { width: 100%; border: none; outline: none; background: none; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; text-align: left; font-family: var(--font-main); font-size: 20px; font-weight: 600; color: var(--navy); transition: color 0.3s; cursor: pointer; }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; position: relative; transition: 0.4s; }
.faq-icon span { position: absolute; background: var(--navy); border-radius: 2px; }
.faq-icon span:first-child { width: 12px; height: 2px; }
.faq-icon span:last-child { width: 2px; height: 12px; transition: 0.4s; }
.faq-item.open .faq-question { color: var(--blue); }
.faq-item.open .faq-icon { background: var(--blue); transform: rotate(180deg); }
.faq-item.open .faq-icon span { background: var(--white); }
.faq-item.open .faq-icon span:last-child { transform: rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { padding-bottom: 32px; font-size: 16px; color: var(--gray-dark); line-height: 1.8; text-align: left; }

/* ======================== CONTACT ======================== */
.contact { padding: 160px 0; background: var(--navy); position: relative; overflow: hidden; text-align: center; }
.contact-inner { max-width: 600px; margin: 0 auto; background: rgba(255,255,255,0.03); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 32px; padding: 64px 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.3); position: relative; overflow: hidden; }
.contact .section-title { color: var(--white); font-size: clamp(32px, 8vw, 48px); }
.contact .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto 48px; }
.email-form { display: flex; flex-direction: column; gap: 16px; margin: 0 auto 24px; }
.input-group { position: relative; width: 100%; }
.input-group svg { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.4); }
.input-group:focus-within svg { color: var(--blue); }
.email-form input { width: 100%; padding: 20px 24px 20px 60px; border-radius: 16px; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); color: var(--white); font-size: 16px; }
.email-form input:focus { border-color: var(--blue); background: rgba(0,0,0,0.4); }
.email-form .btn { width: 100%; padding: 20px; font-size: 16px; border-radius: 16px; margin-top: 8px; }
.contact-note { font-size: 14px; color: rgba(255,255,255,0.3); }

/* ======================== FOOTER ======================== */
.site-footer { padding: 64px 0 40px; background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; text-align: center; }
.footer-top { margin-bottom: 8px; }
.footer-logo { font-family: var(--font-main); font-weight: 800; font-size: 36px; color: var(--white); display: inline-block; }
.footer-logo span { color: var(--blue); }
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 16px; }
.footer-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-divider { color: rgba(255,255,255,0.15); font-size: 14px; }
