/* Alias Broderie — corporate clean B2B */
:root {
  --brand-blue: #4A3FA8;          /* logo purple-blue */
  --brand-blue-deep: #2E2477;     /* darker shade for hover/depth */
  --brand-blue-soft: #EDEBF7;     /* tinted background */
  --brand-pink: #E5358B;          /* logo pink swoosh */
  --brand-pink-soft: #FCE7F0;

  --ink: #0E1330;
  --ink-2: #2C3257;
  --muted: #6B7193;
  --line: #E4E5EE;
  --line-2: #F0F1F6;
  --bg: #FFFFFF;
  --bg-2: #FAFAFC;
  --bg-3: #F5F5F9;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --pad-y: 120px;       /* section vertical padding (airy default) */
  --pad-x: 64px;        /* gutter */
  --gap: 24px;

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --shadow-sm: 0 1px 2px rgba(14, 19, 48, 0.04), 0 1px 1px rgba(14, 19, 48, 0.02);
  --shadow: 0 4px 16px rgba(14, 19, 48, 0.06), 0 1px 2px rgba(14, 19, 48, 0.04);
  --shadow-lg: 0 24px 48px rgba(14, 19, 48, 0.10), 0 4px 12px rgba(14, 19, 48, 0.06);
}

/* Density modes */
[data-density="compact"] {
  --pad-y: 80px;
  --gap: 16px;
}
[data-density="airy"] {
  --pad-y: 140px;
  --gap: 28px;
}

/* Typography pairings */
[data-typo="editorial"] {
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Inter", system-ui, sans-serif;
}
[data-typo="modern"] {
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-body: "Geist", "Inter", system-ui, sans-serif;
}
[data-typo="grotesk"] {
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
@media (max-width: 768px) {
  :root { --pad-x: 24px; }
}

/* ========== TYPOGRAPHY ========== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--brand-blue);
}

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(40px, 5.5vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); }
h4 { font-size: 18px; font-family: var(--font-body); font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }
.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-2); line-height: 1.55; max-width: 60ch; }

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
  padding: 0 var(--pad-x);
  max-width: 1440px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-logo img { height: 40px; width: auto; flex-shrink: 0; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 0;
  position: relative;
  transition: color .2s;
  background: none;
  border: none;
}
.nav-link:hover { color: var(--brand-blue); }
.nav-link[data-active="true"] { color: var(--brand-blue); }
.nav-link[data-active="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  height: 2px;
  background: var(--brand-blue);
}
.lang-toggle {
  display: inline-flex;
  background: var(--bg-3);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lang-toggle button {
  padding: 5px 12px;
  border: none;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  transition: all .2s;
}
.lang-toggle button[data-active="true"] {
  background: var(--ink);
  color: white;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-blue);
  color: white;
}
.btn-primary:hover {
  background: var(--brand-blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(74, 63, 168, 0.25);
}
.btn-secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg-3); }

.arrow-icon {
  width: 16px; height: 16px;
  transition: transform .2s;
}
.btn:hover .arrow-icon { transform: translateX(2px); }

/* ========== SECTION ========== */
.section { padding: var(--pad-y) 0; }
.section-tight { padding: calc(var(--pad-y) * 0.6) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head h2 { max-width: 14ch; }
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 560px;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-pink-soft);
  color: var(--brand-pink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--brand-pink);
  border-radius: 50%;
}
.hero h1 {
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--brand-blue);
  font-style: italic;
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 14px;
  background: var(--brand-pink);
  opacity: 0.18;
  border-radius: 2px;
  z-index: -1;
}
.hero p.lead { margin-bottom: 32px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  color: var(--muted);
}

/* Hero visual — explicit, badge-forward */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #1a1a3a 0%, #2E2477 60%, #4A3FA8 100%);
  display: grid;
  place-items: center;
}
.hero-visual::before {
  /* fabric texture suggestion */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.hero-badge-svg {
  position: relative;
  width: 78%;
  max-width: 480px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4)) drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transform: rotate(-3deg);
  z-index: 2;
}
.hero-badge-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.hero-badge-card-mark {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--brand-pink);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-badge-card-title { font-weight: 600; font-size: 13px; margin-bottom: 2px; }
.hero-badge-card-sub { font-size: 11px; color: var(--muted); }

.hero-pin {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.hero-pin-dot {
  width: 6px; height: 6px;
  background: var(--brand-pink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(229, 53, 139, 0.25);
}
.hero-pin.tl { top: 24px; left: 24px; }
.hero-pin.tr { top: 24px; right: 24px; background: var(--brand-pink); color: white; }
.hero-pin.tr .hero-pin-dot { background: white; box-shadow: 0 0 0 4px rgba(255,255,255,0.3); }

/* Badge strip below hero */
.badge-strip {
  margin-top: 64px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.badge-strip-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  text-align: center;
  font-weight: 500;
}
.badge-strip-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}
.badge-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius);
  transition: background .2s;
}
.badge-strip-item:hover { background: var(--bg-2); }
.badge-strip-item svg { width: 64px; height: 64px; }
.badge-strip-item-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-2);
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 880px) {
  .badge-strip-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* ========== STATS ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 80px;
}
.stat {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ========== ARGS / FEATURE GRID ========== */
.args-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.arg {
  background: white;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.arg-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-blue);
  font-weight: 500;
}
.arg h4 { color: var(--ink); }
.arg p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 720px) {
  .args-grid { grid-template-columns: 1fr; }
}

/* ========== PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
  position: relative;
}
.process-step:nth-child(odd) { border-color: var(--brand-blue); }
.process-step:nth-child(even) { border-color: var(--brand-pink); }
.process-step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.process-step h4 { font-size: 17px; }
.process-step p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 880px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ========== CTA BAND ========== */
.cta-band {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--brand-blue) 0%, transparent 70%);
  opacity: 0.45;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -120px; left: 30%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--brand-pink) 0%, transparent 70%);
  opacity: 0.20;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: white; max-width: 16ch; }
.cta-band p { color: rgba(255,255,255,0.7); margin-top: 12px; max-width: 50ch; }
.cta-band .btn-primary {
  background: white;
  color: var(--ink);
}
.cta-band .btn-primary:hover { background: var(--brand-pink); color: white; }
@media (max-width: 720px) {
  .cta-band { grid-template-columns: 1fr; padding: 40px; }
}

/* ========== PRODUCT CARDS ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
  transition: all .25s;
}
.product-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  aspect-ratio: 4/3;
  background: #1a1244;
  position: relative;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.product-card-img svg { width: 100%; height: 100%; transition: transform .4s; }
.product-card:hover .product-card-img img,
.product-card:hover .product-card-img svg { transform: scale(1.04); }
.product-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: white;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.product-card-tag[data-cat="Sécurité"], .product-card-tag[data-cat="Security"] {
  background: var(--brand-blue); color: white;
}
.product-card-body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-card h4 { margin-bottom: 6px; }
.product-card p { font-size: 14px; color: var(--ink-2); line-height: 1.55; flex: 1; }
.product-card-specs {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card-spec {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card-spec::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--brand-pink);
  border-radius: 50%;
}
@media (max-width: 880px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

/* ========== SERVICES ========== */
.services-list {
  display: flex;
  flex-direction: column;
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-blue);
  letter-spacing: 0.04em;
}
.service-title h3 { margin-bottom: 8px; }
.service-title p { font-size: 15px; color: var(--ink-2); max-width: 36ch; }
.service-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  font-size: 14px;
}
.service-bullets li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-2);
}
.service-bullets li::before {
  content: "";
  width: 14px; height: 14px;
  border: 1.5px solid var(--brand-blue);
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  background: radial-gradient(circle, var(--brand-blue) 30%, transparent 35%);
}
@media (max-width: 880px) {
  .service-row { grid-template-columns: 1fr; gap: 16px; }
  .service-bullets { grid-template-columns: 1fr; }
}

/* ========== GALLERY ========== */
.gallery-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  transition: all .2s;
}
.gallery-filter:hover { border-color: var(--ink); }
.gallery-filter[data-active="true"] {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid > *:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-item {
  aspect-ratio: 1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a1244;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-item svg { width: 100%; height: 100%; transition: transform .5s; }
.gallery-item:hover img,
.gallery-item:hover svg { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(14,19,48,0.9), transparent);
  color: white;
  font-size: 12px;
  opacity: 0;
  transition: opacity .25s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-tag {
  display: inline-block;
  background: var(--brand-pink);
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== ABOUT ========== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: end;
  padding: 80px 0 60px;
}
.about-hero-img {
  aspect-ratio: 5/4;
  background: var(--bg-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 80px;
}
.about-stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.about-stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.02em;
}
.about-history {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 100px;
}
.about-history-text p {
  margin-bottom: 20px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}
.about-history-text p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 64px;
  float: left;
  line-height: 0.9;
  margin: 6px 8px 0 0;
  color: var(--brand-blue);
}
.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.market {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.market-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--brand-blue);
  margin-bottom: 16px;
  position: relative;
}
.market-icon::after {
  content: "";
  position: absolute;
  bottom: -3px; right: -3px;
  width: 12px; height: 12px;
  background: var(--brand-pink);
  border-radius: 3px;
}
.market h4 { margin-bottom: 8px; }
.market p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 880px) {
  .about-hero, .about-history { grid-template-columns: 1fr; gap: 32px; }
  .about-stats-row, .markets-grid { grid-template-columns: 1fr; }
}

/* ========== CUSTOMIZATION ========== */
.custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}
.custom-cell {
  background: white;
  padding: 28px;
}
.custom-cell-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-pink);
  font-weight: 600;
  margin-bottom: 8px;
}
.custom-cell-value {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
@media (max-width: 720px) { .custom-grid { grid-template-columns: 1fr; } }

/* ========== QUOTE WIZARD ========== */
.quote-page { padding: 60px 0 120px; }
.quote-shell {
  max-width: 760px;
  margin: 0 auto;
}
.quote-progress {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 32px 0 48px;
}
.quote-progress-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quote-progress-bar {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.quote-progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.quote-progress-step[data-state="active"] .quote-progress-bar::after { transform: scaleX(1); animation: fillBar 0.4s ease-out; }
.quote-progress-step[data-state="done"] .quote-progress-bar::after { transform: scaleX(1); }
@keyframes fillBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.quote-progress-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.quote-progress-step[data-state="active"] .quote-progress-label,
.quote-progress-step[data-state="done"] .quote-progress-label { color: var(--ink); }

.quote-step h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 8px; }
.quote-step p.lead { margin-bottom: 36px; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.option-card {
  padding: 20px 22px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
  text-align: left;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.option-card:hover { border-color: var(--ink-2); }
.option-card[data-selected="true"] {
  border-color: var(--brand-blue);
  background: var(--brand-blue-soft);
  box-shadow: 0 0 0 3px rgba(74, 63, 168, 0.12);
}
.option-card-name { font-weight: 600; font-size: 15px; }
.option-card-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 600px) { .option-grid { grid-template-columns: 1fr; } }

.option-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 48px;
}
.option-pill {
  padding: 18px 24px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.option-pill:hover { border-color: var(--ink-2); }
.option-pill[data-selected="true"] {
  border-color: var(--brand-blue);
  background: var(--brand-blue-soft);
  box-shadow: 0 0 0 3px rgba(74, 63, 168, 0.12);
}
.option-pill-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
}
.option-pill[data-selected="true"] .option-pill-check {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: white;
}

/* Form fields */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(74, 63, 168, 0.12);
}
.field textarea { min-height: 110px; resize: vertical; font-family: inherit; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field-hint { font-size: 12px; color: var(--muted); }
.field-error { font-size: 12px; color: var(--brand-pink); }
.field-error-input { border-color: var(--brand-pink) !important; }

.file-drop {
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--bg-2);
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.file-drop:hover { border-color: var(--brand-blue); background: var(--brand-blue-soft); }
.file-drop-icon {
  width: 36px; height: 36px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: white;
  display: grid; place-items: center;
  color: var(--brand-blue);
}

.deadline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.deadline-pill {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all .15s;
}
.deadline-pill:hover { border-color: var(--ink-2); }
.deadline-pill[data-selected="true"] {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: white;
}

.quote-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.quote-nav-step {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.quote-success {
  text-align: center;
  padding: 80px 24px;
  max-width: 560px;
  margin: 0 auto;
}
.quote-success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  display: grid; place-items: center;
}
.quote-success h2 { margin-bottom: 12px; }
.quote-success p { color: var(--ink-2); margin-bottom: 32px; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding-top: 60px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-block .contact-info-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-info-block .contact-info-value {
  font-size: 16px;
  color: var(--ink);
  white-space: pre-line;
}
.contact-map {
  margin-top: 32px;
  aspect-ratio: 16/10;
  background: var(--bg-3);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 { margin-bottom: 24px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: white; font-family: var(--font-display); font-size: 22px; }
.footer-logo img { height: 40px; width: auto; flex-shrink: 0; filter: brightness(0) invert(1); }
.footer-tagline { max-width: 28ch; font-size: 14px; line-height: 1.5; }
.footer-col h5 {
  color: white;
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--brand-pink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile nav */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .mobile-nav-toggle { display: block; margin-left: auto; }
  .nav-links[data-open="true"] {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 24px var(--pad-x);
    gap: 16px;
    align-items: flex-start;
  }
}

/* Page transition */
.page {
  animation: fadeIn .35s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--muted), transparent);
}
