/* Umed Properties — Apple-inspired shared design system */

:root {
  /* Apple-like palette in OKLch */
  --bg: oklch(100% 0 0);
  --bg-soft: oklch(97% 0 0);
  --surface: oklch(95% 0 0);
  --surface-2: oklch(90% 0 0);
  --fg: oklch(20% 0 0);
  --fg-secondary: oklch(35% 0 0);
  --muted: oklch(50% 0 0);
  --meta: oklch(58% 0 0);
  --border: oklch(86% 0 0);
  --border-soft: oklch(93% 0 0);
  --ink: oklch(18% 0 0);

  --accent: oklch(55% 0.18 255);        /* Apple blue */
  --accent-hover: oklch(45% 0.2 255);
  --accent-on: oklch(100% 0 0);
  --accent-soft: oklch(93% 0.02 255);
  --blue: oklch(55% 0.18 255);
  --blue-soft: oklch(95% 0.02 255);
  --red: oklch(55% 0.18 25);
  --green: oklch(60% 0.16 145);
  --red-soft: oklch(94% 0.03 25);
  --green-soft: oklch(95% 0.03 145);

  /* Strict 1-2 font stack. Everything — text and numbers — uses the same system font. */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", SFMono-Regular, ui-monospace, Menlo, Consolas, monospace;

  --text-xs: 12px; --text-sm: 14px; --text-base: 16px; --text-lg: 19px;
  --text-xl: 26px; --text-2xl: 36px; --text-3xl: 48px; --text-4xl: 64px;
  --leading-body: 1.5; --leading-tight: 1.08; --tracking-display: -0.025em;

  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-5: 20px;
  --space-6: 24px; --space-8: 32px; --space-10: 40px; --space-12: 48px; --space-16: 64px;

  --section-y-desktop: 72px; --section-y-tablet: 56px; --section-y-phone: 44px;
  --radius-sm: 6px; --radius-md: 10px; --radius-lg: 18px; --radius-xl: 24px; --radius-pill: 980px;

  --elev-flat: none;
  --elev-ring: 0 0 0 1px var(--border);
  --elev-raised: 0 18px 40px rgba(0,0,0,0.06);
  --focus-ring: 0 0 0 4px color-mix(in oklab, var(--accent), transparent 80%);
  --motion-fast: 160ms; --motion-base: 240ms;
  --ease-standard: cubic-bezier(0.28, 0, 0.22, 1);

  --container-max: 1180px;
  --container-gutter: 32px;
  --container-gutter-tablet: 24px;
  --container-gutter-phone: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: var(--text-base);
  background: var(--bg);
  color: var(--fg);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

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

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-tight);
}

.kicker {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.kicker .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 40px;
}
.section-head h2 { font-size: clamp(24px, 3vw, var(--text-2xl)); }
.section-head p { color: var(--muted); font-size: var(--text-sm); max-width: 420px; line-height: 1.5; }
.section-head a { color: var(--accent); font-weight: 500; }
.section-head a:hover { text-decoration: underline; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font); font-size: var(--text-sm); font-weight: 500;
  border-radius: var(--radius-pill); padding: 11px 20px; cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--motion-fast) var(--ease-standard), color var(--motion-fast), box-shadow var(--motion-fast), border-color var(--motion-fast), transform var(--motion-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--accent-on); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.btn-ghost { background: var(--bg); color: var(--fg); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface); border-color: var(--border); }
.btn-ghost:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.btn-ghost-dark { background: transparent; color: var(--accent-on); border-color: color-mix(in oklab, white, transparent 70%); }
.btn-ghost-dark:hover { background: color-mix(in oklab, white, transparent 90%); border-color: color-mix(in oklab, white, transparent 50%); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--fg); }
.btn-secondary { background: var(--surface); color: var(--fg); border-color: var(--border); }
.btn-secondary:hover { background: var(--surface-2); }

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklab, var(--bg), transparent 6%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--container-gutter); max-width: var(--container-max); margin: 0 auto;
  min-height: 72px;
}
.nav-brand {
  display: inline-flex; align-items: center;
  height: 44px;
}
.nav-brand img {
  height: 44px; max-height: 44px; width: auto; max-width: 220px;
  display: block; object-fit: contain;
}
@media (max-width: 640px) {
  .nav-brand { height: 38px; }
  .nav-brand img { height: 38px; max-height: 38px; }
}
.nav-brand .mark {
  width: 28px; height: 28px; border-radius: 7px; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg); font-size: 14px; font-weight: 600;
}
.footer-brand .nav-brand { height: 48px; }
.footer-brand .nav-brand img { height: 48px; max-height: 48px; }
@media (max-width: 640px) {
  .footer-brand .nav-brand { height: 42px; }
  .footer-brand .nav-brand img { height: 42px; max-height: 42px; }
}
.logo-hero img { height: 64px; max-height: 64px; }
@media (max-width: 640px) {
  .logo-hero img { height: 48px; max-height: 48px; }
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--fg-secondary);
  transition: color var(--motion-fast) var(--ease-standard);
  padding: 6px 2px; border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-links a:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 4px; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-switcher {
  display: inline-flex; align-items: center; gap: 2px;
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-pill);
  padding: 3px;
}
.lang-switcher button {
  appearance: none; border: none; background: transparent; cursor: pointer;
  font-size: 12px; font-weight: 600; color: var(--fg-secondary);
  padding: 5px 9px; border-radius: var(--radius-pill); line-height: 1;
  transition: background var(--motion-fast), color var(--motion-fast);
}
.lang-switcher button:hover { color: var(--fg); }
.lang-switcher button.active { background: var(--ink); color: var(--accent-on); }
.lang-switcher button:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.mobile-menu .lang-switcher { align-self: flex-start; margin: 8px 2px 14px; }
.nav-phone {
  font-size: 13px; font-weight: 500; color: var(--fg);
  display: flex; align-items: center; gap: 6px;
}
.nav-phone svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 1.7; }
.nav-cta {
  /* Smaller top "Book a call" box */
  font-size: 12px !important;
  padding: 8px 14px !important;
}
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; margin: -8px -4px -8px 4px; border-radius: 8px;
}
.mobile-toggle:hover { background: var(--surface); }
.mobile-toggle:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.mobile-toggle svg { width: 22px; height: 22px; stroke: var(--fg); fill: none; stroke-width: 1.8; }
.mobile-menu {
  display: none; flex-direction: column; padding: 6px var(--container-gutter) 22px;
  border-top: 1px solid var(--border-soft); background: var(--bg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 2px; font-size: 15px; font-weight: 500;
  color: var(--fg); border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a.active { color: var(--accent); }
.mobile-menu .mm-cta { margin-top: 16px; border-bottom: none; text-align: center; padding: 13px; }

/* Footer */
footer { border-top: 1px solid var(--border-soft); padding: 64px 0 32px; background: var(--bg); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px;
}
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 270px; line-height: 1.5; }
.footer-col h5 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--meta); margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 14px; color: var(--fg-secondary); margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--motion-fast), background var(--motion-fast);
}
.footer-social a:hover { border-color: var(--accent); background: var(--blue-soft); }
.footer-social svg { width: 15px; height: 15px; stroke: var(--fg-secondary); fill: none; stroke-width: 1.6; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; border-top: 1px solid var(--border-soft);
  font-size: 12px; color: var(--meta); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a:hover { color: var(--accent); }

/* Filter pills */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; padding: 9px 15px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--border); cursor: pointer;
  transition: background var(--motion-fast), border-color var(--motion-fast);
}
.pill svg { width: 12px; height: 12px; }
.pill:hover { border-color: var(--muted); background: var(--surface-2); }
.pill.active { background: var(--ink); color: var(--accent-on); border-color: var(--ink); }
.pill .remove { display: inline-flex; align-items: center; margin-left: 4px; }
.pill .remove:hover { opacity: 0.7; }

/* Cards */
.card {
  background: var(--bg); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  transition: box-shadow var(--motion-base) var(--ease-standard), transform var(--motion-fast);
}
.card:hover { box-shadow: var(--elev-raised); transform: translateY(-2px); }

/* Listing card */
.listing-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); border: 1px solid var(--border-soft); transition: box-shadow var(--motion-base) var(--ease-standard); }
.listing-card:hover { box-shadow: var(--elev-raised); }
.listing-media { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.listing-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: var(--accent-on); font-size: 11px; font-weight: 600;
  letter-spacing: 0.02em; padding: 5px 10px; border-radius: var(--radius-pill); z-index: 2;
}
.listing-badge.rent { background: var(--accent); color: var(--accent-on); }
.listing-badge.offplan { background: var(--green); color: white; }
.listing-badge.ready { background: var(--blue-soft); color: var(--accent); border: 1px solid color-mix(in oklab, var(--accent), transparent 80%); }
.listing-save {
  position: absolute; top: 12px; right: 12px; width: 30px; height: 30px;
  border-radius: 50%; background: color-mix(in oklab, white, transparent 8%);
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
  z-index: 2; border: none; cursor: pointer; transition: background 160ms;
}
.listing-save:hover { background: white; }
.listing-save svg { width: 13px; height: 13px; stroke: var(--fg); fill: none; stroke-width: 1.8; }
.listing-save.saved svg { fill: var(--accent); stroke: var(--accent); }
.listing-body { padding: 20px 22px 24px; }
.listing-price { font-size: var(--text-lg); font-weight: 600; color: var(--fg); line-height: 1.3; }
.listing-price .price-main { font-family: var(--font); color: var(--accent); }
.listing-price .tag { font-size: 12px; color: var(--muted); font-weight: 400; margin-left: 4px; }
.listing-title { font-size: var(--text-base); font-weight: 600; margin-top: 10px; letter-spacing: -0.01em; line-height: 1.3; }
.listing-loc { font-size: 14px; color: var(--muted); margin-top: 5px; }
.listing-meta { display: flex; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-soft); }
.listing-meta span { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.listing-meta svg { width: 13px; height: 13px; stroke: var(--meta); fill: none; stroke-width: 1.6; }
.listing-fin {
  display: flex; gap: 6px; margin-top: 16px;
  padding: 14px; background: var(--surface); border-radius: var(--radius-md);
}
.listing-fin .fin-cell { flex: 1; text-align: center; }
.listing-fin .fin-label { font-size: 10px; color: var(--meta); text-transform: uppercase; letter-spacing: 0.04em; }
.listing-fin .fin-val { font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--fg); margin-top: 5px; }

/* Dual-currency price display: AED in Apple blue, USD in Apple green */
.price-line { display: inline-flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-line .price-main {
  font-family: var(--font); color: var(--accent); font-weight: 600;
}
.price-line .price-usd {
  font-size: 12px; font-weight: 600; color: var(--green);
  letter-spacing: 0; white-space: nowrap;
}

/* On dark/inverse surfaces keep USD readable */
.inverse .price-line .price-usd,
.hero-dark .price-line .price-usd,
.ticker-wrap .price-line .price-usd {
  color: color-mix(in oklab, var(--green), white 30%);
}
.inverse .price-line .price-main,
.hero-dark .price-line .price-main,
.ticker-wrap .price-line .price-main {
  color: color-mix(in oklab, var(--accent), white 30%);
}

/* Filled media helper for real imagery in cards */
.media-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
.listing-media .media-img, .collection-card .media-img { z-index: 0; }

/* Generated art scenes */
.art-scene {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
}
.art-bars {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  gap: 5px; padding: 0 18px; opacity: 0.5;
}
.art-bars span { flex: 1; background: var(--ink); border-radius: 2px 2px 0 0; }
.art-water {
  position: absolute; bottom: 0; left: 0; right: 0; height: 28%;
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent), transparent 85%) 0%, color-mix(in oklab, var(--accent), transparent 65%) 100%);
  opacity: 0.35;
}

/* Ticker */
.ticker-wrap {
  background: var(--ink); color: var(--accent-on); overflow: hidden; border-top: 1px solid color-mix(in oklab, white, transparent 90%);
  padding: 12px 0; position: relative;
}
.ticker {
  display: flex; gap: 48px; white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; }
.ticker-item b { font-family: var(--font); color: var(--accent); font-weight: 600; letter-spacing: -0.01em; }
.ticker-item b .green { color: color-mix(in oklab, var(--green), white 30%); }
.ticker-item b .accent { color: color-mix(in oklab, var(--accent), white 30%); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Forms - large inputs to match the hero search/intent box size */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--fg); }
.field .req { color: var(--accent); }
.input, .field input, .field select, .field textarea,
.search {
  width: 100%; font-family: var(--font); font-size: 16px; color: var(--fg);
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 16px 18px; min-height: 54px;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}
.field input::placeholder, .field textarea::placeholder, .search::placeholder { color: color-mix(in oklab, var(--muted), transparent 20%); }
.field textarea { resize: vertical; min-height: 130px; }
.field input:hover, .field select:hover, .field textarea:hover, .search:hover { border-color: var(--muted); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible, .search:focus-visible {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent), transparent 80%);
}
.field.error input, .field.error select, .field.error textarea { border-color: var(--red); }
.field.error .err-msg { display: block; }
.err-msg { display: none; font-size: 13px; color: var(--red); margin-top: 5px; }
.field-help { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* Select sizing match */
.select {
  width: 100%; font-family: var(--font); font-size: 16px; color: var(--fg);
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 16px 18px; min-height: 54px;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C6B7A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.select:hover { border-color: var(--muted); }
.select:focus-visible { outline: none; border-color: var(--accent); box-shadow: var(--focus-ring); }

/* Result / sort bar */
.result-bar { display: flex; justify-content: space-between; align-items: center; padding: 22px 0 12px; gap: 16px; }
.result-bar span { font-size: 13px; color: var(--muted); }
.sort-bar { display: flex; align-items: center; gap: 10px; }
.sort-bar label { font-size: 13px; color: var(--muted); font-weight: 500; }
.sort-bar .select { min-width: 170px; width: auto; height: 42px; min-height: 42px; padding: 10px 14px; font-size: 14px; }

/* Pagination */
.pagination {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 36px;
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 6px;
}
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 500; color: var(--fg-secondary); text-decoration: none;
}
.pagination a:hover { background: var(--bg); color: var(--fg); }
.pagination a.active { background: var(--ink); color: white; }
.pagination a.disabled { opacity: 0.4; pointer-events: none; }
.pagination a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pagination .page-ellipsis { pointer-events: none; }

/* Chips */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 9px 16px; font-size: 13px; font-weight: 500; color: var(--fg-secondary);
  background: var(--bg); cursor: pointer; transition: all var(--motion-fast);
  min-height: 38px;
}
.chip:hover { border-color: var(--border); color: var(--fg); background: var(--surface); }
.chip.active { background: var(--ink); color: var(--accent-on); border-color: var(--ink); }
.chip:focus-visible { outline: none; box-shadow: var(--focus-ring); }

/* Page headers */
.page-head { padding: 72px 0 54px; background: var(--ink); color: white; }
.page-head .kicker { color: oklch(75% 0.02 255); }
.page-head h1 { color: white; font-size: clamp(30px, 4vw, 48px); max-width: 640px; }
.page-head p { color: oklch(78% 0.01 90); font-size: 16px; margin-top: 14px; max-width: 520px; }

/* CTA band */
.cta-band {
  background: var(--ink); color: white; border-radius: var(--radius-xl);
  padding: 44px 48px; display: flex; justify-content: space-between; align-items: center; gap: 48px;
}
.cta-band .cta-text { display: flex; flex-direction: column; gap: 12px; }
.cta-band h2 { color: white; font-size: clamp(22px, 2.6vw, 30px); max-width: 420px; }
.cta-band p { color: oklch(78% 0.01 90); font-size: 14px; line-height: 1.5; max-width: 420px; }
@media (max-width: 980px) {
  .cta-band { flex-direction: column; align-items: flex-start; padding: 36px 28px; gap: 24px; }
}

/* Metric cards - large Apple-style metric tiles */
.metric-card {
  background: var(--bg-soft); border: 1px solid var(--border-soft); border-radius: var(--radius-md);
  padding: 28px; text-align: left;
}
.metric-card .caption { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.metric-card .number {
  font-family: var(--font); font-size: 38px; font-weight: 600; color: var(--fg); margin-top: 10px;
  letter-spacing: -0.02em; line-height: 1.05;
}
.metric-card .number .price-usd { font-size: 16px; font-weight: 600; margin-left: 8px; vertical-align: middle; color: var(--green); }
.metric-card .note { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.metric-card.accent { background: var(--blue-soft); border-color: color-mix(in oklab, var(--accent), transparent 85%); }
.metric-card.accent .number { color: var(--accent); }
.metric-card.positive .number { color: var(--green); }
.metric-card.negative .number { color: var(--red); }
.metric-input {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 16px 18px; min-height: 54px; font-size: 16px; width: 100%;
}
.metric-input:focus-visible { outline: none; border-color: var(--accent); box-shadow: var(--focus-ring); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16); transition: transform var(--motion-fast);
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* Utility */
.text-accent { color: var(--accent); }
.bg-surface { background: var(--surface); }

section { padding: var(--section-y-desktop) 0; }
.section-head { margin-bottom: 40px; }

/* Sections that follow a dark hero need generous top spacing so the kicker never sticks to the black. */
.page-head + section,
.page-head + div + section,
.launch-hero + section,
.investor-hero + section {
  padding-top: calc(var(--section-y-desktop) + 16px);
}

/* Page kicker spacing */
.page-head + section .kicker,
.launch-hero + section .kicker,
.investor-hero + section .kicker {
  margin-bottom: 20px;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border-soft); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-size: 16px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--accent); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-ans { padding: 0 24px 20px; font-size: 15px; color: var(--muted); line-height: 1.6; }

/* Responsive */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-phone, .nav-actions > a.btn { display: none; }
  .mobile-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 30px; }
  section { padding: var(--section-y-tablet) 0; }
  .page-head + section, .launch-hero + section, .investor-hero + section, .page-head + div + section {
    padding-top: var(--section-y-tablet);
  }
}
@media (max-width: 640px) {
  :root { --container-gutter: var(--container-gutter-phone); }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .page-head { padding: 56px 0 40px; }
  section { padding: var(--section-y-phone) 0; }
  .section-head { margin-bottom: 28px; }
  .page-head + section, .launch-hero + section, .investor-hero + section, .page-head + div + section {
    padding-top: var(--section-y-phone);
  }
  .metric-card .number { font-size: 32px; }
}
