/* ============================================
   USA DentBoard Pro — Main Stylesheet
   ============================================ */

:root {
  --navy: #0d1b3e;
  --navy-light: #1a2f5e;
  --blue: #1e4fc2;
  --blue-light: #3b6de8;
  --gold: #c8972a;
  --gold-light: #e8b84b;
  --red: #c0392b;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f3f8;
  --gray-200: #e2e6f0;
  --gray-400: #9aa3b8;
  --gray-600: #5a6480;
  --gray-800: #2d3452;
  --text: #1a1f36;
  --text-muted: #5a6480;
  --success: #16a34a;
  --shadow-sm: 0 1px 3px rgba(13,27,62,0.08);
  --shadow-md: 0 4px 16px rgba(13,27,62,0.12);
  --shadow-lg: 0 12px 40px rgba(13,27,62,0.18);
  --shadow-xl: 0 24px 64px rgba(13,27,62,0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { color: var(--text-muted); line-height: 1.75; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-light); }

/* ---- LAYOUT ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-title { text-align: center; margin-bottom: 16px; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto 56px; }
.badge { display: inline-block; background: rgba(30,79,194,0.1); color: var(--blue); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 24px;
  height: 84px;
  display: flex; align-items: center;
}
.navbar-inner { max-width: 1160px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { display: flex; align-items: center; gap: 14px; }
.navbar-logo img { height: 68px; width: 68px; border-radius: 14px; object-fit: cover; box-shadow: 0 4px 16px rgba(0,0,0,0.4), 0 0 0 2px rgba(200,151,42,0.5); transition: transform 0.2s, box-shadow 0.2s; }
.navbar-logo img:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 0 3px rgba(200,151,42,0.8); }
.navbar-logo span { color: var(--white); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em; }
.navbar-logo span em { color: var(--gold-light); font-style: normal; }
.navbar-links { display: flex; align-items: center; gap: 32px; }
.navbar-links a { color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.navbar-links a:hover { color: var(--white); }
.navbar-cta { background: var(--gold); color: var(--navy) !important; font-weight: 700 !important; padding: 10px 22px; border-radius: 8px; transition: background 0.2s, transform 0.15s !important; }

/* ---- LANGUAGE SWITCHER ---- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 4px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.lang-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.navbar-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.navbar-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.navbar-toggle span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0f2d6b 100%);
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }

/* Hero logo spotlight */
.hero-logo-spotlight {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,151,42,0.3);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.hero-logo-spotlight img {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 3px rgba(200,151,42,0.6);
}
.hero-logo-text .logo-name {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero-logo-text .logo-name em {
  color: var(--gold-light);
  font-style: normal;
}
.hero-logo-text .logo-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,151,42,0.2); border: 1px solid rgba(200,151,42,0.4); color: var(--gold-light); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 24px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold-light); }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin-bottom: 36px; max-width: 520px; }
.hero-flags { display: flex; align-items: center; gap: 10px; margin-bottom: 36px; }
.hero-flags span { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-right: 4px; }
.flag-circle { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,0.3); font-size: 20px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,42,0.4); color: var(--navy); }
.btn-secondary { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-secondary:hover { background: rgba(255,255,255,0.18); color: var(--white); transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,79,194,0.4); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-phone-mockup {
  position: relative;
  width: 280px;
  background: var(--navy);
  border-radius: 40px;
  border: 8px solid rgba(255,255,255,0.15);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  padding: 20px 16px;
}
.phone-screen { background: #0f1d3d; border-radius: 28px; padding: 20px 16px; }
.phone-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.phone-logo { width: 36px; height: 36px; border-radius: 8px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.phone-title { color: white; font-weight: 700; font-size: 0.9rem; }
.phone-subtitle { color: rgba(255,255,255,0.5); font-size: 0.7rem; }
.phone-card { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 14px; margin-bottom: 10px; border: 1px solid rgba(255,255,255,0.08); }
.phone-card-label { color: rgba(255,255,255,0.5); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.phone-card-value { color: white; font-size: 1.4rem; font-weight: 800; }
.phone-card-sub { color: rgba(255,255,255,0.4); font-size: 0.65rem; margin-top: 2px; }
.phone-progress { background: rgba(255,255,255,0.08); border-radius: 6px; height: 6px; margin-top: 8px; overflow: hidden; }
.phone-progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 6px; }
.phone-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.phone-cat { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 10px; border: 1px solid rgba(255,255,255,0.06); }
.phone-cat-icon { font-size: 16px; margin-bottom: 4px; }
.phone-cat-name { color: rgba(255,255,255,0.7); font-size: 0.62rem; font-weight: 600; }
.phone-cat-count { color: var(--gold-light); font-size: 0.7rem; font-weight: 700; }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--gray-100); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 28px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--gray-600); font-size: 0.9rem; font-weight: 600; }
.trust-item .icon { font-size: 1.4rem; }

/* ---- FEATURES ---- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--gold)); opacity: 0; transition: opacity 0.25s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(30,79,194,0.1), rgba(200,151,42,0.1)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; line-height: 1.65; }

/* ---- HOW IT WORKS ---- */
.how-bg { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.how-bg .section-title, .how-bg .section-subtitle { color: white; }
.how-bg .section-subtitle { color: rgba(255,255,255,0.65); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { text-align: center; padding: 32px 20px; }
.step-number { width: 56px; height: 56px; background: var(--gold); color: var(--navy); font-weight: 900; font-size: 1.3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-card h3 { color: white; font-size: 1rem; margin-bottom: 10px; }
.step-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* ---- COUNTRIES ---- */
.countries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.country-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; transition: all 0.25s; }
.country-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.country-flag { font-size: 3rem; margin-bottom: 12px; }
.country-card h3 { font-size: 1rem; margin-bottom: 6px; }
.country-card p { font-size: 0.82rem; color: var(--text-muted); }
.country-rank { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.7rem; font-weight: 800; padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; }

/* ---- TESTIMONIALS ---- */
.testimonials-bg { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--navy)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

/* ---- PRICING ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.pricing-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-xl); padding: 40px 32px; position: relative; transition: all 0.25s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.pricing-card.featured { border-color: var(--blue); background: var(--navy); transform: scale(1.04); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; padding: 6px 18px; border-radius: 100px; white-space: nowrap; }
.pricing-plan { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 12px; }
.pricing-card.featured .pricing-plan { color: rgba(255,255,255,0.6); }
.pricing-price { margin-bottom: 8px; }
.pricing-price strong { font-size: 3rem; font-weight: 900; color: var(--navy); }
.pricing-card.featured .pricing-price strong { color: var(--white); }
.pricing-price span { font-size: 1rem; color: var(--text-muted); }
.pricing-card.featured .pricing-price span { color: rgba(255,255,255,0.6); }
.pricing-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; min-height: 40px; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); }
.pricing-divider { border: none; border-top: 1px solid var(--gray-200); margin: 0 0 24px; }
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.15); }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.pricing-features li.disabled { opacity: 0.4; }
.pricing-features li.disabled::before { content: '✗'; color: var(--gray-400); }
.pricing-savings { display: inline-block; background: rgba(22,163,74,0.12); color: var(--success); font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--navy); gap: 16px; }
.faq-question:hover { color: var(--blue); }
.faq-icon { font-size: 1.4rem; color: var(--blue); flex-shrink: 0; transition: transform 0.25s; font-weight: 300; }
.faq-answer { display: none; padding: 0 0 22px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ---- CTA SECTION ---- */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, #0f2d6b 100%); padding: 96px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto 40px; }
.cta-stores { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.store-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; padding: 14px 24px; border-radius: 12px; font-weight: 600; transition: all 0.2s; text-decoration: none; }
.store-badge:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); color: white; }
.store-badge .store-icon { font-size: 1.8rem; }
.store-badge-text small { display: block; font-size: 0.7rem; opacity: 0.7; font-weight: 400; }
.store-badge-text strong { font-size: 1rem; }

/* ---- FOOTER ---- */
footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 52px; width: 52px; border-radius: 12px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.82rem; }
.footer-flags { display: flex; gap: 8px; }

/* ---- LEGAL PAGES ---- */
.legal-hero { background: var(--navy); padding: 120px 0 64px; text-align: center; }
.legal-hero h1 { color: white; margin-bottom: 12px; }
.legal-hero p { color: rgba(255,255,255,0.6); }
.legal-content { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.legal-content h2 { font-size: 1.3rem; margin: 40px 0 14px; color: var(--navy); }
.legal-content h3 { font-size: 1.05rem; margin: 28px 0 10px; color: var(--navy); }
.legal-content p { margin-bottom: 16px; font-size: 0.95rem; }
.legal-content ul { margin: 12px 0 20px 24px; }
.legal-content ul li { margin-bottom: 8px; font-size: 0.95rem; color: var(--text-muted); }
.legal-content a { color: var(--blue); }

/* ---- SUPPORT PAGE ---- */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.support-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: all 0.25s; }
.support-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.support-card .icon { font-size: 2.4rem; margin-bottom: 16px; }
.support-card h3 { margin-bottom: 10px; }
.support-card p { font-size: 0.9rem; margin-bottom: 20px; }
.faq-search { max-width: 520px; margin: 0 auto 48px; position: relative; }
.faq-search input { width: 100%; padding: 16px 24px 16px 52px; border: 2px solid var(--gray-200); border-radius: 12px; font-size: 1rem; outline: none; transition: border-color 0.2s; }
.faq-search input:focus { border-color: var(--blue); }
.faq-search .search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); font-size: 1.2rem; color: var(--gray-400); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-flags { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .navbar-links { display: none; }
  .navbar-toggle { display: block; }
  .navbar-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.featured { transform: scale(1); }
  .support-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 24px; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.4rem; }
}
