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

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

:root {
  --dark:    #1a1a1a;
  --dark2:   #2c2c2c;
  --mid:     #555;
  --muted:   #888;
  --light:   #f5f5f3;
  --white:   #ffffff;
  --accent:  #1a5fa8;
  --accent2: #c84a09;
  --border:  #e0e0dd;
  --head: 'Montserrat', sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --max: 1180px;
  --r: 3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}

.site-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 6px 14px;
  font-family: var(--head);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--dark2);
  letter-spacing: .02em;
  border-radius: var(--r);
  transition: background .15s, color .15s;
}

.site-nav a:hover { background: var(--light); color: var(--dark); }
.site-nav a.active { color: var(--accent); }

.nav-cta a {
  background: var(--dark);
  color: var(--white) !important;
  padding: 7px 18px;
}
.nav-cta a:hover { background: var(--accent) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .25s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--head);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 96px 24px 88px;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.hero-tag {
  display: inline-block;
  font-family: var(--head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--head);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  max-width: 820px;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: rgba(255,255,255,.45); }
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,.7);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r);
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTION ── */
section { padding: 72px 24px; }
section.alt { background: var(--light); }
section.dark { background: var(--dark); color: var(--white); }

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-family: var(--head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
section.dark .section-label { color: rgba(255,255,255,.45); }

.section-title {
  font-family: var(--head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-sub {
  font-size: 16px;
  color: var(--mid);
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.65;
}
section.dark .section-sub { color: rgba(255,255,255,.6); }

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s, border-color .2s;
}
.card:hover { border-color: #c0c0bb; box-shadow: 0 4px 16px rgba(0,0,0,.07); }
section.alt .card { background: var(--white); }

.card-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--light);
  border-radius: var(--r);
  margin-bottom: 4px;
  color: var(--accent);
  flex-shrink: 0;
}
.card-icon svg { width: 20px; height: 20px; stroke-width: 1.8; }

.card h3 {
  font-family: var(--head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--dark);
}

.card p, .card-body {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

.card ul {
  list-style: none;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card ul li {
  font-size: 13px;
  color: var(--mid);
  padding-left: 16px;
  position: relative;
}
.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px; height: 1px;
  background: var(--muted);
}

/* Direction cards on index */
.dir-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, border-color .2s;
  text-decoration: none;
  color: inherit;
}
.dir-card:hover { border-color: #b0b0a8; box-shadow: 0 6px 24px rgba(0,0,0,.09); }

.dir-card-accent {
  height: 4px;
  background: var(--dark);
}
.dir-card-accent.blue { background: var(--accent); }
.dir-card-accent.orange { background: var(--accent2); }
.dir-card-accent.green { background: #1a8a5a; }

.dir-card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dir-num {
  font-family: var(--head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.dir-card h3 {
  font-family: var(--head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--dark);
  text-wrap: balance;
}

.dir-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
}

.dir-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--head);
  letter-spacing: .03em;
  color: var(--mid);
  background: var(--light);
  border-radius: 2px;
  padding: 3px 8px;
}

.dir-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--head);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  padding: 14px 28px;
  border-top: 1px solid var(--border);
  text-decoration: none;
  letter-spacing: .02em;
  transition: background .15s, color .15s;
}
.dir-link svg { width: 14px; height: 14px; transition: transform .2s; }
.dir-card:hover .dir-link { background: var(--light); }
.dir-card:hover .dir-link svg { transform: translateX(4px); }

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.step {
  padding: 28px 24px 28px 0;
  position: relative;
}
.step + .step {
  padding-left: 24px;
  border-left: 1px solid var(--border);
}
section.dark .step + .step { border-left-color: rgba(255,255,255,.12); }
.step-num {
  font-family: var(--head);
  font-size: 36px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.03em;
}
section.dark .step-num { color: rgba(255,255,255,.1); }
.step h4 {
  font-family: var(--head);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
section.dark .step h4 { color: var(--white); }
.step p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
}
section.dark .step p { color: rgba(255,255,255,.55); }

/* ── TWO-COL TEXT ── */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col-text p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
}

/* ── LIST BLOCK ── */
.list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.list-block li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--mid);
}
.list-block li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--dark);
  color: var(--white);
  padding: 72px 24px;
}
.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 {
  font-family: var(--head);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  max-width: 540px;
  line-height: 1.6;
}
.cta-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  padding: 14px 28px;
  font-family: var(--head);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--r);
  transition: background .15s;
  letter-spacing: -.01em;
}
.email-link:hover { background: #f0f0ee; }
.email-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.region-note {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  font-weight: 500;
  font-family: var(--head);
  letter-spacing: .03em;
}

/* ── FOOTER ── */
footer {
  background: #111;
  color: rgba(255,255,255,.5);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.footer-logo img { height: 36px; display: block; opacity: .75; }
.footer-col h5 {
  font-family: var(--head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 12px;
}
.footer-col p, .footer-col a {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  text-decoration: none;
}
.footer-col a:hover { color: rgba(255,255,255,.8); }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  padding: 2px 0;
}
.footer-nav a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.25);
  font-family: var(--head);
  font-weight: 500;
  letter-spacing: .02em;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: #0f0f0f;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
.cookie-banner p { max-width: 700px; }
.cookie-btn {
  flex-shrink: 0;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-family: var(--head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 7px 20px;
  cursor: pointer;
  border-radius: var(--r);
  transition: background .15s;
}
.cookie-btn:hover { background: rgba(255,255,255,.2); }
.cookie-banner.hidden { display: none; }

/* ── PROCESS TIMELINE ── */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  border-bottom: 1px solid var(--border);
}
.process-item:last-child { border-bottom: none; }
.process-num {
  background: var(--dark);
  color: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
}
.process-content {
  padding: 20px 24px;
  background: var(--white);
}
.process-content h4 {
  font-family: var(--head);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}
.process-content p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.55;
}

/* ── ACCEPT / REJECT BLOCK ── */
.accept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.accept-box {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.accept-box-head {
  padding: 14px 20px;
  font-family: var(--head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.accept-box-head.yes { background: #e8f3ee; color: #1a6b42; }
.accept-box-head.no  { background: #f7eded; color: #8a3232; }
.accept-box ul {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.accept-box ul li {
  font-size: 13px;
  color: var(--mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.accept-box.yes-box ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: #1a8a5a;
  font-weight: 700;
  font-size: 12px;
}
.accept-box.no-box ul li::before {
  content: '×';
  position: absolute; left: 0;
  color: #c04040;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

/* ── GEOGRAPHY ── */
.geo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.geo-tag {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  background: var(--white);
}

/* ── REGION STRIP ── */
.region-strip {
  background: var(--dark);
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
  font-family: var(--head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
}
.region-strip span { color: rgba(255,255,255,.85); }

/* ── EMAIL TOAST ── */
.email-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 1000;
  background: var(--dark2);
  color: rgba(255,255,255,.9);
  padding: 12px 20px;
  border-radius: var(--r);
  font-family: var(--head);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.email-toast .toast-label { color: rgba(255,255,255,.5); font-weight: 500; }
.email-toast .toast-email { color: #fff; }
.email-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step + .step { border-left: none; padding-left: 0; }
  .step:nth-child(n+3) { border-top: 1px solid var(--border); padding-top: 24px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-action { align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: 1 / -1; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .two-col-text { grid-template-columns: 1fr; gap: 24px; }
  .accept-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 52px 18px; }
  .hero { padding: 64px 18px 56px; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:nth-child(n+2) { border-top: 1px solid var(--border); border-left: none; padding-left: 0; padding-top: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px 18px 20px; }
}
