/* ============================================================
   DAZMAC — Car Imports To Australia
   Recreating the exact design system from dazmac.com.au
   ============================================================ */

:root {
  /* CORE PALETTE — pulled from live site */
  --navy-deepest: #061522;
  --navy-deep: #0B1E2E;
  --navy: #102C42;
  --navy-mid: #143A55;
  --teal-deep: #1B4A6B;
  --teal-mid: #2E6E94;
  --teal-light: #4A91B5;

  --button-blue: #6FAEC8;          /* the signature light blue CTA */
  --button-blue-hover: #5A9CB6;

  --accent-red: #D93C2E;           /* eyebrow / chevron / quote tab */
  --accent-red-deep: #B73326;
  --accent-red-hover: #C3382B;

  --ink: #1B2735;
  --ink-mid: #43536B;
  --ink-soft: #6A7889;
  --rule: #E3E6EB;
  --off-white: #F4F5F7;
  --paper: #FFFFFF;

  /* Dark section gradient seen in homepage */
  --dark-grad: linear-gradient(135deg, #0B1E2E 0%, #143A55 55%, #1F587A 100%);
  --dark-grad-flat: linear-gradient(180deg, #0F2335 0%, #143A55 100%);

  /* Typography */
  --display: 'Poppins', system-ui, sans-serif;
  --body: 'Poppins', system-ui, sans-serif;

  /* Radii & shadows */
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 18px;
  --shadow-soft: 0 18px 40px -20px rgba(11,30,46,.18);
  --shadow-card: 0 30px 60px -30px rgba(11,30,46,.35);
}

/* ----- Base ----- */
*,*::before,*::after { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0; padding:0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display:block; max-width:100%; height:auto; }
a { color: inherit; text-decoration: none; }
ul { list-style:none; padding:0; margin:0; }

.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 28px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.container-narrow { max-width: 900px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(8, 22, 35, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(8, 22, 35, 0.92);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo img {
  height: 26px;
  width: auto;
}
.header-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.header-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8EEF5;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.header-nav a:hover { color: var(--button-blue); }
.header-nav a:hover::after {
  content:''; position:absolute; left:0; right:0; bottom:0;
  height: 2px; background: var(--accent-red);
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--teal-deep);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background .2s ease, transform .2s ease;
}
.header-phone:hover { background: var(--teal-mid); transform: translateY(-1px); }
.phone-icon { width: 18px; height: 18px; display: grid; place-items: center; color: #cfe6f0; }
.phone-icon svg { width: 18px; height: 18px; }
.phone-digits { color: rgba(255,255,255,.78); margin-left: 2px; }

/* ============================================================
   FLOATING SIDE "GET A QUOTE" — Dazmac signature
   ============================================================ */
.floating-quote {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 49;
  background: var(--accent-red);
  color: #fff;
  width: 78px;
  padding: 18px 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  border-radius: 4px 0 0 4px;
  box-shadow: -4px 0 16px rgba(0,0,0,.22);
  transition: background .2s ease, transform .2s ease;
}
.floating-quote:hover { background: var(--accent-red-hover); transform: translateY(-50%) translateX(-2px); }
.floating-quote-icon { width: 30px; height: 30px; }
.floating-quote-icon svg { width: 30px; height: 30px; }
.floating-quote-text { writing-mode: vertical-rl; transform: rotate(180deg); margin-top: 4px; line-height: 1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .25s ease;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--button-blue);
  color: #fff;
  box-shadow: 0 14px 28px -14px rgba(111,174,200,.65);
}
.btn-primary:hover { background: var(--button-blue-hover); transform: translateY(-2px); }
.btn-large { padding: 20px 44px; font-size: 14px; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }

/* ============================================================
   SHARED SECTION HEAD: eyebrow + title + red chevron + lead
   ============================================================ */
.section { padding: 110px 0; position: relative; overflow: hidden; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow-light { color: #FF6A5A; }
.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title-light { color: #fff; }
.left-title { text-align: left; }
.chevron-down {
  width: 26px; height: 16px;
  margin: 0 auto 26px;
  position: relative;
}
.chevron-down::before {
  content:''; position:absolute; inset:0;
  background: var(--accent-red);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.chevron-down-light::before { background: var(--accent-red); }
.chevron-down-left { margin-left: 0; margin-right: 0; }
.section-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 720px;
  margin: 0 auto;
}
.section-lead-light { color: #B8C9D6; }
.section-lead-left { text-align: left; margin-left: 0; margin-right: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 90px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: brightness(.82);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    /* subtle bottom grounding for the meta bar / bullets */
    linear-gradient(180deg, rgba(6,21,34,0) 50%, rgba(6,21,34,.15) 72%, rgba(6,21,34,.5) 100%),
    /* opaque on the left for text legibility, fading to clear on the right so the image shows through */
    linear-gradient(100deg, rgba(6,21,34,.88) 0%, rgba(6,21,34,.72) 30%, rgba(6,21,34,.42) 52%, rgba(6,21,34,.12) 70%, rgba(6,21,34,0) 82%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .12 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: .35;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: #FF7B6C;
  font-weight: 600;
  margin-bottom: 22px;
  padding-left: 32px;
  position: relative;
}
.hero-eyebrow::before {
  content:''; position:absolute; left:0; top:50%;
  width: 22px; height: 2px;
  background: var(--accent-red);
  transform: translateY(-50%);
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 22px;
  letter-spacing: -0.018em;
  max-width: 940px;
}
.hero-title-accent { color: #8FCCE5; font-weight: 400; font-style: italic; }
.hero-tag {
  font-size: 19px;
  color: #C8DEEC;
  margin: 0 0 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  max-width: 620px;
  margin: 0 0 26px;
}
.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  max-width: 680px;
  margin-bottom: 38px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15.5px;
  color: rgba(255,255,255,.94);
}
.bullet-arrow {
  color: var(--accent-red);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding: 22px 36px;
  background: rgba(11,30,46,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(143,204,229,0.18);
  border-radius: 4px;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.hero-meta-num {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-family: var(--display);
}
.hero-meta-label {
  font-size: 11.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-meta-divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,.18);
}

/* ============================================================
   INTRO / WHY TRUST DAZMAC
   ============================================================ */
.section-intro {
  background: var(--paper);
  padding-top: 130px;
  position: relative;
}
.section-intro::before {
  content:'';
  position: absolute;
  top: 60px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(111,174,200,.10), transparent 70%);
  border-radius: 50%;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.trust-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.trust-image img {
  width: 100%; height: 540px; object-fit: cover;
}
.trust-image::before {
  content:'';
  position: absolute;
  top: -14px; left: -14px;
  width: 80px; height: 80px;
  border-top: 4px solid var(--accent-red);
  border-left: 4px solid var(--accent-red);
  z-index: 2;
}
.trust-image::after {
  content:'';
  position: absolute;
  bottom: -14px; right: -14px;
  width: 80px; height: 80px;
  border-bottom: 4px solid var(--button-blue);
  border-right: 4px solid var(--button-blue);
}
.trust-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  padding: 18px 22px;
  background: var(--accent-red);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 4px;
  box-shadow: 0 16px 30px -12px rgba(217,60,46,.55);
}
.trust-badge-num {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
.trust-badge-num span { font-size: 26px; vertical-align: top; }
.trust-badge-text {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  line-height: 1.3;
  border-left: 1px solid rgba(255,255,255,.35);
  padding-left: 14px;
}
.trust-list-label {
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--accent-red);
  font-weight: 600;
  margin-bottom: 24px;
}
.check-list {
  display: flex; flex-direction: column; gap: 22px;
}
.check-list li {
  display: flex; align-items: flex-start; gap: 18px;
}
.check-bullet {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--button-blue);
  position: relative;
  margin-top: 2px;
  box-shadow: 0 0 0 4px rgba(111,174,200,.16);
}
.check-bullet::before {
  content:'';
  position: absolute;
  left: 50%; top: 46%;
  width: 6px; height: 11px;
  border-right: 2.4px solid #fff;
  border-bottom: 2.4px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.check-list h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
}
.check-list p {
  margin: 0;
  color: var(--ink-mid);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ============================================================
   ORIGINS
   ============================================================ */
.section-dark {
  background: var(--dark-grad);
  color: #fff;
  padding-bottom: 180px;
}
.section-dark::before {
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background:
    radial-gradient(ellipse at top, rgba(74,145,181,.22), transparent 60%);
}
.dark-section-curve {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--paper);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 50%);
}
.section-origins .container { position: relative; z-index: 3; }
.origins-shape {
  position: absolute;
  top: 10%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(74,145,181,.18), transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
}
.section-head-light .section-title { color: #fff; }

.origins-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}
.origin-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  grid-column: span 3;
  display: block;
  cursor: pointer;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.7,.3,1.1), box-shadow .3s ease;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
}
.origin-card-large { grid-column: span 6; grid-row: span 2; }
.origin-card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -25px rgba(0,0,0,.7); }
.origin-card-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}
.origin-card:hover .origin-card-image { transform: scale(1.05); }
.origin-card-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,21,34,.92) 0%, rgba(6,21,34,.55) 40%, rgba(6,21,34,0) 70%);
}
.origin-card-body {
  position: absolute;
  left: 0; right: 0; top: 0;
  padding: 28px 30px;
  color: #fff;
  z-index: 2;
}
.origin-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.origin-card-large h3 { font-size: 38px; max-width: 540px; }
.origin-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  max-width: 460px;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.origin-card-large p { font-size: 16px; max-width: 640px; }

/* ============================================================
   PROCESS
   ============================================================ */
.section-process {
  background: linear-gradient(180deg, var(--paper) 0%, var(--off-white) 100%);
  padding-top: 130px;
}
.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr;
  gap: 90px;
  align-items: flex-start;
}
.process-intro { position: sticky; top: 100px; }
.process-intro .eyebrow { margin-top: 0; }
.process-intro .section-title { font-size: clamp(30px, 3.6vw, 44px); }
.process-intro .section-lead-left {
  font-size: 16px;
  color: var(--ink-mid);
  margin-bottom: 30px;
  line-height: 1.75;
}
.process-intro .btn { margin-bottom: 36px; }
.process-side-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 12px;
}
.process-side-image::after {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,30,46,.6) 100%);
}
.process-side-image img {
  width: 100%; height: 300px; object-fit: cover;
}

.process-steps { position: relative; padding-left: 40px; }
.process-line {
  position: absolute;
  left: 41px;
  top: 50px;
  bottom: 50px;
  width: 3px;
  background: linear-gradient(180deg, var(--button-blue) 0%, rgba(111,174,200,.18) 100%);
  border-radius: 2px;
}
.process-step {
  position: relative;
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  align-items: flex-start;
}
.step-circle {
  flex-shrink: 0;
  width: 86px; height: 86px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--button-blue);
  display: grid; place-items: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--button-blue);
  position: relative;
  z-index: 2;
  font-family: var(--display);
  box-shadow: 0 12px 26px -8px rgba(111,174,200,.4);
  margin-left: -45px;
}
.step-body {
  padding-top: 8px;
}
.step-body h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--ink);
}
.step-body p {
  margin: 0 0 8px;
  color: var(--ink-mid);
  font-size: 15.5px;
  line-height: 1.75;
}
.step-callout {
  margin-top: 12px;
  padding: 14px 18px;
  background: rgba(217,60,46,0.07);
  border-left: 3px solid var(--accent-red);
  color: var(--ink);
  font-size: 14.5px;
  border-radius: 0 4px 4px 0;
}

/* ============================================================
   SCHEMES
   ============================================================ */
.section-schemes {
  background: var(--paper);
}
.schemes-stack {
  display: flex; flex-direction: column; gap: 110px;
}
.scheme-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.scheme-row-reverse .scheme-text { order: 2; }
.scheme-row-reverse .scheme-image { order: 1; }
.scheme-text .scheme-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(111,174,200,.14);
  color: var(--teal-mid);
  border-radius: 3px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 18px;
}
.scheme-text h3 {
  font-size: clamp(28px, 3vw, 38px);
  margin: 0 0 18px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink);
}
.scheme-text p {
  color: var(--ink-mid);
  font-size: 16.5px;
  line-height: 1.75;
  margin: 0 0 22px;
}
.scheme-points {
  display: flex; flex-direction: column; gap: 10px;
}
.scheme-points li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 15px;
}
.scheme-points li::before {
  content:'';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 2px;
  background: var(--accent-red);
}
.scheme-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.scheme-image img {
  width: 100%; height: 460px; object-fit: cover;
  transition: transform .8s ease;
}
.scheme-image:hover img { transform: scale(1.03); }
.scheme-image-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 16px;
  background: rgba(11,30,46,.78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  border-radius: 3px;
  text-transform: uppercase;
}
.scheme-image-right { transform: translateY(20px); }
.scheme-image::before {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,30,46,.4) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   AUDIENCE
   ============================================================ */
.section-audience { padding-bottom: 200px; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}
.audience-card {
  padding: 38px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  position: relative;
}
.audience-card:hover {
  transform: translateY(-6px);
  background: rgba(111,174,200,.08);
  border-color: rgba(111,174,200,.3);
}
.audience-icon {
  width: 60px; height: 60px;
  background: rgba(111,174,200,.18);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--button-blue);
  margin-bottom: 24px;
}
.audience-icon svg { width: 32px; height: 32px; }
.audience-card h4 {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #fff;
}
.audience-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin: 0;
}
.audience-feature {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 380px;
}
.audience-feature img {
  width: 100%; height: 460px; object-fit: cover; object-position: center;
}
.audience-feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,30,46,.96) 0%, rgba(11,30,46,.75) 50%, rgba(11,30,46,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 70px;
  color: #fff;
}
.audience-feature-quote {
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  max-width: 620px;
  margin-bottom: 22px;
  border-left: 3px solid var(--accent-red);
  padding-left: 22px;
}
.audience-feature-attr {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  letter-spacing: 0.02em;
}
.audience-feature-attr strong { color: #fff; font-weight: 600; }

/* ============================================================
   MISTAKES
   ============================================================ */
.section-mistakes {
  background: var(--off-white);
  position: relative;
}
.section-mistakes::before {
  content:'';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.mistakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mistakes-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.mistakes-image img {
  width: 100%; height: 520px; object-fit: cover;
  filter: saturate(.85) contrast(1.05);
}
.mistakes-image-tag {
  position: absolute;
  top: 22px; left: 22px;
  padding: 10px 18px;
  background: var(--accent-red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mistakes-tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
.mistakes-text .eyebrow { margin-top: 0; }
.mistake-list {
  display: flex; flex-direction: column; gap: 14px;
  margin: 28px 0 30px;
}
.mistake-list li {
  display: flex; align-items: center; gap: 16px;
  font-size: 16px;
  color: var(--ink);
  padding: 14px 18px;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}
.x-bullet {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(217,60,46,.12);
  color: var(--accent-red);
  font-weight: 700;
  display: grid; place-items: center;
  font-size: 14px;
}
.mistakes-conclusion {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.mistakes-conclusion em {
  color: var(--accent-red);
  font-style: italic;
  font-weight: 600;
}

/* ============================================================
   SPECIALIST VS BROKER
   ============================================================ */
.section-specialist {
  background: var(--dark-grad);
  color: #fff;
  position: relative;
}
.section-specialist::before {
  content:'';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(111,174,200,.16), transparent 60%);
}
.specialist-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.specialist-text .eyebrow { margin-top: 0; }
.specialist-lead {
  font-size: 18px;
  color: rgba(255,255,255,.84);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 540px;
}
.specialist-lead strong { color: #fff; font-weight: 700; }
.specialist-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.specialist-stat {
  padding: 22px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  transition: background .3s ease;
}
.specialist-stat:hover { background: rgba(111,174,200,.14); }
.specialist-stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--button-blue);
  line-height: 1;
  margin-bottom: 10px;
}
.specialist-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.82);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 500;
}
.specialist-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px -25px rgba(0,0,0,.6);
}
.specialist-image::before {
  content:'';
  position: absolute;
  top: -14px; right: -14px;
  width: 80px; height: 80px;
  border-top: 4px solid var(--accent-red);
  border-right: 4px solid var(--accent-red);
  z-index: 2;
}
.specialist-image::after {
  content:'';
  position: absolute;
  bottom: -14px; left: -14px;
  width: 80px; height: 80px;
  border-bottom: 4px solid var(--button-blue);
  border-left: 4px solid var(--button-blue);
}
.specialist-image img {
  width: 100%; height: 520px; object-fit: cover;
}

/* ============================================================
   MID CTA BAR
   ============================================================ */
.cta-bar {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.cta-bar-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-bar-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,30,46,.85), rgba(11,30,46,.85)),
    radial-gradient(circle at 50% 50%, rgba(111,174,200,.3), transparent 60%);
}
.cta-bar-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
}
.cta-bar-inner .section-title { margin-bottom: 20px; }
.cta-bar-inner p {
  font-size: 16.5px;
  color: rgba(255,255,255,.82);
  margin: 0 0 30px;
  line-height: 1.7;
}

/* ============================================================
   FAQ
   ============================================================ */
.section-faq { background: var(--off-white); }
.faq-list {
  display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 14px -4px rgba(11,30,46,.08);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: box-shadow .3s ease;
}
.faq-item[open] {
  box-shadow: 0 10px 28px -8px rgba(11,30,46,.14);
  border-color: rgba(111,174,200,.5);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content:'+';
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-red);
  color: var(--accent-red);
  display: grid; place-items: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq-item[open] summary::after {
  content:'−';
  background: var(--accent-red);
  color: #fff;
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 28px 24px;
}
.faq-answer p {
  margin: 0;
  color: var(--ink-mid);
  font-size: 15.5px;
  line-height: 1.75;
}

/* ============================================================
   LOCATION
   ============================================================ */
.section-location {
  padding-bottom: 110px;
  background: var(--dark-grad);
}
.section-location + .section-final-cta {
  margin-top: 0;
}
.section-location + .section-final-cta::before {
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(11,30,46,.6), transparent);
  z-index: 1;
}
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 60px;
  align-items: stretch;
}
.location-info {
  display: flex; flex-direction: column; gap: 24px;
}
.location-block .location-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--button-blue);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.location-block p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 16.5px;
  line-height: 1.55;
}
.location-block p a { color: rgba(255,255,255,.92); }
.location-block p a:hover { color: var(--button-blue); }
.office-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 6px;
}
.office-list li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.88);
  font-size: 15.5px;
}
.office-list li span {
  width: 8px; height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  flex-shrink: 0;
}
.location-info .btn { align-self: flex-start; margin-top: 6px; }
.location-map {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.1);
}
.location-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: contrast(1.05) saturate(.95);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.section-final-cta {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
}
.final-cta-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,21,34,.8) 0%, rgba(6,21,34,.92) 100%);
}
.final-cta-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
}
.final-cta-inner .section-title { margin-bottom: 18px; }
.final-cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  margin: 0 0 32px;
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060F18;
  color: rgba(255,255,255,.76);
  padding: 70px 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 18px;
}
.footer-tagline {
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0 0 22px;
  color: rgba(255,255,255,.62);
  max-width: 340px;
}
.footer-social {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s ease, transform .2s ease;
}
.footer-social:hover { background: var(--accent-red); border-color: var(--accent-red); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-list {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-list li {
  font-size: 14px;
  color: rgba(255,255,255,.62);
  line-height: 1.55;
}
.footer-list a { color: rgba(255,255,255,.62); transition: color .2s ease; }
.footer-list a:hover { color: var(--button-blue); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,.48);
  letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .header-nav { display: none; }
  .trust-grid, .scheme-row, .mistakes-grid, .specialist-grid, .location-grid {
    grid-template-columns: 1fr; gap: 50px;
  }
  .process-grid { grid-template-columns: 1fr; gap: 60px; }
  .process-intro { position: static; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .origins-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .origin-card { grid-column: span 1; }
  .origin-card-large { grid-column: span 2; grid-row: span 1; }
  .origin-card-large h3 { font-size: 32px; }
  .scheme-row-reverse .scheme-text { order: 0; }
  .scheme-row-reverse .scheme-image { order: 0; }
  .audience-feature-overlay { padding: 36px 32px; }
  .audience-feature-quote { font-size: 20px; }
  .specialist-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .header-inner { padding: 12px 18px; gap: 12px; }
  .header-logo img { height: 30px; }
  .header-phone { padding: 8px 12px; font-size: 12px; }
  .phone-digits { display: none; }
  .floating-quote { width: 60px; padding: 14px 6px 12px; font-size: 10px; }
  .floating-quote-icon, .floating-quote-icon svg { width: 22px; height: 22px; }

  .hero { padding: 140px 0 200px; min-height: 90vh; }
  .hero-title { font-size: 38px; }
  .hero-bullets { grid-template-columns: 1fr; gap: 8px; }
  .hero-meta { flex-wrap: wrap; gap: 18px; padding: 18px 22px; bottom: 24px; width: calc(100% - 40px); justify-content: center; }
  .hero-meta-divider { display: none; }

  .audience-grid { grid-template-columns: 1fr; }
  .origins-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .origin-card, .origin-card-large { grid-column: span 1; grid-row: span 1; }
  .origin-card-large h3 { font-size: 26px; }
  .specialist-stats { grid-template-columns: 1fr 1fr; }

  .process-line { left: 23px; }
  .step-circle { width: 60px; height: 60px; font-size: 24px; margin-left: -30px; }
  .process-steps { padding-left: 30px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  .trust-image img, .scheme-image img, .mistakes-image img, .specialist-image img { height: 360px; }
  .audience-feature img { height: 380px; }
  .audience-feature-quote { font-size: 17px; }
  .scheme-image-right { transform: none; }
}
