:root {
  --red: #C8102E;
  --red-dark: #A30C25;
  --blue: #1E4F8F;
  --blue-dark: #163E70;
  --black: #0E0E10;
  --black-2: #14171F;
  --black-3: #1F232E;
  --steel: #B5B7BA;
  --steel-dark: #6B6E74;
  --bone: #FAFAF7;
  --bone-2: #F1F1EC;
  --cream: #F4F1EC;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--black);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Anton', 'Oswald', sans-serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn::after { content: '›'; font-size: 1.3rem; line-height: 1; margin-top: -2px; }
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: white; box-shadow: 0 6px 16px rgba(200,16,46,.25); }
.btn-red:hover { background: var(--red-dark); box-shadow: 0 10px 22px rgba(200,16,46,.35); }
.btn-blue { background: var(--blue); color: white; box-shadow: 0 6px 16px rgba(30,79,143,.25); }
.btn-blue:hover { background: var(--blue-dark); box-shadow: 0 10px 22px rgba(30,79,143,.35); }
.btn-dark { background: var(--black); color: white; }
.btn-dark:hover { background: #000; box-shadow: 0 10px 22px rgba(0,0,0,.35); }
.btn-ghost { background: transparent; color: white; border: 2px solid white; }
.btn-ghost:hover { background: white; color: var(--black); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-no-arrow::after { content: ''; }

/* Top contact strip */
.topbar {
  background: var(--black);
  color: white;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .row {
  display: flex; justify-content: flex-end; align-items: center;
  padding: 0;
}
.topbar .pill {
  background: var(--red);
  color: white;
  padding: 8px 20px 8px 36px;
  display: flex; gap: 22px; flex-wrap: wrap;
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%);
}
.topbar a { color: white; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.topbar .ic { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { width: 14px; height: 14px; }

/* Header */
header.site {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky; top: 0; z-index: 50;
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 56px; width: auto; }
nav.main {
  display: flex; gap: 26px;
  margin-left: auto;
  align-items: center;
}
nav.main a {
  color: white;
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  transition: color .15s ease;
}
nav.main a:hover { color: var(--red); }
nav.main a.active { color: var(--red); }
nav.main a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--red);
}

/* Dropdown */
nav.main .dropdown { position: relative; }
nav.main .dropdown > a::after {
  content: ' ▾'; font-size: 0.75rem; opacity: 0.7;
}
nav.main .dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: -16px;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  margin-top: 8px;
}
nav.main .dropdown:hover .dropdown-menu,
nav.main .dropdown:focus-within .dropdown-menu { display: block; }
nav.main .dropdown-menu a {
  display: block; padding: 10px 18px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
nav.main .dropdown-menu a::after { content: none; }
nav.main .dropdown-menu a:hover { background: rgba(200,16,46,.12); color: var(--red); }

.menu-toggle { display: none; background: transparent; border: 0; color: white; font-size: 1.6rem; cursor: pointer; padding: 4px 8px; }
.header-cta { margin-left: 8px; }

@media (max-width: 980px) {
  nav.main { display: none; }
  .header-cta { display: none; }
  nav.main.open {
    display: flex; flex-direction: column; gap: 14px; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black-2); padding: 18px 24px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  nav.main.open .dropdown-menu {
    position: static; display: none; background: transparent;
    border: 0; padding: 0; margin: 6px 0 0 16px; box-shadow: none;
  }
  nav.main.open .dropdown:hover .dropdown-menu,
  nav.main.open .dropdown.open .dropdown-menu { display: block; }
  .menu-toggle { display: block; }
}

/* HOME HERO */
.hero {
  position: relative;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14,14,16,.55) 0%, rgba(14,14,16,.75) 60%, rgba(14,14,16,.95) 100%),
    radial-gradient(ellipse at 30% 75%, rgba(200,16,46,.45) 0%, rgba(200,16,46,.05) 35%, transparent 65%),
    radial-gradient(ellipse at 80% 20%, rgba(40,55,80,.6) 0%, transparent 50%),
    linear-gradient(180deg, #1a1f29 0%, #0e1018 50%, #1a0d10 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 25% 90%, rgba(255,140,80,.18) 0%, transparent 30%),
    repeating-linear-gradient(180deg, transparent 0 4px, rgba(0,0,0,.05) 4px 5px);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 70px 0 90px;
  position: relative; z-index: 2;
}
.hero-wordmark {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: clamp(3.2rem, 8.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.005em;
  color: white;
  margin-bottom: 14px;
  text-shadow: 0 4px 22px rgba(0,0,0,.5);
}
.hero-subhead {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero-lead {
  font-size: 1rem;
  max-width: 540px;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
  line-height: 1.55;
}
.hero-icons {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-bottom: 32px; max-width: 620px;
}
.hero-icon {
  display: flex; gap: 10px; align-items: flex-start;
}
.hero-icon .ic {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-icon .ic svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }
.hero-icon .lbl {
  font-size: 0.78rem;
  line-height: 1.3;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-art {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.hero-art img {
  max-width: 100%;
  width: 440px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.6));
}
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; padding: 56px 0 72px; gap: 32px; }
  .hero-icons { grid-template-columns: 1fr; gap: 14px; }
  .hero-art img { width: 280px; }
  .hero-art { order: -1; }
}

/* INTERIOR PAGE HEADER */
.page-header {
  position: relative;
  color: white;
  padding: 60px 0 56px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(14,14,16,.65) 0%, rgba(14,14,16,.95) 100%),
    radial-gradient(ellipse at 50% 110%, rgba(200,16,46,.35) 0%, transparent 55%),
    linear-gradient(180deg, #1a1f29 0%, #0e1018 100%);
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 4px, rgba(0,0,0,.05) 4px 5px);
}
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: white;
  position: relative; z-index: 2;
  margin-bottom: 8px;
}
.page-header .crumb {
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative; z-index: 2;
}
.page-header .lede {
  max-width: 720px; margin: 0 auto;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  position: relative; z-index: 2;
  padding: 0 24px;
}

/* ONE PLATFORM section */
.platform { background: var(--cream); padding: 70px 0 80px; }
.platform-grid {
  display: grid;
  grid-template-columns: 1fr auto 2fr;
  gap: 48px;
  align-items: start;
}
.platform-headline { padding-top: 8px; }
.platform-headline h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--black);
  line-height: 0.98;
  margin-bottom: 18px;
}
.platform-headline p {
  color: var(--steel-dark);
  font-size: 0.98rem;
  margin-bottom: 8px;
}

/* Phone mockup */
.phone-mock {
  width: 250px;
  background: #15151A;
  border-radius: 32px;
  padding: 12px 10px;
  box-shadow: 0 28px 60px rgba(0,0,0,.25), inset 0 0 0 2px #2a2a30;
  position: relative;
  margin: 0 auto;
}
.phone-mock::before {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 14px; background: #000; border-radius: 0 0 10px 10px; z-index: 2;
}
.phone-screen {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  color: var(--black);
  padding-top: 22px;
}
.ph-header {
  background: var(--black);
  color: white;
  padding: 10px 12px 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.ph-header .ph-logo {
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--red);
}
.ph-header .ph-menu { font-size: 0.95rem; opacity: 0.8; }
.ph-photo {
  height: 100px;
  background:
    linear-gradient(135deg, rgba(200,16,46,.35), rgba(0,0,0,.4)),
    linear-gradient(45deg, #1a1a1a 0%, #4a2020 50%, #1a1a1a 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ph-photo::after {
  content: '';
  width: 160px; height: 50px;
  background:
    radial-gradient(ellipse at 25% 70%, #000 0%, transparent 30%),
    radial-gradient(ellipse at 75% 70%, #000 0%, transparent 30%),
    linear-gradient(180deg, #2a1010 30%, #5a2020 60%, #2a0a0a 100%);
  border-radius: 4px 18px 4px 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,.4);
}
.ph-body { padding: 12px; }
.ph-title {
  font-family: 'Anton', sans-serif;
  font-size: 0.92rem;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 6px;
}
.ph-spec-row {
  display: flex;
  font-size: 0.7rem;
  color: var(--steel-dark);
  padding: 3px 0;
  border-bottom: 1px solid #f0f0f0;
}
.ph-spec-row:last-of-type { border-bottom: 0; }
.ph-spec-row span:first-child { width: 80px; color: var(--black); font-weight: 700; }
.ph-cta {
  margin-top: 10px;
  background: var(--red); color: white;
  text-align: center; padding: 7px;
  border-radius: 4px;
  font-family: 'Anton', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* Benefits 3-column */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit { display: flex; flex-direction: column; gap: 14px; }
.benefit-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; }
.benefit h3 { font-size: 1rem; color: var(--black); letter-spacing: 0.03em; }
.benefit ul li {
  font-size: 0.86rem;
  color: var(--steel-dark);
  padding: 4px 0;
  line-height: 1.45;
}
.benefit ul li + li { margin-top: 2px; }
@media (max-width: 1000px) {
  .platform-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 700px) { .benefits { grid-template-columns: 1fr; } }

/* Trust band (home) */
.trust-band {
  background: var(--black);
  color: white;
  padding: 40px 0;
  border-top: 3px solid var(--red);
}
.trust-row {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(4, auto);
  gap: 32px;
  align-items: center;
}
.trust-tag { display: flex; flex-direction: column; gap: 4px; }
.trust-tag h3 { font-size: 1.1rem; color: white; letter-spacing: 0.04em; }
.trust-tag .sub {
  font-family: 'Pacifico', cursive;
  color: var(--red);
  font-size: 1rem;
  text-transform: none;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.92);
  font-size: 0.82rem;
}
.trust-item .ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(200,16,46,.18);
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item .ic svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 2; }
.trust-item strong { display: block; color: white; font-size: 0.86rem; letter-spacing: 0.02em; text-transform: uppercase; }
.trust-item span { color: rgba(255,255,255,.6); font-size: 0.74rem; }
@media (max-width: 1100px) {
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-tag { grid-column: 1 / -1; margin-bottom: 8px; }
}
@media (max-width: 600px) { .trust-row { grid-template-columns: 1fr; } }

/* Section heads */
.section { padding: 70px 0 80px; }
.section.light { background: var(--bone); color: var(--black); }
.section.cream { background: var(--cream); color: var(--black); }
.section.dark { background: var(--black); color: var(--bone); }
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head .dots {
  color: var(--red);
  letter-spacing: 0.4em;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: inherit;
}
.section-head .sub {
  color: var(--steel-dark);
  margin-top: 12px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section.dark .section-head .sub { color: rgba(255,255,255,.7); }

/* HOW IT WORKS — steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: white;
  border-radius: 8px;
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  border: 1px solid #ececec;
  position: relative;
  transition: transform .2s ease;
}
.step:hover { transform: translateY(-3px); }
.step-num {
  position: absolute; top: -16px; left: 24px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(200,16,46,.4);
}
.step-icon { margin: 8px auto 18px; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
.step-icon svg { width: 50px; height: 50px; stroke: var(--black); fill: none; stroke-width: 1.5; }
.step h3 { font-size: 0.98rem; color: var(--black); margin-bottom: 10px; letter-spacing: 0.04em; }
.step p { font-size: 0.84rem; color: var(--steel-dark); line-height: 1.5; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* Step detail (interior how-it-works expansion) */
.step-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid #ececec;
  align-items: start;
}
.step-detail:last-child { border-bottom: 0; }
.step-detail .num-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
}
.step-detail h3 { font-size: 1.4rem; color: var(--black); margin-bottom: 10px; letter-spacing: 0.02em; }
.step-detail p { color: var(--steel-dark); font-size: 1rem; margin-bottom: 8px; }
@media (max-width: 600px) { .step-detail { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonials .dots-row {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: 8px;
}
.testimonials .dots-row::before,
.testimonials .dots-row::after {
  content: ''; flex: 0 0 60px; height: 1px; background: var(--red);
}
.testimonials .dots-row span {
  color: var(--red);
  font-family: 'Pacifico', cursive;
  font-size: 1.2rem;
}
.testimonials h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color: var(--black);
  margin-bottom: 40px;
}
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  background: white;
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  border: 1px solid #ececec;
  border-top: 3px solid var(--red);
}
.quote .qmark {
  color: var(--red);
  font-family: 'Anton', sans-serif;
  font-size: 2.4rem;
  line-height: 0.6;
  margin-bottom: 6px;
}
.quote p { color: var(--black); font-size: 0.96rem; font-style: italic; line-height: 1.5; margin-bottom: 14px; }
.quote .stars { color: var(--red); letter-spacing: 0.18em; font-size: 0.92rem; }
.quote .who { color: var(--steel-dark); font-size: 0.8rem; margin-top: 10px; }
.quote .who strong { color: var(--black); display: block; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.about-photo {
  width: 240px; height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 30%, rgba(200,16,46,.2) 0%, transparent 60%),
    var(--black);
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--red);
  margin: 0 auto;
  font-family: 'Anton', sans-serif;
  color: var(--red);
  font-size: 5rem;
}
.about-copy h2 { font-size: 2rem; margin-bottom: 16px; color: var(--black); }
.about-copy p { color: var(--steel-dark); font-size: 1.02rem; margin-bottom: 14px; line-height: 1.6; }
.about-copy .lead-quote {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--black);
  border-left: 4px solid var(--red);
  padding: 12px 0 12px 22px;
  margin: 24px 0;
  line-height: 1.3;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}

/* Audience deep sections (benefits page) */
.audience-section {
  padding: 70px 0;
  border-bottom: 1px solid #ececec;
}
.audience-section:last-child { border-bottom: 0; }
.audience-section.alt { background: var(--cream); }
.audience-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
}
.audience-icon {
  width: 64px; height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.audience-icon svg { width: 30px; height: 30px; stroke: white; fill: none; stroke-width: 2; }
.audience-section h2 { font-size: 2rem; margin-bottom: 14px; color: var(--black); }
.audience-section .lede { color: var(--steel-dark); font-size: 1.05rem; margin-bottom: 22px; max-width: 700px; }
.audience-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; max-width: 800px; }
.audience-list li {
  padding-left: 26px; position: relative;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.5;
}
.audience-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}
@media (max-width: 800px) {
  .audience-grid { grid-template-columns: 1fr; gap: 16px; }
  .audience-list { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-list details {
  border: 1px solid #ececec;
  border-radius: 8px;
  background: white;
  margin-bottom: 12px;
  padding: 0;
  transition: box-shadow .2s ease;
}
.faq-list details[open] { box-shadow: 0 4px 18px rgba(0,0,0,.06); border-color: var(--red); }
.faq-list summary {
  cursor: pointer;
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 18px 22px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  color: var(--red);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > div {
  padding: 0 22px 22px 22px;
  color: var(--steel-dark);
}
.faq-list details > div p { margin-bottom: 10px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-card {
  background: white;
  border-radius: 8px;
  padding: 32px;
  border: 1px solid #ececec;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
}
.contact-card h3 { font-size: 1.2rem; color: var(--black); margin-bottom: 16px; letter-spacing: 0.04em; }
.contact-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .ic {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .ic svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }
.contact-row strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--steel-dark);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-row a, .contact-row span { color: var(--black); font-size: 1.05rem; font-weight: 600; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Form */
form.inquiry { display: grid; gap: 14px; }
form.inquiry label {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--steel-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}
form.inquiry .field input,
form.inquiry .field textarea,
form.inquiry .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  background: white;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--black);
  transition: border-color .15s ease, box-shadow .15s ease;
}
form.inquiry .field input:focus,
form.inquiry .field textarea:focus,
form.inquiry .field select:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.12);
}
form.inquiry .field { display: flex; flex-direction: column; }
form.inquiry .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { form.inquiry .row2 { grid-template-columns: 1fr; } }
form.inquiry textarea { min-height: 120px; resize: vertical; }
form.inquiry .submit-row { display: flex; gap: 12px; align-items: center; margin-top: 8px; }
.form-note { font-size: 0.82rem; color: var(--steel-dark); margin-top: 8px; }

/* Footer */
footer.site {
  background: var(--black);
  color: rgba(255,255,255,.5);
  padding: 32px 0 28px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
footer.site .row {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  align-items: center;
}
footer.site a { color: rgba(255,255,255,.7); }
footer.site a:hover { color: white; }

/* Mobile sticky call bar */
.stick-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--red);
  color: white;
  padding: 12px 16px;
  text-align: center;
  font-family: 'Anton', sans-serif;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}
.stick-bar a { color: white; font-size: 1.05rem; letter-spacing: 0.04em; }
@media (max-width: 700px) {
  .stick-bar { display: block; }
  body { padding-bottom: 56px; }
}

/* CTA banner (interior pages) */
.cta-banner {
  background: var(--red);
  color: white;
  padding: 50px 0;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-bottom: 12px; }
.cta-banner p { font-size: 1.05rem; max-width: 640px; margin: 0 auto 24px; opacity: 0.95; }
.cta-banner .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
