
/* ─── Tokens ─── */
:root {
  --ink:       #0a1f14;
  --forest:    #1a3d2c;
  --moss:      #2a6347;
  --sage:      #4a9068;
  --mist:      #d4eede;
  --cream:     #faf8f3;
  --parchment: #f2ede3;
  --gold:      #b8922a;
  --gold-lt:   #d4a843;
  --gold-pale: #f5edcc;
  --red:       #ce2b37;
  --white:     #ffffff;
  --mid:       #3d5a47;
  --muted:     #7a9485;

  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 40px;

  --shadow: 0 4px 32px rgba(10,31,20,0.14);
  --shadow-lg: 0 12px 64px rgba(10,31,20,0.18);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f-body); background: var(--cream); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; }
a { color: inherit; }

/* ─── Type ─── */
.f-display { font-family: var(--f-display); }
h1 { font-family: var(--f-display); font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.1; font-weight: 700; }
h2 { font-family: var(--f-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.2; font-weight: 600; }
h3 { font-family: var(--f-display); font-size: 1.25rem; font-weight: 600; line-height: 1.3; }

/* ─── Layout ─── */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 680px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,243,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mist);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-name { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.logo-name em { font-style: normal; color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-tel { font-size: 0.82rem; color: var(--muted); text-decoration: none; }
.nav-cta-sm {
  background: var(--forest); color: var(--cream);
  font-family: var(--f-body); font-size: 0.85rem; font-weight: 600;
  padding: 9px 20px; border-radius: var(--r-sm);
  text-decoration: none; white-space: nowrap;
  transition: background 0.15s;
}
.nav-cta-sm:hover { background: var(--moss); }

/* ─── HERO ─── */
.hero {
  background: var(--forest);
  position: relative; overflow: hidden;
  padding: 80px 24px 72px;
}
/* Italian flag stripe */
.hero::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(to bottom, var(--moss) 33.3%, #fff 33.3%, #fff 66.6%, var(--red) 66.6%);
  opacity: 0.7;
}
/* Radial glow */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(42,99,71,0.5) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 20%, rgba(184,146,42,0.1) 0%, transparent 50%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--gold-lt); }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 span { color: var(--gold-lt); }
.hero-sub { font-size: 1.05rem; color: var(--mist); margin-bottom: 36px; line-height: 1.75; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Primary CTA button */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--white);
  font-family: var(--f-body); font-size: 1rem; font-weight: 700;
  padding: 16px 32px; border-radius: var(--r-md);
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-primary .arrow { font-size: 1.1rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--mist);
  font-family: var(--f-body); font-size: 0.9rem; font-weight: 500;
  padding: 15px 24px; border-radius: var(--r-md);
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--mist); color: var(--white); }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}
.hero-card-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 18px;
}
.city-list { list-style: none; }
.city-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 12px;
}
.city-item:last-child { border-bottom: none; }
.city-rank { font-size: 0.68rem; font-weight: 700; color: var(--gold); background: rgba(184,146,42,0.15); padding: 2px 8px; border-radius: 20px; flex-shrink: 0; }
.city-name { font-size: 0.92rem; font-weight: 600; color: var(--white); flex: 1; }
.city-wait { font-size: 0.78rem; color: var(--mist); flex-shrink: 0; }
.city-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; box-shadow: 0 0 6px rgba(74,222,128,0.6); }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--ink); padding: 18px 24px; }
.trust-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #a8d5bb; font-weight: 500; }
.trust-icon { color: var(--gold-lt); font-size: 1rem; flex-shrink: 0; }

/* ─── PROBLEM SECTION ─── */
.problem { padding: 80px 24px; background: var(--parchment); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 48px; }
.problem-card {
  background: var(--white); border-radius: var(--r-md);
  border: 1px solid var(--mist);
  padding: 28px 24px;
}
.problem-icon { font-size: 1.6rem; margin-bottom: 14px; }
.problem-card h3 { color: var(--ink); margin-bottom: 10px; font-size: 1rem; }
.problem-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }

/* ─── SOLUTION SECTION ─── */
.solution { padding: 96px 24px; }
.solution-inner { display: grid; grid-template-columns: 1fr 440px; gap: 72px; align-items: start; }
.solution-steps { margin-top: 40px; }
.sol-step { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
.sol-step:not(:last-child)::after {
  content: ''; position: absolute; left: 19px; top: 44px; bottom: 0; width: 1.5px;
  background: linear-gradient(to bottom, var(--mist), transparent);
}
.sol-num {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%; background: var(--forest); color: var(--gold-lt);
  font-family: var(--f-display); font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.sol-body h3 { color: var(--ink); margin-bottom: 6px; font-size: 1rem; }
.sol-body p { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }

/* Pricing card */
.price-card {
  background: var(--forest);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: sticky; top: 84px;
  box-shadow: var(--shadow-lg);
}
.price-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 8px; }
.price-title { font-family: var(--f-display); font-size: 1.4rem; color: var(--white); margin-bottom: 20px; }
.price-amount { font-family: var(--f-display); font-size: 3.2rem; font-weight: 700; color: var(--gold-lt); line-height: 1; margin-bottom: 4px; }
.price-note { font-size: 0.82rem; color: #a8d5bb; margin-bottom: 28px; }
.price-includes { list-style: none; margin-bottom: 28px; }
.price-includes li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.88rem; color: #d4eede;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.5;
}
.price-includes li:last-child { border-bottom: none; }
.check { color: #4ade80; flex-shrink: 0; margin-top: 1px; font-size: 0.9rem; }
.price-cta {
  display: block; width: 100%; text-align: center;
  background: var(--gold); color: var(--white);
  font-family: var(--f-body); font-size: 1rem; font-weight: 700;
  padding: 15px; border-radius: var(--r-md);
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s;
}
.price-cta:hover { background: var(--gold-lt); }
.price-sub { font-size: 0.78rem; color: #a8d5bb; text-align: center; margin-top: 12px; line-height: 1.5; }

/* ─── CONSULATES ─── */
.consulates { padding: 80px 24px; background: var(--parchment); }
.consulate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.consulate-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--r-md); padding: 20px 18px;
  position: relative; overflow: hidden;
}
.consulate-card.featured { border-color: var(--gold); background: var(--gold-pale); }
.consulate-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.65rem; font-weight: 700; background: var(--gold); color: var(--white);
  padding: 2px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.08em;
}
.consulate-rank { font-size: 0.68rem; font-weight: 700; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.1em; }
.consulate-city { font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.consulate-state { font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.consulate-wait { font-size: 0.78rem; font-weight: 600; color: var(--moss); background: #e8f5ee; padding: 3px 10px; border-radius: 20px; display: inline-block; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 96px 24px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.t-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--r-md); padding: 28px 24px;
}
.t-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 14px; }
.t-text { font-size: 0.9rem; color: var(--mid); font-style: italic; line-height: 1.75; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--mist); color: var(--forest);
  font-size: 0.78rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.t-name { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.t-detail { font-size: 0.78rem; color: var(--muted); }

/* ─── FAQ ─── */
.faq-section { padding: 80px 24px; background: var(--parchment); }
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--mist); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; gap: 16px;
  font-size: 0.97rem; font-weight: 600; color: var(--ink);
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--f-body);
}
.faq-q:hover { color: var(--moss); }
.faq-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 20px; font-size: 0.9rem; color: var(--mid); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--ink);
  padding: 96px 24px;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(42,99,71,0.4) 0%, transparent 70%);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p { color: #a8d5bb; font-size: 1.05rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.final-cta .btn-primary { font-size: 1.05rem; padding: 18px 40px; }

/* ─── FOOTER ─── */
.lp-footer {
  background: var(--forest);
  padding: 24px;
  text-align: center;
  font-size: 0.8rem; color: #a8d5bb;
}
.lp-footer a { color: #a8d5bb; text-decoration: none; }
.lp-footer a:hover { color: var(--white); }
.lp-footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }

/* ─── SECTION HEADERS ─── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-pale);
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 16px;
}
.section-h { color: var(--ink); margin-bottom: 12px; }
.section-sub { font-size: 1rem; color: var(--mid); max-width: 540px; line-height: 1.7; }
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }

/* ─── MOBILE ─── */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; height: 2px; width: 24px; background: var(--ink); border-radius: 2px; transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-drawer { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--mist); padding: 12px 16px 20px; z-index: 99; box-shadow: var(--shadow); }
.mobile-drawer.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer a { padding: 11px 14px; font-size: 0.95rem; color: var(--mid); text-decoration: none; border-radius: var(--r-sm); }
.mobile-drawer a:hover { background: var(--parchment); }
.mobile-drawer .btn-primary { text-align: center; margin-top: 8px; justify-content: center; }

@media (max-width: 900px) {
  .nav-right { gap: 8px; }
  .nav-tel { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .solution-inner { grid-template-columns: 1fr; }
  .price-card { position: static; }
  .t-grid { grid-template-columns: 1fr; }
  .consulate-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .wrap, .wrap-sm { padding: 0 16px; }
  .hero { padding: 56px 16px 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; text-align: center; justify-content: center; }
  .trust-inner { gap: 16px; flex-direction: column; align-items: flex-start; }
  .consulate-grid { grid-template-columns: 1fr 1fr; }
  .hamburger { display: flex; }
  .nav-cta-sm { display: none; }
  .final-cta .btn-primary { width: 100%; justify-content: center; }
}
