/* ============================================================
   Apostille Anywhere — site styles
   TO CHANGE YOUR BRAND COLORS: edit the four color values below.
   ============================================================ */
:root {
  --navy: #1d3460;        /* main dark color — matched to the logo */
  --navy-deep: #13234a;   /* darker shade for the hero */
  --gold: #ba9048;        /* accent color — matched to the logo */
  --green: #25d366;       /* WhatsApp green — leave as is */
  --ink: #22303f;         /* body text */
  --paper: #ffffff;
  --mist: #f4f6f9;        /* light section background */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
}

section { padding: 64px 0; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--paper);
  border-bottom: 1px solid #e3e8ee;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 42px; width: auto; mix-blend-mode: multiply; }
.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: 0.2px;
}

.topnav { display: flex; align-items: center; gap: 22px; }
.topnav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.topnav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 8px 16px;
  border-radius: 8px;
}
.nav-cta:hover { filter: brightness(1.08); }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 70%);
  color: #eef3f9;
  text-align: center;
  padding: 84px 0 72px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(1.9rem, 5.5vw, 3.1rem);
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 20px;
}

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

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto 26px;
  color: #cdd9e6;
}

.hero-price {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-price span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #cdd9e6;
}

.hero-trust {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #9fb2c5;
}

/* ============ BUTTONS ============ */
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.1s ease, filter 0.15s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.07); }

.btn-whatsapp { background: var(--green); color: #fff; }
.btn-email { background: var(--paper); color: var(--navy); border: 2px solid var(--navy); }
.hero .btn-email { background: transparent; color: #fff; border-color: #fff; }
.btn-wide { width: 100%; }

/* ============ DC ADVANTAGE ============ */
.advantage { background: var(--mist); }

.section-lede {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

.compare-card {
  background: var(--paper);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #e3e8ee;
}

.compare-card h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.05rem; }

.compare-time {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.compare-them .compare-time { color: #b0563a; }
.compare-us .compare-time { color: #1d7a3f; }

.compare-us {
  border: 2px solid var(--gold);
  box-shadow: 0 6px 24px rgba(15, 42, 74, 0.10);
}

.compare-card ul { list-style: none; }
.compare-card li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.97rem;
}
.compare-them li::before { content: "✕"; position: absolute; left: 0; color: #b0563a; font-weight: 700; }
.compare-us li::before { content: "✓"; position: absolute; left: 0; color: #1d7a3f; font-weight: 700; }

.advantage-note {
  text-align: center;
  margin-top: 28px;
  font-weight: 600;
  color: var(--navy);
}

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 36px;
}

.step { text-align: center; padding: 0 8px; }

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 10px; }
.step p { font-size: 0.96rem; }

/* ============ PRICING ============ */
.pricing { background: var(--mist); }

.price-card {
  background: var(--paper);
  max-width: 460px;
  margin: 32px auto 0;
  border-radius: 16px;
  border: 2px solid var(--gold);
  padding: 38px 34px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(15, 42, 74, 0.12);
}

.price-amount {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.price-label { color: #5b6b7c; margin-bottom: 22px; }

.price-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 26px;
}
.price-includes li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid #eef1f5;
  font-size: 0.97rem;
}
.price-includes li:last-child { border-bottom: none; }
.price-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1d7a3f;
  font-weight: 700;
}

.price-fineprint { margin-top: 14px; font-size: 0.85rem; color: #7a8898; }

/* ============ WHO NEEDS THIS ============ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 32px auto 0;
}

.who-item {
  background: var(--mist);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.96rem;
}

/* ============ FAQ ============ */
.faq { background: var(--mist); }

.faq details {
  background: var(--paper);
  border-radius: 10px;
  border: 1px solid #e3e8ee;
  margin: 0 auto 12px;
  max-width: 760px;
  padding: 0;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  padding: 18px 22px;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--gold);
}
.faq details[open] summary::after { content: "–"; }

.faq details p { padding: 0 22px 18px; font-size: 0.97rem; }

/* ============ CONTACT ============ */
.contact {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 70%);
  color: #eef3f9;
  text-align: center;
}
.contact h2 { color: #fff; }
.contact p { margin-bottom: 26px; color: #cdd9e6; }
.contact .btn-email { background: transparent; color: #fff; border-color: #fff; }
.contact-phone { margin-top: 22px; font-size: 1.05rem; color: #cdd9e6; }
.contact-phone a { color: var(--gold); font-weight: 700; text-decoration: none; }
.contact-phone a:hover { text-decoration: underline; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: #9fb2c5;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}
.footer-brand { font-weight: 700; color: #fff; font-size: 1rem; }
.footer-link { color: #cdd9e6; text-decoration: none; }
.footer-link:hover { color: #fff; text-decoration: underline; }
.footer-fine { margin-top: 6px; font-size: 0.8rem; }

/* ============ PHONE SCREENS ============ */
@media (max-width: 760px) {
  section { padding: 48px 0; }
  .topnav { display: none; }            /* keep the top bar clean on phones */
  .compare { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .cta-row { flex-direction: column; align-items: stretch; max-width: 340px; margin: 0 auto; }
}
