/* Jacaranda Electrical — site styles (from Website Style Guide v1.0) */

@font-face { font-family: "Kalam"; src: url("../fonts/kalam-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/plus-jakarta-sans.woff2") format("woff2"); font-weight: 200 800; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("../fonts/ibm-plex-mono-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }

:root {
  --jacaranda-50: #F7F3FA;
  --jacaranda-100: #EDE6F4;
  --jacaranda-300: #B9A0D6;
  --jacaranda-500: #8A5FB0;
  --jacaranda-700: #64347E;
  --jacaranda-hover: #4E2863;
  --jacaranda-900: #3A1E4A;
  --navy-100: #E8E9EF;
  --navy-200: #D3D5DE;
  --navy-400: #8C91A8;
  --navy-500: #5B6182;
  --navy-700: #3B4470;
  --navy-900: #252D51;
  --white: #FFFFFF;
  --paper: #FAF9F5;
  --cream: #F2F0E8;
  --line: #E4E1D6;
  --stone: #B9BCCB;
  --error: #B42318;
  --error-bg: #FDECEA;

  --font-display: "Kalam", cursive;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --font-eyebrow: Arial, "Helvetica Neue", sans-serif;

  --radius: 8px;
  --radius-card: 12px;
  --control-h: 48px;
  --focus-ring: 0 0 0 3px #D9CCE8;

  --gutter: clamp(20px, 8.3vw, 120px);
  --section-y: clamp(56px, 7.2vw, 104px);
  --max: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
@media (max-width: 640px) { :root { --gutter: 20px; } .contact-list a { font-size: 16px; } }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0; background: var(--paper); color: var(--navy-900);
  font-family: var(--font-sans); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--jacaranda-700); }
a:hover { color: var(--jacaranda-hover); }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--jacaranda-300); border-radius: 4px; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--navy-900); color: var(--cream); padding: 10px 16px; border-radius: var(--radius); text-decoration: none; }
.skip-link:focus { top: 12px; color: var(--cream); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }

/* Type */
.eyebrow { font-family: var(--font-eyebrow); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--jacaranda-700); }
.display { font-family: var(--font-display); font-weight: 700; font-size: clamp(48px, 5.6vw, 72px); line-height: 1.05; }
.display .accent { color: var(--jacaranda-700); }
.hero .display { font-size: clamp(44px, 4.9vw, 72px); }
@media (min-width: 1081px) { .hero .display { margin-right: -48px; } .hero .display span { white-space: nowrap; } }
.h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 3.2vw, 40px); line-height: 1.15; }
.h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2.2vw, 28px); line-height: 1.25; }
.h4 { font-weight: 700; font-size: clamp(18px, 1.5vw, 20px); line-height: 1.4; }
.body-l { font-size: 19px; line-height: 1.6; }
.muted { color: var(--navy-700); }
.mono { font-family: var(--font-mono); font-weight: 500; font-size: 14px; }
.section-head { display: flex; flex-direction: column; gap: 12px; }
.section-head.center { align-items: center; text-align: center; }
.section-head p { max-width: 620px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px; border-radius: var(--radius); border: 2px solid transparent;
  font-weight: 700; font-size: 16px; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn-lg { min-height: 56px; padding: 0 32px; font-size: 18px; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--jacaranda-700); color: var(--white); }
.btn-primary:hover { background: var(--jacaranda-hover); color: var(--white); }
.btn-primary:active { background: var(--jacaranda-900); }
.btn-secondary { border-color: var(--navy-900); color: var(--navy-900); background: transparent; }
.btn-secondary:hover { background: var(--navy-900); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--jacaranda-700); }
.btn-cream:hover { background: var(--white); color: var(--jacaranda-700); }
.btn-cream-outline { border-color: var(--cream); color: var(--cream); }
.btn-cream-outline:hover { background: var(--cream); color: var(--jacaranda-700); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--paper); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 88px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy-900); }
.brand:hover { color: var(--navy-900); }
.brand img { width: 56px; height: 56px; flex: none; }
.brand span { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a:not(.btn) { color: var(--navy-900); text-decoration: none; font-weight: 600; font-size: 16px; }
.main-nav a:not(.btn):hover { color: var(--jacaranda-700); }
.header-mobile { display: none; gap: 4px; }
.icon-btn { width: 48px; height: 48px; border: 0; background: none; border-radius: var(--radius); display: inline-flex; align-items: center; justify-content: center; color: var(--navy-900); cursor: pointer; }
.icon-btn.call { color: var(--jacaranda-700); }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: var(--paper); padding: 8px var(--gutter) 24px; }
.mobile-menu.is-open { display: block; }
.mobile-menu a:not(.btn) { display: flex; align-items: center; min-height: 52px; border-bottom: 1px solid var(--line); color: var(--navy-900); text-decoration: none; font-weight: 600; font-size: 18px; }
.mobile-menu .btn { width: 100%; margin-top: 16px; }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .header-mobile { display: flex; }
  .header-inner { height: 68px; }
  .brand img { width: 44px; height: 44px; }
  .brand span { font-size: 24px; }
}
@media (max-width: 380px) { .brand span { font-size: 21px; } }

/* Hero */
.hero { background: var(--cream); }
.hero-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px; align-items: center; padding-block: 96px 104px; }
.hero-copy { display: flex; flex-direction: column; gap: 28px; }
.hero-copy .body-l { color: var(--navy-700); max-width: 560px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; margin-top: 8px; }
.checks li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 16px; }
.tick { width: 28px; height: 28px; flex: none; border-radius: 50%; background: var(--jacaranda-700); color: var(--white); display: inline-flex; align-items: center; justify-content: center; }
.tick svg { width: 16px; height: 16px; }
.hero-media { position: relative; height: 560px; }
.bloom { position: absolute; border-radius: 50%; }
.bloom-1 { top: -28px; right: -36px; width: 180px; height: 180px; background: var(--jacaranda-300); }
.bloom-2 { top: 60px; right: -56px; width: 64px; height: 64px; background: var(--jacaranda-500); }
.bloom-3 { bottom: -24px; left: 80px; width: 96px; height: 96px; background: var(--jacaranda-300); }
.photo { position: relative; overflow: hidden; border-radius: var(--radius-card); background: var(--line); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo picture { display: block; width: 100%; height: 100%; }
.hero-media .photo { position: absolute; inset: 0; }
.hero-media .photo img { object-position: center 40%; }
.float-card { position: absolute; left: -40px; bottom: 48px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 20px 24px; display: flex; align-items: center; gap: 16px; box-shadow: 0 12px 32px rgba(37, 45, 81, .12); }
.float-card b { display: block; font-size: 18px; line-height: 1.3; }
.float-card span { font-weight: 500; font-size: 14px; color: var(--navy-500); }
.icon-tile { width: 56px; height: 56px; flex: none; border-radius: var(--radius-card); background: var(--jacaranda-100); color: var(--jacaranda-700); display: inline-flex; align-items: center; justify-content: center; }
.icon-tile svg { width: 28px; height: 28px; }
.float-card .icon-tile { width: 48px; height: 48px; }
.float-card .icon-tile svg { width: 26px; height: 26px; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-block: 48px 64px; }
  .hero-media { height: auto; aspect-ratio: 4 / 3.4; max-width: 720px; }
  .bloom-2, .bloom-3 { display: none; }
  .bloom-1 { width: 110px; height: 110px; top: -18px; right: -12px; }
  .float-card { left: 16px; bottom: 16px; }
}
@media (max-width: 640px) {
  .hero-copy { gap: 22px; }
  .hero-copy .btn-row .btn { width: 100%; }
  .checks { grid-template-columns: 1fr; gap: 12px; }
  .hero-media { aspect-ratio: 350 / 380; }
  .hero-media .photo img { object-position: center 40%; }
  .float-card { display: none; }
}

/* Cards */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); }
.lift { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.lift:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(37, 45, 81, .12); border-color: var(--jacaranda-300); }

/* Who we work with */
.audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; margin-top: 48px; }
.audience-card { padding: 40px; display: flex; flex-direction: column; gap: 16px; }
.audience-card p { color: var(--navy-700); }
.text-link { font-weight: 700; font-size: 16px; text-decoration: none; }
@media (max-width: 860px) { .audience-grid { grid-template-columns: 1fr; gap: 20px; } .audience-card { padding: 28px; } }
@media (max-width: 640px) { .audience { display: none; } }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 48px; }
.service-card { padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.dot-list { display: flex; flex-direction: column; gap: 8px; color: var(--navy-700); }
.dot-list li { display: flex; align-items: center; gap: 10px; }
.dot-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--jacaranda-500); flex: none; }
.alarm-callout { margin-top: 48px; background: var(--jacaranda-100); color: var(--jacaranda-900); border-radius: var(--radius-card); padding: 28px 32px; display: flex; align-items: center; gap: 24px; }
.alarm-callout .round { width: 56px; height: 56px; flex: none; border-radius: 50%; background: var(--jacaranda-700); color: var(--white); display: inline-flex; align-items: center; justify-content: center; }
.alarm-callout .round svg { width: 28px; height: 28px; }
.alarm-callout > div { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.alarm-callout .btn { flex: none; }
@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
  .service-card { padding: 22px 24px; gap: 12px; }
  .service-card .icon-tile { width: 48px; height: 48px; }
  .service-card .icon-tile svg { width: 24px; height: 24px; }
  .alarm-callout { flex-direction: column; align-items: stretch; padding: 24px; gap: 14px; margin-top: 24px; }
  .alarm-callout .round { display: none; }
}

/* Meet Jack */
.meet-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px; align-items: center; }
.meet-media { position: relative; height: 540px; }
.meet-media .bloom { top: -24px; left: -32px; width: 120px; height: 120px; background: var(--jacaranda-300); }
.meet-media .photo { position: absolute; inset: 0; }
.meet-media .photo img { object-position: center 40%; }
.photo-tag { position: absolute; left: 16px; bottom: 16px; padding: 8px 14px; border-radius: 999px; background: var(--white); color: var(--navy-900); font-weight: 600; font-size: 14px; line-height: 1.5; }
.meet-copy { display: flex; flex-direction: column; gap: 20px; }
.meet-copy p { color: var(--navy-700); }
.creds { margin-top: 8px; padding: 24px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.creds div { display: flex; flex-direction: column; gap: 4px; }
.creds span:first-child { font-weight: 600; font-size: 14px; color: var(--navy-500); }
@media (max-width: 1080px) {
  .meet-grid { grid-template-columns: 1fr; gap: 32px; }
  .meet-media { height: auto; aspect-ratio: 4 / 3.6; max-width: 720px; }
  .meet-media .bloom { display: none; }
}
@media (max-width: 640px) { .meet-media { aspect-ratio: 350 / 300; } .creds { grid-template-columns: 1fr; padding: 20px; } }

/* How it works — animated line */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding-top: 4px; margin-top: 40px; }
.steps-track { position: absolute; left: 28px; right: calc((100% - 48px) / 3 - 28px); top: 31px; height: 2px; background: var(--navy-200); border-radius: 2px; }
.steps-fill { position: absolute; inset: -1px 0; background: var(--jacaranda-700); border-radius: 2px; transform-origin: left center; animation: je-line 6.5s ease-in-out infinite both; }
.steps-spark { position: absolute; top: 50%; left: 0; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: var(--jacaranda-300); box-shadow: 0 0 0 5px rgba(185, 160, 214, .35), 0 0 16px 4px rgba(185, 160, 214, .7); animation: je-spark 6.5s ease-in-out infinite both; }
.step { position: relative; display: flex; flex-direction: column; gap: 12px; }
.step-node { position: relative; z-index: 1; width: 56px; height: 56px; flex: none; border-radius: 50%; border: 2px solid var(--jacaranda-700); background: var(--white); color: var(--jacaranda-700); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1; animation: 6.5s ease-in-out infinite both; }
.step:nth-child(2) .step-node { animation-name: je-node1; }
.step:nth-child(3) .step-node { animation-name: je-node2; }
.step:nth-child(4) .step-node { animation-name: je-node3; }
.step .h4 { margin-top: 16px; }
.step p { color: var(--navy-700); max-width: 320px; }
.step-seg { display: none; }

@keyframes je-line { 0% { transform: scaleX(0); opacity: 1; } 45% { transform: scaleX(1); opacity: 1; } 86% { transform: scaleX(1); opacity: 1; } 95% { transform: scaleX(1); opacity: 0; } 100% { transform: scaleX(0); opacity: 0; } }
@keyframes je-spark { 0% { left: 0; opacity: 1; } 45% { left: 100%; opacity: 1; } 50%, 100% { left: 100%; opacity: 0; } }
@keyframes je-node1 { 0%, 1% { background: #FFF; color: #64347E; transform: scale(1); } 5% { background: #64347E; color: #FFF; transform: scale(1.14); } 9%, 86% { background: #64347E; color: #FFF; transform: scale(1); } 95%, 100% { background: #FFF; color: #64347E; transform: scale(1); } }
@keyframes je-node2 { 0%, 21% { background: #FFF; color: #64347E; transform: scale(1); } 25% { background: #64347E; color: #FFF; transform: scale(1.14); } 29%, 86% { background: #64347E; color: #FFF; transform: scale(1); } 95%, 100% { background: #FFF; color: #64347E; transform: scale(1); } }
@keyframes je-node3 { 0%, 43% { background: #FFF; color: #64347E; transform: scale(1); } 47% { background: #64347E; color: #FFF; transform: scale(1.14); box-shadow: 0 0 0 10px rgba(185, 160, 214, .45); } 53%, 86% { background: #64347E; color: #FFF; transform: scale(1); box-shadow: 0 0 0 0 rgba(185, 160, 214, 0); } 95%, 100% { background: #FFF; color: #64347E; transform: scale(1); } }
@keyframes je-seg1 { 0%, 1% { transform: scaleY(0); opacity: 1; } 22% { transform: scaleY(1); opacity: 1; } 86% { transform: scaleY(1); opacity: 1; } 95% { opacity: 0; } 100% { transform: scaleY(0); opacity: 0; } }
@keyframes je-seg2 { 0%, 23% { transform: scaleY(0); opacity: 1; } 44% { transform: scaleY(1); opacity: 1; } 86% { transform: scaleY(1); opacity: 1; } 95% { opacity: 0; } 100% { transform: scaleY(0); opacity: 0; } }

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 0; margin-top: 24px; }
  .steps-track { display: none; }
  .step { flex-direction: row; gap: 18px; padding-bottom: 28px; }
  .step:last-child { padding-bottom: 0; }
  .step-node { width: 48px; height: 48px; font-size: 24px; }
  .step .h4 { margin-top: 0; }
  .step-text { padding-top: 8px; display: flex; flex-direction: column; gap: 4px; }
  .step p { font-size: 16px; }
  .step-seg { display: block; position: absolute; left: 23px; top: 48px; bottom: -4px; width: 2px; background: var(--navy-200); }
  .step-seg i { position: absolute; inset: 0 -1px; background: var(--jacaranda-700); transform-origin: top center; animation: je-seg1 6.5s ease-in-out infinite both; }
  .step:nth-child(3) .step-seg i { animation-name: je-seg2; }
}
@media (min-width: 761px) { .step-text { display: contents; } }

/* Service areas */
.areas-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px; align-items: start; margin-top: 88px; }
.areas-grid .section-head p { color: var(--navy-700); }
.chips { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 40px; }
.chips li { padding: 10px 18px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-weight: 600; font-size: 16px; }
.chips li.more { background: var(--navy-900); border-color: var(--navy-900); color: var(--cream); }
@media (max-width: 860px) {
  .areas-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 56px; }
  .chips { padding-top: 0; gap: 8px; }
  .chips li { padding: 8px 14px; font-size: 15px; }
}

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 4fr 7fr; gap: 72px; align-items: start; }
.faq-grid .section-head p { color: var(--navy-700); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-q { width: 100%; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; background: none; border: 0; cursor: pointer; text-align: left; font-weight: 700; font-size: clamp(18px, 1.5vw, 20px); line-height: 1.4; color: var(--navy-900); }
.faq-q svg { width: 22px; height: 22px; flex: none; color: var(--jacaranda-700); transition: transform .2s; }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-a { padding: 0 48px 24px 0; color: var(--navy-700); }
.faq-a[hidden] { display: none; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 24px; } .faq-a { padding-right: 0; font-size: 16px; } .faq-q { min-height: 64px; } }

/* Quote */
.quote-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: start; }
.quote-info { display: flex; flex-direction: column; gap: 20px; }
.quote-info > p { color: var(--navy-700); }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-top: 12px; }
.contact-list a, .contact-list div { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--navy-900); font-weight: 700; font-size: 18px; overflow-wrap: anywhere; }
.contact-list div { font-weight: 600; font-size: 16px; color: var(--navy-700); }
.contact-list .round { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--white); border: 1px solid var(--line); color: var(--jacaranda-700); display: inline-flex; align-items: center; justify-content: center; }
.contact-list .round svg { width: 20px; height: 20px; }
.quote-form { padding: 40px; display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label, .field legend { font-weight: 600; font-size: 14px; }
.field .opt { font-weight: 500; color: var(--navy-500); }
.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field select, .field textarea {
  width: 100%; min-height: var(--control-h); padding: 0 16px; border: 1px solid var(--stone); border-radius: var(--radius);
  background: var(--white); color: var(--navy-900); font-size: 17px;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23252D51' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.field textarea { padding: 12px 16px; line-height: 1.6; resize: vertical; min-height: 120px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--navy-500); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--jacaranda-700); box-shadow: var(--focus-ring); }
.field input::placeholder, .field textarea::placeholder { color: var(--navy-400); }
.field [aria-invalid="true"] { border-color: var(--error); }
.field-error { color: var(--error); font-size: 14px; font-weight: 500; }
.field-error:empty { display: none; }
fieldset.field { border: 0; margin: 0; padding: 0; min-width: 0; }
.radios { display: flex; gap: 28px; }
.radios label, .check { display: flex; align-items: center; gap: 10px; min-height: 44px; cursor: pointer; font-weight: 400; font-size: 17px; }
.radios input, .check input { width: 20px; height: 20px; margin: 0; accent-color: var(--jacaranda-700); flex: none; }
.check { font-size: 16px; }
.quote-form .btn { min-height: 56px; font-size: 18px; }
.hidden { display: none; }
@media (max-width: 1080px) { .quote-grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 640px) {
  .quote-form { padding: 24px 20px; gap: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
}

/* CTA banner */
.cta { background: var(--jacaranda-700); color: var(--cream); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; padding-block: 80px; }
.cta-inner > div:first-child { display: flex; flex-direction: column; gap: 10px; }
.cta .btn-row { flex: none; }
@media (max-width: 960px) {
  .cta-inner { flex-direction: column; align-items: stretch; gap: 24px; padding-block: 48px; }
  .cta .btn-row { flex-direction: column; }
  .cta .btn { width: 100%; }
}

/* Footer */
.site-footer { background: var(--navy-900); color: var(--cream); padding-block: 72px 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .brand { color: var(--cream); }
.footer-brand .brand img { width: 52px; height: 52px; }
.footer-brand p { color: var(--navy-200); max-width: 340px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col .eyebrow { color: var(--jacaranda-300); }
.footer-col a { color: var(--cream); text-decoration: none; font-size: 16px; overflow-wrap: anywhere; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-base { margin-top: 48px; border-top: 1px solid var(--navy-700); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px 24px; flex-wrap: wrap; font-size: 14px; color: var(--navy-200); }
.footer-base a { color: var(--navy-200); }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } .site-footer { padding-block: 48px 40px; } .footer-base { flex-direction: column; align-items: flex-start; } }

/* Simple content pages (thanks, privacy, 404) */
@media (max-width: 560px) { .header-call .call-text { display: none; } .header-call { padding: 0 12px; } }
.page { padding-block: clamp(56px, 8vw, 120px); }
.page-inner { max-width: 720px; display: flex; flex-direction: column; gap: 20px; }
.page-inner p, .page-inner li { color: var(--navy-700); }
.page-inner h2 { font-weight: 700; font-size: 20px; line-height: 1.4; margin-top: 12px; color: var(--navy-900); }
.page-inner ul { list-style: disc; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lift, .lift:hover { transition: none; transform: none; }
  .steps-fill, .step-seg i { animation: none; transform: none; }
  .steps-spark { display: none; }
  .step-node { animation: none !important; background: var(--jacaranda-700); color: var(--white); }
}
