/* Wirex Financial Limited — cream/ivory luxury London advisory design system */

:root {
  --cream: #f9f5ec;
  --cream-deep: #f1e9d8;
  --paper: #ffffff;
  --charcoal: #211d18;
  --ink: #2c2721;
  --stone: #6d6459;
  --stone-light: #9c9284;
  --border: #e4d9c3;
  --border-strong: #d8c9a8;
  --gold: #b08a4e;
  --gold-deep: #8f6d38;
  --gold-pale: #ece0c4;
  --navy: #16233a;
  --navy-deep: #0d1626;
  --radius-sm: 3px;
  --radius: 6px;
  --container: 1200px;
  --font-serif: "Playfair Display", "Source Serif 4", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.13  0 0 0 0 0.11  0 0 0 0 0.09  0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.site-header, .hero, section, footer { position: relative; z-index: 1; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  line-height: 1.18;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 3.6vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 2.2vw, 2.05rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--stone); }

a { color: var(--charcoal); text-decoration: none; }
a:hover { color: var(--gold-deep); }

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

img, svg { max-width: 100%; display: block; }

ul { padding-left: 1.15em; color: var(--stone); }
li { margin-bottom: 0.5em; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.06s; }
.reveal-2 { transition-delay: 0.14s; }
.reveal-3 { transition-delay: 0.22s; }
.reveal-4 { transition-delay: 0.30s; }
.reveal-5 { transition-delay: 0.38s; }
.reveal-6 { transition-delay: 0.46s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 0; top: 0; }

/* Fine rule / eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }

.rule { border: none; border-top: 1px solid var(--border); margin: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 245, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(249, 245, 236, 0.98);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(33, 29, 24, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(176,138,78,0.5);
  color: var(--gold-pale);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.brand-divider { width: 1px; height: 30px; background: var(--border-strong); flex-shrink: 0; }
.brand-text {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--charcoal);
  letter-spacing: 0.005em;
}
.brand-sub { color: var(--stone-light); font-weight: 400; font-size: 1.02rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.site-nav a {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
}
.site-nav a:hover { color: var(--gold-deep); }
.site-nav a.active { color: var(--charcoal); }
.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 12px 24px !important;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: 0.92rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--gold-deep); color: #fff !important; transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto;
  background: var(--charcoal);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 1180px) {
  .nav-wrap { height: 74px; }
  .site-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 32px 32px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 30px rgba(33,29,24,0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    gap: 2px;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .nav-cta { margin-top: 10px; align-self: flex-start; }
  .brand-sub { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-deep); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--charcoal); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-1px); }
.btn-on-dark { background: transparent; color: #f3ead9; border-color: rgba(243,234,217,0.35); }
.btn-on-dark:hover { border-color: var(--gold); color: var(--gold-pale); }

/* Sections */
section { padding: 96px 0; position: relative; }
.section-alt { background: var(--cream-deep); }
.section-dark { background: var(--navy-deep); color: #f3ead9; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(243,234,217,0.72); }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* Editorial rows (services / numbered sections) */
.editorial-list { display: flex; flex-direction: column; }
.editorial-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 64px;
  gap: 36px;
  align-items: center;
  padding: 38px 28px;
  margin: 0 -28px;
  border-top: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.3s ease;
}
.editorial-list .editorial-row:last-child { border-bottom: 1px solid var(--border); }
.editorial-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.editorial-row::after {
  content: attr(data-num);
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 6.5rem;
  font-weight: 600;
  color: var(--charcoal);
  opacity: 0;
  line-height: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.editorial-row:hover { background: var(--cream-deep); }
.editorial-row:hover::before { transform: scaleY(1); }
.editorial-row:hover::after { opacity: 0.035; }
.editorial-num {
  position: relative;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 600;
  transition: color 0.3s ease;
}
.editorial-row:hover .editorial-num { color: var(--gold-deep); }
.editorial-row .editorial-content { position: relative; }
.editorial-row h3 { margin-bottom: 10px; }
.editorial-row p { margin-bottom: 0; max-width: 620px; }
.editorial-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  flex-shrink: 0;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.editorial-icon svg { width: 21px; height: 21px; stroke: var(--stone); transition: stroke 0.3s ease; }
.editorial-row:hover .editorial-icon { border-color: var(--gold); transform: rotate(-6deg) scale(1.05); }
.editorial-row:hover .editorial-icon svg { stroke: var(--gold-deep); }

/* Values row (hairline-divided, replaces icon cards) */
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.value-item {
  position: relative;
  padding: 6px 34px 6px 40px;
  border-left: 1px solid var(--border);
  transition: transform 0.3s ease;
}
.value-item::before {
  content: "";
  position: absolute;
  left: -1px; top: 6px;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.35s ease;
}
.value-item:hover { transform: translateX(3px); }
.value-item:hover::before { height: 28px; }
.value-item:first-child { border-left: none; padding-left: 6px; }
.value-item:first-child::before { left: 0; }
.value-item h3 { margin-bottom: 10px; font-size: 1.08rem; }
.value-item p { margin-bottom: 0; font-size: 0.95rem; }

/* Minimal bordered module (sector grid) */
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.module {
  position: relative;
  background: var(--cream);
  padding: 38px 34px;
  transition: background 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}
.module::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,138,78,0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.module:hover { background: var(--paper); transform: translateY(-3px); }
.module:hover::after { opacity: 1; }
.module-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.module-icon svg { width: 19px; height: 19px; stroke: var(--gold-deep); transition: stroke 0.25s ease; }
.module:hover .module-icon { background: var(--gold); transform: rotate(-8deg); }
.module:hover .module-icon svg { stroke: #fff; }
.module h3 { margin-bottom: 10px; font-size: 1.08rem; }
.module p { margin-bottom: 0; font-size: 0.93rem; }

/* Statistic strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-block { padding: 36px 32px; border-left: 1px solid var(--border); transition: transform 0.3s ease; }
.stat-block:first-child { border-left: none; }
.stat-block:hover { transform: translateY(-4px); }
.stat-block .num { font-family: var(--font-serif); font-size: 2.1rem; color: var(--charcoal); display: block; margin-bottom: 4px; transition: color 0.3s ease; }
.stat-block:hover .num { color: var(--gold-deep); }
.stat-block .label { font-size: 0.82rem; color: var(--stone); text-transform: uppercase; letter-spacing: 0.06em; }

/* Timeline (approach) */
.timeline { position: relative; display: flex; flex-direction: column; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--border-strong);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 30px;
  padding: 32px 0;
}
.timeline-item:first-child { padding-top: 0; }
.timeline-num {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
}
.section-alt .timeline-num { background: var(--cream-deep); }
.timeline-item h3 { margin-bottom: 8px; }
.timeline-item p { margin-bottom: 0; }

/* Notice / callout */
.notice {
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  padding: 28px 0;
  margin: 32px 0;
}
.notice p { color: var(--ink); margin-bottom: 0; font-size: 0.96rem; }
.notice-block {
  background: var(--navy-deep);
  color: #f3ead9;
  border-radius: var(--radius);
  padding: 34px 36px;
  margin: 32px 0;
}
.notice-block p { color: rgba(243,234,217,0.9); margin-bottom: 0; font-size: 0.96rem; }

/* Page hero (interior pages) */
.page-hero {
  background: var(--cream-deep);
  padding: 76px 0 68px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { max-width: 760px; margin-bottom: 16px; }
.page-hero p.lede { color: var(--stone); max-width: 660px; margin-bottom: 0; font-size: 1.06rem; }

/* Prose */
.prose { max-width: 780px; }
.prose h2 { margin-top: 1.7em; font-size: 1.5rem; }
.prose h2:first-child { margin-top: 0; }

/* FAQ (accordion-style hairline list) */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { padding: 28px 0; border-bottom: 1px solid var(--border); }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font-serif); }
.faq-item p { margin-bottom: 0; font-size: 0.96rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1px 0.85fr;
  gap: 56px;
  align-items: start;
}
.contact-grid .divider { background: var(--border); }
.contact-line { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.contact-line .module-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-line p, .contact-line a { margin-bottom: 0; }
.contact-line span.label { display: block; color: var(--stone-light); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-line a { font-family: var(--font-serif); font-size: 1.08rem; }

/* CTA band */
.cta-band {
  background: var(--navy-deep);
  color: #f3ead9;
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(243,234,217,0.72); max-width: 560px; margin: 0 auto 32px; }
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero (home) */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  position: relative;
}
.hero-copy {
  padding: 76px 56px 76px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-copy h1 { font-size: clamp(2.1rem, 3.3vw, 2.9rem); max-width: 640px; }
.hero-copy p.lead { font-size: 1.08rem; max-width: 480px; margin-top: 8px; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  background:
    linear-gradient(155deg, #1c2c47 0%, #16233a 45%, #0d1626 100%);
  overflow: visible;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243,234,217,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243,234,217,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-skyline { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; opacity: 0.9; }

.hero-float-cards {
  position: absolute;
  left: 47%;
  top: 44%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 3;
  width: 250px;
}
.hero-info-card {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 22px 24px 20px;
  box-shadow: 0 18px 40px rgba(22,35,58,0.14);
}
.hero-info-card .module-icon { margin-bottom: 14px; width: 38px; height: 38px; }
.hero-info-card .module-icon svg { width: 17px; height: 17px; }
.hero-info-card h3 { font-size: 1rem; margin-bottom: 6px; }
.hero-info-card .tags { font-size: 0.8rem; color: var(--stone); border-top: 1px solid var(--border); padding-top: 10px; margin-top: 10px; }
.hero-info-card .gold-underline { height: 2px; width: 34px; background: var(--gold); margin-top: 12px; }

.hero-steps-panel {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(13,22,38,0.92);
  border: 1px solid rgba(176,138,78,0.4);
  backdrop-filter: blur(6px);
  padding: 30px 30px 24px;
  width: 260px;
}
.hero-steps-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 20px;
}
.hero-step { display: flex; align-items: flex-start; gap: 14px; position: relative; padding-bottom: 22px; }
.hero-step:last-child { padding-bottom: 0; }
.hero-step::before {
  content: "";
  position: absolute;
  left: 15px; top: 32px; bottom: -2px;
  width: 1px;
  background: rgba(176,138,78,0.35);
}
.hero-step:last-child::before { display: none; }
.hero-step-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(13,22,38,0.6);
}
.hero-step-icon svg { width: 14px; height: 14px; stroke: var(--gold-pale); }
.hero-step h4 { font-family: var(--font-serif); color: #fff; font-size: 0.96rem; margin: 0 0 2px; font-weight: 600; }
.hero-step span { font-size: 0.78rem; color: rgba(243,234,217,0.6); }

.hero-bottom-bar {
  border-top: 1px solid var(--border);
  background: var(--cream-deep);
  padding: 26px 0;
}
.hero-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.hero-tags { display: flex; align-items: center; gap: 14px; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 600; color: var(--stone); }
.hero-tags .bar { width: 2px; height: 16px; background: var(--gold); display: inline-block; }
.hero-tags .sep { color: var(--border-strong); }
.hero-note { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: var(--stone); }
.hero-note svg { width: 16px; height: 16px; stroke: var(--gold-deep); flex-shrink: 0; }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(243,234,217,0.68); }
.footer-notice { padding: 26px 0; border-bottom: 1px solid rgba(243,234,217,0.1); }
.footer-notice p { color: rgba(243,234,217,0.55); font-size: 0.84rem; margin: 0; max-width: 980px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 32px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-sub { color: rgba(243,234,217,0.5); }
.footer-grid .muted { color: rgba(243,234,217,0.55); font-size: 0.9rem; }
.footer-grid h4 { color: #f3ead9; font-family: var(--font-sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; font-weight: 700; }
.footer-grid a { color: rgba(243,234,217,0.72); }
.footer-grid a:hover { color: var(--gold-pale); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(243,234,217,0.1);
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(243,234,217,0.4);
}

/* Responsive */
@media (max-width: 1180px) {
  .hero-float-cards { left: 44%; width: 205px; }
  .hero-info-card { padding: 16px 18px 14px; }
  .hero-steps-panel { right: 2%; width: 210px; padding: 22px 20px 18px; }
}

@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 56px 24px 40px; }
  .hero-visual { clip-path: none; min-height: 560px; order: 2; }
  .hero-float-cards, .hero-steps-panel { position: static; transform: none; width: auto; margin: 18px 24px; }
  .hero-float-cards { flex-direction: row; overflow-x: auto; }
  .hero-info-card { min-width: 220px; }
  .value-row, .module-grid, .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(2) { border-left: 1px solid var(--border); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .divider { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  section { padding: 68px 0; }
  .editorial-row {
    grid-template-columns: 44px 1fr;
    gap: 8px 16px;
    margin: 0 -18px;
    padding: 30px 18px;
  }
  .editorial-num { font-size: 1.3rem; }
  .editorial-icon { display: none; }
  .editorial-row::after { display: none; }
  .value-row, .module-grid, .stat-strip { grid-template-columns: 1fr; }
  .value-item, .stat-block { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 24px; }
  .value-item:first-child, .stat-block:first-child { border-top: none; padding-top: 0; }
  .footer-grid { grid-template-columns: 1fr; padding: 44px 0 12px; }
  .hero-bottom-inner { flex-direction: column; align-items: flex-start; }
}
