/* ============================================
   JDLTC — Apple-Inspired Design System
   Clean · Confident · Conversion-Focused
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* — Design Tokens — */
:root {
  --navy: #0d1b3e;
  --navy-95: rgba(13, 27, 62, 0.95);
  --accent-red: #c41e3a;
  --accent-red-hover: #a01830;

  --white: #ffffff;
  --off-white: #fafafa;
  --gray-50: #f5f5f7;
  --gray-100: #e8e8ed;
  --gray-200: #d2d2d7;
  --gray-400: #86868b;
  --gray-600: #6e6e73;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-on-dark: #f5f5f7;

  --trust-green: #1b873f;
  --star-gold: #f5a623;

  --max-width: 980px;
  --border-radius: 18px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);

  --trust-blue: #0071e3;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* — Pulse animation for CTA — */
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
  }

  50% {
    box-shadow: 0 4px 24px rgba(196, 30, 58, 0.5);
  }
}

/* — Selection color — */
::selection {
  background: rgba(196, 30, 58, 0.15);
  color: var(--navy);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Noto Sans JP', -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* — Animations — */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* — Animation System (safe: elements visible by default, animated only when JS runs) — */

/* Scroll animation — JS adds .aos-init to enable, .visible to trigger */
.aos-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.aos-init.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grid children (applied by JS) */
.aos-init.visible[data-delay="1"] { transition-delay: 0.08s; }
.aos-init.visible[data-delay="2"] { transition-delay: 0.16s; }
.aos-init.visible[data-delay="3"] { transition-delay: 0.24s; }
.aos-init.visible[data-delay="4"] { transition-delay: 0.32s; }

/* Hero reveal — JS adds .loaded to .hero on DOMContentLoaded */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

/* Only hide hero elements AFTER JS confirms it will animate them */
.hero.will-animate .hero-line1,
.hero.will-animate .hero-line2,
.hero.will-animate .hero-subtitle,
.hero.will-animate .btn-hero,
.hero.will-animate .hero-countries { opacity: 0; }

.hero.loaded .hero-line1     { animation: heroReveal 0.7s var(--ease) 0.1s forwards; }
.hero.loaded .hero-line2     { animation: heroReveal 0.7s var(--ease) 0.3s forwards; }
.hero.loaded .hero-subtitle  { animation: heroReveal 0.6s var(--ease) 0.5s forwards; }
.hero.loaded .btn-hero       { animation: heroReveal 0.6s var(--ease) 0.7s forwards; }
.hero.loaded .hero-countries { animation: heroReveal 0.6s var(--ease) 0.9s forwards; }

/* Value/review card hover lift */
.value-card,
.review-card {
  transition: transform 0.35s var(--spring), box-shadow 0.35s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.10); }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.08); }

/* CTA shimmer */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.btn-hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out 2s infinite;
  pointer-events: none;
}

/* Launch badge glow */
@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 6px rgba(196,30,58,0.25); }
  50%      { box-shadow: 0 0 16px rgba(196,30,58,0.45); }
}
.launch-badge { animation: badgeGlow 2.5s ease-in-out infinite; }

/* FAQ spring */
.faq-answer { transition: max-height 0.45s var(--spring); }
.faq-item   { transition: background 0.3s var(--ease); }

/* Accessibility: disable all animations */
@media (prefers-reduced-motion: reduce) {
  .aos-init { opacity: 1; transform: none; transition: none; }
  .hero.will-animate .hero-line1,
  .hero.will-animate .hero-line2,
  .hero.will-animate .hero-subtitle,
  .hero.will-animate .btn-hero,
  .hero.will-animate .hero-countries { opacity: 1; }
  .hero.loaded .hero-line1,
  .hero.loaded .hero-line2,
  .hero.loaded .hero-subtitle,
  .hero.loaded .btn-hero,
  .hero.loaded .hero-countries { animation: none !important; opacity: 1; }
  .btn-hero::after { animation: none; }
  .launch-badge { animation: none; }
}

/* ============================================
   NAVIGATION — Premium glass morphism
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 52px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  gap: 0;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: auto;
}

.nav-logo .logo-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled .logo-icon {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3f6f 100%);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(26, 35, 75, 0.2);
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled .logo-name { color: var(--navy); }

.nav-logo .logo-full-name {
  font-size: 8.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled .logo-full-name { color: var(--text-secondary); }

/* ── Nav right items ── */
.nav-link-blog {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.nav-link-blog:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav.scrolled .nav-link-blog {
  color: var(--text-secondary);
}
.nav.scrolled .nav-link-blog:hover {
  color: var(--navy);
  background: var(--gray-50);
}

/* ── Language selector ── */
.nav-lang-wrap {
  position: relative;
  margin: 0 8px;
}

.nav-lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 5px 12px 5px 10px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.nav-lang-btn svg {
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}
.nav-lang-btn:hover svg { opacity: 1; }

.nav-lang-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

.nav.scrolled .nav-lang-btn {
  color: var(--text-secondary);
  background: transparent;
  border-color: var(--gray-200);
}
.nav.scrolled .nav-lang-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--gray-50);
}

/* Language dropdown */
.nav-lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  z-index: 1200;
  min-width: 160px;
  animation: dropdownIn 0.2s cubic-bezier(0.2, 0, 0, 1);
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-4px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.nav-lang-menu.open {
  display: block;
}

.nav-lang-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.15s var(--ease);
}

.nav-lang-link:hover {
  background: var(--gray-50);
}

.nav-lang-link.active {
  color: var(--accent-red);
  font-weight: 600;
  background: rgba(200, 52, 52, 0.04);
}

/* ── CTA Button ── */
.btn-nav-cta {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 980px;
  padding: 7px 18px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 980px;
  opacity: 0;
  background: linear-gradient(135deg, var(--accent-red) 0%, #d44848 100%);
  transition: opacity 0.3s var(--ease);
  z-index: -1;
}

.nav.scrolled .btn-nav-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3f6f 100%);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(26, 35, 75, 0.15);
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 52, 52, 0.3);
}
.btn-nav-cta:hover::before {
  opacity: 1;
}
.nav.scrolled .btn-nav-cta:hover {
  box-shadow: 0 4px 16px rgba(26, 35, 75, 0.25);
}

/* Nav right group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================
   HERO — Cinematic, single focus
   ============================================ */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Use background-color only — background-image is set inline in HTML */
  background-color: var(--off-white);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero .hero-line2 {
  color: var(--accent-red);
}

.hero-subtitle {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.btn-hero {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-red);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
  text-decoration: none;
}

.btn-hero:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 30, 58, 0.4);
}

.hero-countries {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  animation: fadeIn 1s var(--ease) 0.5s both;
}

.hero-country {
  font-size: 28px;
  transition: transform 0.3s var(--spring);
  cursor: default;
}

.hero-country:hover {
  transform: scale(1.3);
}

/* Clickable flag links */
.hero-country-link {
  display: inline-block;
  transition: transform 0.3s var(--spring);
  border-radius: 50%;
  overflow: hidden;
}

.hero-country-link:hover {
  transform: scale(1.25);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.hero-country-link img {
  display: block;
  border-radius: 50%;
}

/* Value icon img support */
.value-icon img {
  display: block;
  margin: 0 auto;
}

/* ============================================
   HERO SELECTOR — Country grid in first view
   ============================================ */
.hero-selector {
  margin-top: 36px;
  animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

.hero-selector-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.hero-country-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-country-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px 12px;
  min-width: 76px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s var(--spring);
}

.hero-country-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}

.hero-country-btn.selected {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

.hero-flag {
  font-size: 28px;
  line-height: 1;
  transition: transform 0.25s var(--spring);
}

.hero-country-btn:hover .hero-flag,
.hero-country-btn.selected .hero-flag {
  transform: scale(1.15);
}

.hero-cname {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.2;
}

.hero-country-btn.selected .hero-cname {
  color: #fff;
}

/* Price reveal panel */
.hero-price-reveal {
  max-width: 420px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.hero-price-reveal.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-price-inner {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 28px 28px 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-price-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3cd, #fff3e0);
  color: #856404;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 980px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.hero-price-for {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.hero-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}

.hero-price-original {
  font-size: 20px;
  font-weight: 500;
  color: var(--gray-400);
  text-decoration: line-through;
}

.hero-price-amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-price-sub {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.btn-hero-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
  background: var(--accent-red);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
  text-decoration: none;
}

.btn-hero-apply:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.45);
}

.hero-price-urgency {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-secondary);
}



/* ============================================
   HERO MOBILE FLAG GRID — Shown only on mobile in the hero
   ============================================ */
.hero-mobile-flags {
  display: none; /* hidden on desktop, shown via media query */
  margin-top: 32px;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

.hero-mobile-flags-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.hero-mobile-flag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 320px;
  margin: 0 auto;
}

.hero-mobile-flag-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.22s var(--spring);
}

.hero-mobile-flag-btn:hover,
.hero-mobile-flag-btn:active {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.55);
  transform: scale(1.06);
}

.hero-mobile-flag-btn .hmf-flag {
  font-size: 30px;
  line-height: 1;
}

.hero-mobile-flag-btn .hmf-name {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.2;
}

/* ============================================
   ESTIMATE PANEL — Fixed right side (desktop) / Bottom sheet (mobile)
   ============================================ */

/* ── Desktop: Fixed right-side panel ── */
.ep-panel {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(calc(100% - 42px));
  width: 340px;
  z-index: 900;
  transition: transform 0.4s var(--spring);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  filter: drop-shadow(-8px 0 32px rgba(0,0,0,0.18));
}

.ep-panel.open {
  transform: translateY(-50%) translateX(0);
}

/* Tab (the visible pull-tab on the left edge) */
.ep-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 42px;
  flex-shrink: 0;
  background: var(--navy);
  border: none;
  border-radius: 12px 0 0 12px;
  cursor: pointer;
  padding: 16px 0;
  font-family: inherit;
  transition: background 0.2s var(--ease), width 0.2s var(--ease);
}

.ep-tab:hover {
  background: var(--accent-red);
}

.ep-tab-icon {
  font-size: 18px;
  line-height: 1;
}

.ep-tab-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ep-tab-arrow {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: transform 0.3s var(--ease);
}

.ep-panel.open .ep-tab-arrow {
  transform: rotate(180deg);
}

/* Body */
.ep-body {
  background: var(--white);
  border-radius: 0 0 0 16px;
  width: 298px;
  padding: 20px 20px 24px;
  overflow-y: auto;
  max-height: 90vh;
}

.ep-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
}

.ep-icon { font-size: 20px; }

.ep-title {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.2px;
}

.ep-close {
  background: none;
  border: none;
  font-size: 16px;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.15s;
  font-family: inherit;
}

.ep-close:hover { background: var(--gray-50); }

/* Step dots */
.ep-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

.ep-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-400);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.ep-step-dot.active {
  background: var(--navy);
  color: var(--white);
}

.ep-step-dot.done {
  background: var(--trust-green);
  color: var(--white);
}

.ep-step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-100);
  transition: background 0.3s var(--ease);
}

/* Panes */
.ep-pane {
  display: none;
}

.ep-pane.active {
  display: block;
  animation: fadeInUp 0.3s var(--ease) both;
}

.ep-pane-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Flag grid */
.ep-flag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ep-flag-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 4px 10px;
  background: var(--gray-50);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s var(--spring);
}

.ep-flag-btn:hover {
  background: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.ep-flag-btn.selected {
  background: var(--white);
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.12);
  transform: translateY(-2px);
}

.ep-flag { font-size: 24px; line-height: 1; }

.ep-cname {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.2;
}

.ep-flag-btn.selected .ep-cname { color: var(--accent-red); }

/* Urgency list */
.ep-urgency-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ep-urgency-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 14px;
  background: var(--gray-50);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  width: 100%;
  transition: all 0.2s var(--spring);
}

.ep-urgency-btn:hover {
  background: var(--white);
  border-color: var(--navy);
}

.ep-urgency-btn.selected {
  background: var(--white);
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.12);
}

.ep-urgency-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.ep-urgency-sub {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Price card */
.ep-price-card {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2a5e 100%);
  border-radius: 14px;
  padding: 20px 18px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ep-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), #ff6b6b);
}

.ep-price-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 980px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.ep-price-for {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  line-height: 1.4;
}

.ep-price-original-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.ep-original-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

.ep-price-original {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}

.ep-price-main {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.ep-price-currency {
  font-size: 22px;
  font-weight: 700;
  vertical-align: top;
  line-height: 1.6;
}

.ep-price-num { font-size: 44px; }

.ep-price-mult {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.ep-price-note {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  margin-top: 4px;
}

.ep-cta {
  display: block;
  width: 100%;
  background: var(--accent-red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 16px rgba(196,30,58,0.4);
}

.ep-cta:hover {
  background: #e01a35;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,30,58,0.55);
}

.ep-urgency-note {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  line-height: 1.4;
}

/* Back button */
.ep-back {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 10px 0 0;
  font-family: inherit;
  transition: color 0.15s;
  display: block;
}

.ep-back:hover { color: var(--text-primary); }

/* ── Mobile: Bottom sheet ── */
@media (max-width: 1023px) {
  .ep-panel {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    transform: translateY(calc(100% - 52px));
    flex-direction: column;
    border-radius: 20px 20px 0 0;
    filter: drop-shadow(0 -8px 32px rgba(0,0,0,0.18));
  }

  .ep-panel.open {
    transform: translateY(0);
  }

  /* Tab becomes a horizontal handle at the top */
  .ep-tab {
    flex-direction: row;
    width: 100%;
    height: 52px;
    border-radius: 20px 20px 0 0;
    padding: 0 20px;
    gap: 10px;
  }

  .ep-tab-text {
    writing-mode: horizontal-tb;
    font-size: 13px;
    letter-spacing: 0.3px;
  }

  .ep-tab-arrow {
    margin-left: auto;
    transform: rotate(-90deg);
  }

  .ep-panel.open .ep-tab-arrow {
    transform: rotate(90deg);
  }

  .ep-body {
    width: 100%;
    border-radius: 0;
    max-height: 70vh;
    padding: 16px 20px 32px;
  }

  .ep-flag-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .ep-flag-btn { padding: 14px 4px 12px; }
  .ep-flag { font-size: 28px; }

  /* Show hero mobile flags */
  .hero-mobile-flags { display: block; }
}

/* ============================================
   VALUE SECTION — Why JDLTC
   ============================================ */
.value-section {
  padding: 120px 0;
  background: var(--white);
}

.value-header,
.steps-header,
.pricing-header,
.reviews-header,
.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-eyebrow.light {
  color: rgba(255, 255, 255, 0.5);
}

.section-headline {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.section-headline.light {
  color: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--gray-50);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   STEPS SECTION
   ============================================ */
.steps-section {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.steps-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 30, 58, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
}

.step-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.step-divider {
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  margin-top: 20px;
}

/* ============================================
   PRICING — Single clear card
   ============================================ */
.pricing-section {
  padding: 120px 0;
  background: var(--off-white);
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--accent-red));
}

/* Launch badge */
.launch-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3cd, #fff3e0);
  color: #856404;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 980px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* Original (crossed out) price */
.pricing-original {
  font-size: 28px;
  font-weight: 600;
  color: var(--gray-400);
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-original .currency {
  font-size: 16px;
  vertical-align: super;
}

/* Launch note */
.pricing-launch-note {
  font-size: 13px;
  color: var(--accent-red);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 4px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}


.pricing-amount {
  font-size: 64px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-amount .currency {
  font-size: 32px;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
  color: var(--text-secondary);
}

.pricing-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-50);
}

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

.pf-check {
  color: var(--trust-green);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.btn-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
  background: var(--accent-red);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.25);
}

.btn-pricing:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.35);
}

/* ============================================
   REVIEWS — Clean cards
   ============================================ */
.reviews-section {
  padding: 120px 0;
  background: var(--white);
}

.reviews-stars {
  font-size: 18px;
  color: var(--star-gold);
  margin-top: 12px;
}

.reviews-stars span {
  font-size: 14px;
  color: var(--text-secondary);
  margin-left: 8px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--gray-50);
  border-radius: var(--border-radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
  min-height: 200px;
}

.review-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-card p {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.review-author strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: block;
}

.review-author span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================
   FAQ — Accordion
   ============================================ */
.faq-section {
  padding: 120px 0;
  background: var(--off-white);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: all 0.2s var(--ease);
}

.faq-question:hover {
  color: var(--accent-red);
}

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-secondary);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 120px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}

.btn-final {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-red);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

.btn-final:hover {
  background: white;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 32px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray-400);
}

/* Language switcher in footer */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s var(--ease);
}

.lang-switch:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.lang-menu {
  display: none;
  position: fixed;
  bottom: 120px;
  right: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  z-index: 1100;
  animation: scaleIn 0.2s var(--ease);
}

.lang-menu.open {
  display: block;
}

.lang-menu button {
  display: block;
  width: 100%;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.15s var(--ease);
}

.lang-menu button:hover {
  background: var(--gray-50);
}

.lang-menu button.active {
  color: var(--accent-red);
  font-weight: 600;
}

/* ============================================
   ESTIMATE BLOCK — Interactive nationality pricing
   ============================================ */
.estimate-section {
  padding: 120px 0;
  background: var(--off-white);
}

.estimate-header {
  text-align: center;
  margin-bottom: 56px;
}

/* Country selector grid */
.estimate-country-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 680px;
  margin: 0 auto 48px;
}

.estimate-country-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 8px 16px;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 16px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s var(--spring);
  position: relative;
}

.estimate-country-btn:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.estimate-country-btn.selected {
  border-color: var(--accent-red);
  background: linear-gradient(135deg, rgba(196,30,58,0.04), rgba(13,27,62,0.04));
  box-shadow: 0 0 0 4px rgba(196,30,58,0.12), var(--shadow-md);
  transform: translateY(-4px);
}

.estimate-country-flag {
  font-size: 32px;
  line-height: 1;
  transition: transform 0.25s var(--spring);
}

.estimate-country-btn:hover .estimate-country-flag,
.estimate-country-btn.selected .estimate-country-flag {
  transform: scale(1.15);
}

.estimate-country-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.2;
}

.estimate-country-btn.selected .estimate-country-name {
  color: var(--accent-red);
}

/* Pricing reveal area */
.estimate-result {
  max-width: 480px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.estimate-result.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.estimate-result-inner {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 36px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.estimate-result-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--accent-red));
}

.estimate-for-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.estimate-for-country {
  color: var(--navy);
}

.estimate-launch-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3cd, #fff3e0);
  color: #856404;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 980px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.estimate-price-original {
  font-size: 22px;
  font-weight: 500;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.estimate-price-amount {
  font-size: 60px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.estimate-price-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.estimate-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  margin-bottom: 28px;
  padding: 0 4px;
}

.estimate-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.estimate-feature .pf-check {
  color: var(--trust-green);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.btn-estimate-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
  background: var(--accent-red);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.25);
  text-decoration: none;
}

.btn-estimate-apply:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
}

.estimate-urgency-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.estimate-urgency-note a {
  color: var(--trust-blue);
  text-decoration: underline;
}

/* Prompt (before selection) */
.estimate-prompt {
  text-align: center;
  padding: 32px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  opacity: 1;
  transition: opacity 0.3s var(--ease);
}

.estimate-prompt.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 16px; }
  .logo-full-name { display: none; }
  .hero h1 { font-size: clamp(36px, 6vw, 60px); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .nav-link-blog { display: none; }
  .nav-inner { height: 44px; }
  .btn-nav-cta { font-size: 11px; padding: 6px 12px; }
  .nav-lang-btn { font-size: 12px; padding: 5px 8px; }
  .nav-lang-btn svg { width: 12px; height: 12px; }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }

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

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

  .steps-row {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .step-divider {
    width: 40px;
    height: 1px;
    margin-top: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .pricing-card {
    padding: 36px 28px;
  }

  .pricing-amount {
    font-size: 48px;
  }

  /* EstimateBlock mobile */
  .estimate-country-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .estimate-price-amount {
    font-size: 48px;
  }

  .estimate-result-inner {
    padding: 32px 24px 28px;
  }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
  gap: 8px;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-whatsapp-text {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
  }
  .floating-whatsapp svg {
    width: 20px;
    height: 20px;
  }
  .floating-whatsapp-text {
    font-size: 13px;
  }
}