
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --accent:#db504a;
  --accent-dark:#ba3d38;
  --accent-soft:#fff0ee;
  --accent-faint:#fff7f5;

  --ink:#0e141b;
  --ink-2:#18212b;
  --ink-3:#26313c;

  --paper:#f5f3ef;
  --paper-2:#eeeae4;
  --surface:#ffffff;
  --surface-2:#fbfaf8;

  --text:#1d2731;
  --muted:#66727e;
  --muted-2:#8a949e;
  --line:#dedad3;
  --line-dark:rgba(255,255,255,.12);

  --success:#1a724c;
  --warning:#8a5a00;

  --radius-sm:12px;
  --radius-md:20px;
  --radius-lg:30px;
  --radius-xl:38px;

  --shadow-sm:0 8px 24px rgba(14,20,27,.07);
  --shadow-md:0 20px 55px rgba(14,20,27,.11);
  --shadow-lg:0 34px 90px rgba(14,20,27,.15);

  --container:1180px;
}

*,
*::before,
*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(219,80,74,.055), transparent 24rem),
    linear-gradient(180deg,#f8f7f4 0%,var(--paper) 46%,#f1eee9 100%);
  font-family:"Manrope",Arial,sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

body.menu-open{overflow:hidden}

img{max-width:100%;display:block}

a{color:inherit;text-decoration:none}

button,
input,
select,
textarea{font:inherit}

button,
a{-webkit-tap-highlight-color:transparent}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:3px solid rgba(219,80,74,.24);
  outline-offset:3px;
}

.container{
  width:min(100% - 40px,var(--container));
  margin-inline:auto;
}

.skip-link{
  position:fixed;
  top:12px;
  left:12px;
  z-index:3000;
  transform:translateY(-170%);
  padding:10px 14px;
  border-radius:10px;
  background:#fff;
  box-shadow:var(--shadow-sm);
  font-weight:800;
}
.skip-link:focus{transform:none}

/* Header */
.topline{
  background:#0a0f15;
  color:#dfe4e8;
  font-size:11px;
  font-weight:700;
  letter-spacing:.01em;
}
.topline__inner{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.topline a{color:#fff}
.topline a:hover{color:#ffc4c0}

.site-header{
  position:sticky;
  top:0;
  z-index:900;
  background:rgba(248,247,244,.88);
  border-bottom:1px solid rgba(14,20,27,.075);
  backdrop-filter:blur(18px) saturate(130%);
  -webkit-backdrop-filter:blur(18px) saturate(130%);
}
.header__inner{
  min-height:82px;
  display:flex;
  align-items:center;
  gap:28px;
}
.brand{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}
.brand__full{
  width:188px;
  height:54px;
  object-fit:contain;
}
.brand__mark{
  display:none;
  width:52px;
  height:46px;
  object-fit:contain;
}
.desktop-nav{
  display:flex;
  align-items:center;
  gap:6px;
  margin-left:auto;
  padding:5px;
  border:1px solid rgba(14,20,27,.07);
  border-radius:999px;
  background:rgba(255,255,255,.58);
}
.desktop-nav a{
  padding:10px 14px;
  border-radius:999px;
  color:#48545f;
  font-size:12px;
  font-weight:800;
  transition:.2s ease;
}
.desktop-nav a:hover,
.desktop-nav a.is-active{
  color:var(--ink);
  background:#fff;
  box-shadow:0 6px 18px rgba(14,20,27,.07);
}
.header-actions{
  display:flex;
  gap:9px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 19px;
  border:1px solid transparent;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease,
    background .2s ease,
    color .2s ease;
}
.button:hover{
  transform:translateY(-2px);
}
.button:active{transform:translateY(0)}
.button:disabled{
  opacity:.58;
  cursor:wait;
  transform:none;
}
.button--primary{
  color:#fff;
  background:linear-gradient(135deg,var(--accent),#e8615b);
  box-shadow:0 12px 28px rgba(219,80,74,.28);
}
.button--primary:hover{
  background:linear-gradient(135deg,var(--accent-dark),var(--accent));
  box-shadow:0 16px 34px rgba(219,80,74,.34);
}
.button--dark{
  color:#fff;
  background:linear-gradient(135deg,var(--ink),var(--ink-2));
  box-shadow:0 12px 26px rgba(14,20,27,.2);
}
.button--dark:hover{
  background:linear-gradient(135deg,#05090d,#19242f);
  box-shadow:0 16px 34px rgba(14,20,27,.26);
}
.button--light{
  color:var(--ink);
  background:#fff;
  border-color:rgba(255,255,255,.7);
  box-shadow:0 10px 24px rgba(14,20,27,.09);
}
.button--quiet{
  color:var(--ink);
  background:rgba(255,255,255,.68);
  border-color:rgba(14,20,27,.12);
}
.button--quiet:hover{
  border-color:rgba(14,20,27,.22);
  background:#fff;
}
.button--large{
  min-height:56px;
  padding-inline:25px;
  font-size:14px;
}
.button--full{width:100%}

.menu-button{
  display:none;
  width:46px;
  height:46px;
  margin-left:auto;
  padding:0;
  border:0;
  border-radius:50%;
  background:var(--ink);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  box-shadow:0 10px 24px rgba(14,20,27,.18);
}
.menu-button span{
  width:20px;
  height:2px;
  border-radius:2px;
  background:#fff;
}
.mobile-menu{
  padding:10px 18px 18px;
  border-top:1px solid var(--line);
  background:rgba(248,247,244,.98);
}
.mobile-menu a{
  display:block;
  padding:14px 8px;
  border-bottom:1px solid var(--line);
  font-size:14px;
  font-weight:800;
}
.mobile-menu a.is-active{color:var(--accent)}

/* Typography */
.eyebrow,
.kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--accent);
  font-size:10px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:currentColor;
  box-shadow:0 0 0 6px rgba(219,80,74,.12);
}
.kicker{
  padding:7px 10px;
  border-radius:999px;
  background:var(--accent-soft);
  letter-spacing:.1em;
}

/* Hero */
.hero{padding:34px 0 30px}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(350px,.68fr);
  gap:20px;
  align-items:stretch;
}
.hero-main{
  min-height:610px;
  padding:clamp(38px,5vw,70px);
  border-radius:var(--radius-xl);
  overflow:hidden;
  position:relative;
  color:#fff;
  background:
    radial-gradient(circle at 86% 10%,rgba(219,80,74,.42),transparent 28rem),
    radial-gradient(circle at 15% 85%,rgba(255,255,255,.055),transparent 23rem),
    linear-gradient(140deg,#0b1117 0%,#17212b 54%,#202c37 100%);
  box-shadow:var(--shadow-lg);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-main::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.42;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to bottom right,transparent 5%,#000 55%,transparent 100%);
}
.hero-main::after{
  content:"";
  position:absolute;
  right:-170px;
  bottom:-210px;
  width:500px;
  height:500px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:50%;
  box-shadow:
    0 0 0 72px rgba(255,255,255,.028),
    0 0 0 144px rgba(255,255,255,.014);
}
.hero-main>*{position:relative;z-index:1}
.hero-main .eyebrow{color:#ffc6c2}
.hero h1,
.page-hero h1{
  margin:22px 0 18px;
  font-size:clamp(46px,6.2vw,78px);
  line-height:.97;
  letter-spacing:-.06em;
}
.hero-main p{
  max-width:690px;
  margin:0;
  color:#c5ced6;
  font-size:18px;
  line-height:1.7;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:31px;
}
.hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:42px;
}
.hero-points div{
  padding:16px 14px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:16px;
  background:rgba(255,255,255,.035);
  backdrop-filter:blur(4px);
}
.hero-points strong,
.hero-points span{display:block}
.hero-points strong{
  font-size:15px;
  color:#fff;
}
.hero-points span{
  margin-top:4px;
  color:#9da8b3;
  font-size:10px;
  line-height:1.45;
}
.hero-side{
  display:grid;
  gap:16px;
}
.quick-card{
  padding:30px;
  border:1px solid rgba(14,20,27,.085);
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.86);
  box-shadow:var(--shadow-md);
  backdrop-filter:blur(10px);
}
.quick-card--accent{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 100% 0%,rgba(255,255,255,.16),transparent 15rem),
    linear-gradient(145deg,var(--accent),#c8443e);
  border-color:transparent;
}
.quick-card--accent::after{
  content:"";
  position:absolute;
  right:-70px;
  bottom:-90px;
  width:220px;
  height:220px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
}
.quick-card>*{position:relative;z-index:1}
.quick-card h2{
  margin:14px 0 12px;
  font-size:30px;
  line-height:1.04;
  letter-spacing:-.045em;
}
.quick-card p{
  margin:0 0 23px;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}
.quick-card--accent p{color:rgba(255,255,255,.82)}
.quick-card--accent .eyebrow{color:#fff}
.quick-list{
  display:grid;
  gap:10px;
  margin:20px 0 24px;
}
.quick-list div{
  display:grid;
  grid-template-columns:36px 1fr;
  gap:11px;
  align-items:center;
  padding:10px;
  border-radius:12px;
  background:var(--surface-2);
}
.quick-list span{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:var(--accent-soft);
  color:var(--accent);
  font-size:12px;
  font-weight:800;
}
.quick-list strong{
  font-size:12px;
}

/* Trust bar */
.trustbar{padding:22px 0}
.trustbar__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.62);
  box-shadow:var(--shadow-sm);
}
.trustbar__grid span{
  position:relative;
  padding:18px 14px 18px 38px;
  color:#46525d;
  font-size:11px;
  font-weight:800;
  text-align:center;
}
.trustbar__grid span::before{
  content:"✓";
  position:absolute;
  left:17px;
  top:50%;
  transform:translateY(-50%);
  width:17px;
  height:17px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:var(--accent);
  font-size:10px;
}
.trustbar__grid span+span{border-left:1px solid var(--line)}

/* Sections */
.section{padding:86px 0}
.section--dark{
  color:#fff;
  background:
    radial-gradient(circle at 10% 30%,rgba(219,80,74,.11),transparent 22rem),
    linear-gradient(145deg,#0b1117,#17212b);
}
.section--soft{
  background:
    radial-gradient(circle at 90% 20%,rgba(219,80,74,.06),transparent 24rem),
    #ebe7e0;
}
.section-head{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(270px,.48fr);
  gap:36px;
  align-items:end;
  margin-bottom:35px;
}
.section-head h2,
.split-copy h2,
.cta-box h2{
  margin:13px 0 0;
  font-size:clamp(34px,5vw,54px);
  line-height:1.03;
  letter-spacing:-.05em;
}
.section-head>p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
}
.section--dark .section-head>p{color:#aeb8c1}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.info-card{
  min-height:260px;
  padding:26px;
  border:1px solid rgba(14,20,27,.085);
  border-radius:var(--radius-md);
  background:rgba(255,255,255,.72);
  box-shadow:0 12px 32px rgba(14,20,27,.055);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.info-card:hover{
  transform:translateY(-5px);
  box-shadow:0 24px 48px rgba(14,20,27,.11);
  border-color:rgba(219,80,74,.24);
}
.info-card--accent{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 100% 0%,rgba(255,255,255,.15),transparent 17rem),
    linear-gradient(145deg,var(--accent),#c6423c);
  border-color:transparent;
  box-shadow:0 20px 48px rgba(219,80,74,.22);
}
.info-card--accent::after{
  content:"";
  position:absolute;
  right:-70px;
  bottom:-80px;
  width:200px;
  height:200px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
}
.info-card>*{position:relative;z-index:1}
.info-card__number{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:var(--accent-soft);
  color:var(--accent);
  font-size:11px;
  font-weight:800;
}
.info-card--accent .info-card__number{
  color:#fff;
  background:rgba(255,255,255,.16);
}
.info-card h3{
  margin:0 0 9px;
  font-size:21px;
  line-height:1.2;
  letter-spacing:-.03em;
}
.info-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}
.info-card--accent p{color:rgba(255,255,255,.82)}
.text-link{
  color:var(--accent);
  font-size:12px;
  font-weight:800;
}
.text-link:hover{text-decoration:underline}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.step{
  min-height:250px;
  padding:24px;
  border:1px solid rgba(255,255,255,.095);
  border-radius:var(--radius-md);
  background:rgba(255,255,255,.035);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
  transition:.22s ease;
}
.step:hover{
  background:rgba(255,255,255,.06);
  transform:translateY(-4px);
}
.step>span{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  margin-bottom:52px;
  border-radius:14px;
  color:#fff;
  background:linear-gradient(135deg,var(--accent),#ed6b65);
  box-shadow:0 10px 22px rgba(219,80,74,.22);
  font-size:12px;
  font-weight:800;
}
.step h3{
  margin:0 0 8px;
  font-size:19px;
}
.step p{
  margin:0;
  color:#a9b4bd;
  font-size:12px;
  line-height:1.7;
}

/* Split blocks */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  align-items:stretch;
}
.split-copy,
.split-visual{
  min-height:470px;
  padding:38px;
  border-radius:var(--radius-lg);
}
.split-copy{
  border:1px solid var(--line);
  background:rgba(255,255,255,.78);
  box-shadow:var(--shadow-sm);
}
.split-copy p{
  color:var(--muted);
  line-height:1.8;
}
.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:26px;
}
.tag-row span{
  padding:9px 12px;
  border:1px solid rgba(14,20,27,.06);
  border-radius:999px;
  background:#f2efea;
  font-size:10px;
  font-weight:800;
}
.split-visual{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 76% 22%,rgba(219,80,74,.28),transparent 15rem),
    linear-gradient(145deg,#111821,#202b36);
  box-shadow:var(--shadow-md);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.split-visual::before,
.split-visual::after{
  content:"";
  position:absolute;
  border:1px solid rgba(219,80,74,.58);
  border-radius:50%;
}
.split-visual::before{
  width:430px;
  height:430px;
  right:-80px;
  top:-120px;
}
.split-visual::after{
  width:250px;
  height:250px;
  right:10px;
  top:-25px;
  border-style:dashed;
}
.location-dot{
  position:absolute;
  right:102px;
  top:128px;
  width:138px;
  padding:17px;
  border:1px solid rgba(255,255,255,.72);
  border-radius:18px;
  background:rgba(255,255,255,.94);
  color:var(--ink);
  box-shadow:var(--shadow-lg);
  text-align:center;
}
.location-dot img{
  width:50px;
  margin:0 auto;
}
.location-dot strong,
.location-dot span{display:block}
.location-dot strong{margin-top:5px}
.location-dot span{
  color:var(--muted);
  font-size:10px;
}
.split-visual p{
  position:relative;
  z-index:1;
  margin:0;
  color:#bbc4cc;
  font-size:13px;
}

/* Internal page hero */
.page-hero{
  position:relative;
  overflow:hidden;
  padding:74px 0 62px;
  color:#fff;
  background:
    radial-gradient(circle at 82% 12%,rgba(219,80,74,.35),transparent 28rem),
    linear-gradient(145deg,#0b1117,#1d2833);
}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.24;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:44px 44px;
}
.page-hero>.container{position:relative;z-index:1}
.page-hero h1{
  max-width:860px;
  margin:18px 0 16px;
}
.page-hero p{
  max-width:760px;
  margin:0;
  color:#bcc6cf;
  font-size:16px;
  line-height:1.75;
}
.breadcrumbs{
  color:#9faab4;
  font-size:10px;
  font-weight:700;
}
.breadcrumbs a{color:#ffc1bd}

/* Quote page */
.quote-page{
  padding:42px 0 94px;
}
.quote-shell{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:22px;
  align-items:start;
}
.quote-panel{
  overflow:hidden;
  padding:28px;
  border:1px solid rgba(14,20,27,.09);
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.9);
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(10px);
}
.quote-progress{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:0;
  align-items:start;
  padding:8px 2px 25px;
  margin-bottom:27px;
  border-bottom:1px solid var(--line);
}
.quote-progress::before{
  content:"";
  position:absolute;
  left:16.6%;
  right:16.6%;
  top:20px;
  height:2px;
  background:#e5e1dc;
}
.quote-progress i{display:none}
.quote-progress span{
  position:relative;
  z-index:1;
  color:#9aa3ac;
  font-size:9px;
  font-weight:800;
  letter-spacing:.075em;
  text-align:center;
  text-transform:uppercase;
}
.quote-progress span::before{
  content:"";
  width:24px;
  height:24px;
  margin:0 auto 9px;
  display:grid;
  place-items:center;
  border:6px solid #fff;
  border-radius:50%;
  background:#dcd8d2;
  box-shadow:0 0 0 1px #dcd8d2;
}
.quote-progress span.is-active{
  color:var(--accent);
}
.quote-progress span.is-active::before{
  background:var(--accent);
  box-shadow:
    0 0 0 1px var(--accent),
    0 7px 17px rgba(219,80,74,.25);
}
.quote-step{
  display:none;
  animation:fadeIn .22s ease;
}
.quote-step.is-active{display:block}
@keyframes fadeIn{
  from{opacity:0;transform:translateY(7px)}
  to{opacity:1;transform:none}
}
.quote-step h2{
  margin:13px 0 8px;
  font-size:35px;
  line-height:1.05;
  letter-spacing:-.045em;
}
.quote-step>.intro{
  margin:0 0 26px;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.type-choices{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:11px;
  margin:18px 0 26px;
}
.type-choice{
  position:relative;
}
.type-choice input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.type-choice span{
  min-height:116px;
  padding:17px;
  border:1px solid var(--line);
  border-radius:17px;
  background:linear-gradient(180deg,#fff,#faf8f5);
  box-shadow:0 8px 20px rgba(14,20,27,.04);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:3px;
  cursor:pointer;
  transition:.2s ease;
}
.type-choice span::before{
  width:39px;
  height:39px;
  margin-bottom:auto;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:var(--accent);
  background:var(--accent-soft);
  font-size:12px;
  font-weight:800;
}
.type-choice:nth-child(1) span::before{content:"A"}
.type-choice:nth-child(2) span::before{content:"D"}
.type-choice:nth-child(3) span::before{content:"P"}
.type-choice strong{
  font-size:13px;
}
.type-choice small{
  color:var(--muted);
  font-size:9px;
  line-height:1.45;
}
.type-choice input:checked+span{
  border-color:rgba(219,80,74,.55);
  background:linear-gradient(180deg,#fff,var(--accent-faint));
  box-shadow:
    0 0 0 4px rgba(219,80,74,.08),
    0 14px 30px rgba(219,80,74,.11);
  transform:translateY(-2px);
}
.type-choice input:checked+span::before{
  color:#fff;
  background:var(--accent);
  box-shadow:0 9px 20px rgba(219,80,74,.22);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.field{
  position:relative;
  margin-bottom:16px;
}
.field--full{grid-column:1/-1}
.field label{
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:7px;
  color:#35404a;
  font-size:11px;
  font-weight:800;
}
.field input,
.field select,
.field textarea{
  width:100%;
  min-height:54px;
  padding:13px 14px;
  border:1px solid #d8d7d3;
  border-radius:13px;
  background:#fbfaf8;
  color:var(--ink);
  outline:0;
  transition:.2s ease;
}
.field textarea{
  min-height:115px;
  resize:vertical;
}
.field input::placeholder,
.field textarea::placeholder{color:#a5acb3}
.field input:hover,
.field select:hover,
.field textarea:hover{
  border-color:#c8c4bd;
  background:#fff;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:var(--accent);
  background:#fff;
  box-shadow:0 0 0 4px rgba(219,80,74,.1);
}
.field input[aria-invalid=true],
.field select[aria-invalid=true]{
  border-color:var(--accent);
}
.field-help{
  display:block;
  margin-top:7px;
  color:#828b94;
  font-size:9px;
  line-height:1.55;
}
.field--honeypot{
  position:absolute;
  left:-10000px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.suggestion-list{
  position:absolute;
  left:0;
  right:0;
  top:100%;
  z-index:50;
  max-height:285px;
  overflow:auto;
  margin-top:6px;
  padding:7px;
  border:1px solid var(--line);
  border-radius:15px;
  background:#fff;
  box-shadow:0 20px 50px rgba(14,20,27,.18);
}
.suggestion-list button{
  width:100%;
  padding:11px 12px;
  border:0;
  border-radius:10px;
  background:#fff;
  text-align:left;
  cursor:pointer;
}
.suggestion-list button:hover,
.suggestion-list button:focus{
  background:var(--accent-soft);
}
.suggestion-list strong,
.suggestion-list small{display:block}
.suggestion-list strong{font-size:12px}
.suggestion-list small{
  margin-top:2px;
  color:var(--muted);
  font-size:9px;
}
.conditional{display:none}
.conditional.is-visible{display:block}

.form-status{
  display:none;
  padding:13px 14px;
  margin:1px 0 15px;
  border-radius:12px;
  font-size:11px;
  font-weight:700;
}
.form-status.is-error{
  display:block;
  color:#7d2e2a;
  background:var(--accent-soft);
}
.form-status.is-loading{
  display:block;
  color:#31536e;
  background:#eaf3f9;
}
.form-status.is-success{
  display:block;
  color:#145e3d;
  background:#e7f4ed;
}
.quote-actions{
  display:flex;
  gap:10px;
  align-items:center;
}
.quote-actions .button--primary{flex:1}

.summary-mini{
  padding:16px 17px;
  margin-bottom:20px;
  border:1px solid rgba(219,80,74,.16);
  border-radius:15px;
  background:linear-gradient(135deg,var(--accent-faint),#fff);
  font-size:11px;
  line-height:1.7;
}
.summary-mini strong{
  display:block;
  margin-bottom:4px;
  color:var(--ink);
  font-size:12px;
}

/* Result redesign */
.result{
  position:relative;
  overflow:hidden;
  padding:34px;
  border-radius:24px;
  color:#fff;
  background:
    radial-gradient(circle at 85% 0%,rgba(219,80,74,.38),transparent 20rem),
    linear-gradient(145deg,#0d141b,#202b35);
  box-shadow:var(--shadow-md);
  text-align:left;
}
.result::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.24;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:38px 38px;
}
.result>*{position:relative;z-index:1}
.result-label{
  color:#d7dde2;
  font-size:10px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.result-price{
  margin:12px 0 8px;
  color:#fff;
  font-size:clamp(58px,8vw,84px);
  line-height:.95;
  font-weight:800;
  letter-spacing:-.07em;
  text-shadow:0 14px 40px rgba(0,0,0,.2);
}
.result-price::first-letter{color:#fff}
.result-copy{
  max-width:560px;
  margin:0 0 24px;
  color:#b9c3cc;
  font-size:13px;
  line-height:1.7;
}
.result-details{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px;
  padding:0;
  margin:24px 0 16px;
  background:transparent;
  text-align:left;
}
.result-details div{
  min-height:70px;
  padding:13px 14px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:13px;
  background:rgba(255,255,255,.055);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:3px;
}
.result-details span{
  color:#8f9ca7;
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.07em;
}
.result-details strong{
  color:#fff;
  font-size:11px;
  line-height:1.45;
}
.result-notice{
  padding:13px 14px;
  margin:15px 0;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  color:#d9f0e4;
  background:rgba(26,114,76,.22);
  font-size:10px;
  font-weight:700;
}
.result-notice.is-demo{
  color:#ffe6ac;
  background:rgba(138,90,0,.24);
}
.result .quote-actions{
  margin:17px 0 16px!important;
}
.result .button--quiet{
  color:#fff;
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.07);
}
.result .button--quiet:hover{
  background:rgba(255,255,255,.12);
}
.result .button--dark{
  color:var(--ink);
  background:#fff;
  box-shadow:0 12px 28px rgba(0,0,0,.16);
}
.result small{
  display:block;
  color:#8e9aa5;
  font-size:9px;
  line-height:1.55;
}

/* Sidebar */
.quote-sidebar{
  display:grid;
  gap:14px;
  position:sticky;
  top:104px;
}
.sidebar-card{
  position:relative;
  overflow:hidden;
  padding:23px;
  border-radius:var(--radius-md);
  color:#fff;
  background:
    radial-gradient(circle at 100% 0%,rgba(219,80,74,.25),transparent 14rem),
    linear-gradient(145deg,#111821,#202b36);
  box-shadow:var(--shadow-md);
}
.sidebar-card::after{
  content:"";
  position:absolute;
  right:-55px;
  bottom:-65px;
  width:150px;
  height:150px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:50%;
}
.sidebar-card>*{position:relative;z-index:1}
.sidebar-card--light{
  color:var(--ink);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
}
.sidebar-card--light::after{display:none}
.sidebar-card h3{
  margin:12px 0 9px;
  font-size:21px;
  line-height:1.2;
  letter-spacing:-.03em;
}
.sidebar-card p{
  margin:0;
  color:#b7c0c9;
  font-size:11px;
  line-height:1.7;
}
.sidebar-card--light p{color:var(--muted)}
.sidebar-list{
  display:grid;
  gap:8px;
  margin-top:18px;
}
.sidebar-list div{
  display:grid;
  grid-template-columns:28px 1fr;
  gap:9px;
  align-items:center;
  padding:8px;
  border-radius:10px;
  background:rgba(255,255,255,.045);
  font-size:10px;
}
.sidebar-list span{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:var(--accent);
  color:#fff;
  font-size:10px;
  font-weight:800;
}

/* Map */
.map-shell{
  height:560px;
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:#ddd;
  box-shadow:var(--shadow-md);
}
#coverage-map{width:100%;height:100%}
.map-overlay{
  position:absolute;
  z-index:500;
  left:22px;
  bottom:22px;
  width:min(390px,calc(100% - 44px));
  padding:15px;
  border:1px solid rgba(14,20,27,.08);
  border-radius:16px;
  background:rgba(255,255,255,.95);
  box-shadow:0 18px 45px rgba(14,20,27,.2);
  backdrop-filter:blur(10px);
  display:grid;
  grid-template-columns:52px 1fr;
  gap:12px;
  align-items:center;
}
.map-overlay img{width:52px}
.map-overlay strong,
.map-overlay span{display:block}
.map-overlay strong{font-size:13px}
.map-overlay span{
  color:var(--muted);
  font-size:10px;
}

/* Blog */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.blog-card{
  overflow:hidden;
  border:1px solid rgba(14,20,27,.08);
  border-radius:var(--radius-md);
  background:#fff;
  box-shadow:var(--shadow-sm);
  transition:.22s ease;
}
.blog-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-md);
}
.blog-card__visual{
  min-height:190px;
  display:grid;
  place-items:center;
  color:rgba(255,255,255,.92);
  background:
    radial-gradient(circle at 80% 20%,rgba(219,80,74,.26),transparent 12rem),
    linear-gradient(145deg,var(--ink),#38434e);
  font-size:70px;
  font-weight:800;
  letter-spacing:-.06em;
}
.blog-card:nth-child(2) .blog-card__visual{
  background:
    radial-gradient(circle at 80% 20%,rgba(255,255,255,.13),transparent 12rem),
    linear-gradient(145deg,var(--accent),#a5322d);
}
.blog-card:nth-child(3) .blog-card__visual{
  background:
    radial-gradient(circle at 80% 20%,rgba(219,80,74,.18),transparent 12rem),
    linear-gradient(145deg,#28333e,#62707c);
}
.blog-card__body{padding:23px}
.blog-card__body>span{
  color:var(--accent);
  font-size:9px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.blog-card h2,
.blog-card h3{
  margin:9px 0;
  font-size:20px;
  line-height:1.25;
  letter-spacing:-.025em;
}
.blog-card p{
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.7;
}

.article-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:34px;
  align-items:start;
}
.article{
  padding:39px;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.article h2{
  margin-top:36px;
  font-size:29px;
  letter-spacing:-.035em;
}
.article p,
.article li{
  color:#4d5964;
  line-height:1.8;
}
.article li+li{margin-top:8px}
.article-note{
  padding:19px;
  border-left:4px solid var(--accent);
  border-radius:0 12px 12px 0;
  background:var(--accent-soft);
}
.article-side{
  position:sticky;
  top:105px;
  display:grid;
  gap:14px;
}

/* Legal */
.legal-layout{
  display:grid;
  grid-template-columns:250px minmax(0,1fr);
  gap:32px;
  align-items:start;
}
.legal-nav{
  position:sticky;
  top:105px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:17px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.legal-nav strong{
  display:block;
  margin-bottom:8px;
}
.legal-nav a{
  display:block;
  padding:11px 0;
  border-bottom:1px solid var(--line);
  color:#4b5660;
  font-size:11px;
  font-weight:700;
}
.legal-nav a:hover{color:var(--accent)}
.legal-content{
  padding:38px;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.legal-content h2{
  margin-top:35px;
  font-size:26px;
  letter-spacing:-.03em;
}
.legal-content p,
.legal-content li{
  color:#4f5b66;
  line-height:1.8;
}
.legal-date{
  color:var(--muted);
  font-size:11px;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:20px;
}
.contact-card,
.contact-form{
  padding:35px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.contact-card{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 100% 0%,rgba(219,80,74,.3),transparent 18rem),
    linear-gradient(145deg,#111821,#202b36);
  border-color:transparent;
  box-shadow:var(--shadow-md);
}
.contact-card::after{
  content:"";
  position:absolute;
  right:-90px;
  bottom:-100px;
  width:230px;
  height:230px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:50%;
}
.contact-card>*{position:relative;z-index:1}
.contact-card h2,
.contact-form h2{
  margin:13px 0 18px;
  font-size:36px;
  line-height:1.05;
  letter-spacing:-.045em;
}
.contact-method{
  display:block;
  padding:17px 0;
  border-top:1px solid rgba(255,255,255,.12);
}
.contact-method span{
  display:block;
  color:#9ba7b2;
  font-size:9px;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.contact-method strong{
  font-size:16px;
}
.contact-form p{
  line-height:1.8;
}

/* CTA */
.cta-section{padding:26px 0 86px}
.cta-box{
  position:relative;
  overflow:hidden;
  padding:46px;
  border-radius:var(--radius-lg);
  color:#fff;
  background:
    radial-gradient(circle at 90% 10%,rgba(255,255,255,.17),transparent 18rem),
    linear-gradient(140deg,var(--accent),#c53f39);
  box-shadow:0 26px 62px rgba(219,80,74,.25);
  display:grid;
  grid-template-columns:1fr auto;
  gap:26px;
  align-items:center;
}
.cta-box::after{
  content:"";
  position:absolute;
  right:-90px;
  bottom:-120px;
  width:280px;
  height:280px;
  border:1px solid rgba(255,255,255,.19);
  border-radius:50%;
}
.cta-box>*{position:relative;z-index:1}
.cta-box p{
  margin:11px 0 0;
  color:rgba(255,255,255,.82);
  font-size:13px;
}
.cta-actions{
  display:flex;
  gap:9px;
}

/* Footer */
.site-footer{
  padding:60px 0 92px;
  color:#c4cbd1;
  background:
    radial-gradient(circle at 15% 20%,rgba(219,80,74,.12),transparent 22rem),
    #090e13;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.25fr .7fr .9fr .7fr;
  gap:38px;
}
.footer-logo{
  width:185px;
  filter:brightness(1.16);
}
.footer-grid p{
  max-width:360px;
  color:#8f9aa4;
  font-size:12px;
  line-height:1.7;
}
.footer-grid h3{
  margin:0 0 14px;
  color:#fff;
  font-size:12px;
}
.footer-grid a,
.footer-grid span,
.footer-cookie-button{
  display:block;
  margin:9px 0;
  color:#abb4bc;
  font-size:11px;
}
.footer-grid a:hover,
.footer-cookie-button:hover{color:#fff}
.footer-cookie-button{
  padding:0;
  border:0;
  background:none;
  cursor:pointer;
}
.footer-bottom{
  margin-top:42px;
  padding-top:19px;
  border-top:1px solid rgba(255,255,255,.09);
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#747e87;
  font-size:9px;
}

/* Floating actions */
.back-to-top{
  position:fixed;
  right:20px;
  bottom:24px;
  z-index:700;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:50%;
  color:#fff;
  background:rgba(14,20,27,.9);
  box-shadow:0 14px 34px rgba(14,20,27,.24);
  backdrop-filter:blur(10px);
  font-size:18px;
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transform:translateY(10px);
  transition:.2s;
}
.back-to-top.is-visible{
  opacity:1;
  pointer-events:auto;
  transform:none;
}
.mobile-actions{display:none}

/* Cookies */
.cookie-banner{
  position:fixed;
  left:20px;
  right:20px;
  bottom:20px;
  z-index:1200;
  max-width:1120px;
  margin:auto;
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.96);
  box-shadow:0 28px 70px rgba(14,20,27,.23);
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.cookie-banner[hidden]{display:none}
.cookie-banner strong{display:block}
.cookie-banner p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:11px;
}
.cookie-banner__actions{
  display:flex;
  gap:8px;
  flex:0 0 auto;
}
.cookie-dialog{
  width:min(560px,calc(100% - 28px));
  padding:0;
  border:0;
  border-radius:22px;
  box-shadow:0 28px 90px rgba(14,20,27,.3);
}
.cookie-dialog::backdrop{background:rgba(14,20,27,.6)}
.cookie-dialog form{padding:25px}
.dialog-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
}
.dialog-head h2{
  margin:9px 0 18px;
  font-size:28px;
}
.dialog-close{
  width:36px;
  height:36px;
  border:0;
  border-radius:50%;
  background:#f0ede8;
  font-size:22px;
  cursor:pointer;
}
.cookie-option{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  padding:16px 0;
  border-top:1px solid var(--line);
}
.cookie-option p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:10px;
}
.cookie-option input{
  width:22px;
  height:22px;
  accent-color:var(--accent);
}
.status-pill{
  padding:6px 9px;
  border-radius:999px;
  background:#e9f4ee;
  color:var(--success);
  font-size:9px;
  font-weight:800;
}
.dialog-actions{
  display:flex;
  justify-content:flex-end;
  margin-top:16px;
}

/* Responsive */
@media(max-width:1060px){
  .desktop-nav{display:none}
  .header-actions{margin-left:auto}
  .hero-grid,
  .quote-shell{grid-template-columns:1fr}
  .hero-main{min-height:540px}
  .hero-side{grid-template-columns:1fr 1fr}
  .quote-sidebar{
    position:static;
    grid-template-columns:1fr 1fr;
  }
  .steps{grid-template-columns:repeat(2,1fr)}
  .card-grid,
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .article-layout{grid-template-columns:1fr}
  .article-side{
    position:static;
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:760px){
  .container{width:min(100% - 28px,var(--container))}

  .topline__inner{
    min-height:auto;
    padding:8px 0;
    justify-content:center;
    flex-wrap:wrap;
    gap:2px 12px;
    text-align:center;
  }
  .topline__inner span:nth-child(2){display:none}

  .header__inner{min-height:70px}
  .brand__full{
    width:154px;
    height:44px;
  }
  .header-actions{display:none}
  .menu-button{display:flex}

  .hero{padding-top:16px}
  .hero-main{
    min-height:auto;
    padding:35px 24px;
    border-radius:26px;
  }
  .hero h1,
  .page-hero h1{
    font-size:clamp(41px,13vw,60px);
  }
  .hero-main p{font-size:16px}
  .hero-points{
    grid-template-columns:1fr;
    margin-top:32px;
  }
  .hero-points div{
    display:grid;
    grid-template-columns:130px 1fr;
    align-items:center;
  }
  .hero-points span{margin:0}
  .hero-side{grid-template-columns:1fr}
  .quick-card{padding:24px}

  .trustbar__grid{grid-template-columns:repeat(2,1fr)}
  .trustbar__grid span:nth-child(3){border-left:0}
  .trustbar__grid span:nth-child(n+3){border-top:1px solid var(--line)}

  .section{padding:66px 0}
  .section-head{
    grid-template-columns:1fr;
    gap:15px;
  }
  .card-grid,
  .steps,
  .split,
  .blog-grid,
  .contact-grid{grid-template-columns:1fr}
  .info-card{min-height:230px}
  .split-copy,
  .split-visual{
    min-height:auto;
    padding:27px;
  }
  .split-visual{min-height:400px}

  .page-hero{padding:60px 0 48px}

  .quote-page{padding-top:24px}
  .quote-panel{
    padding:19px 15px;
    border-radius:22px;
  }
  .quote-progress{
    padding-inline:0;
  }
  .quote-progress span{
    font-size:7px;
    letter-spacing:.04em;
  }
  .quote-progress span::before{
    width:21px;
    height:21px;
    border-width:5px;
  }
  .quote-progress::before{top:18px}
  .quote-step h2{font-size:30px}
  .type-choices{grid-template-columns:1fr}
  .type-choice span{
    min-height:82px;
    padding:14px;
    display:grid;
    grid-template-columns:42px 1fr;
    grid-template-rows:auto auto;
    column-gap:12px;
    justify-content:initial;
  }
  .type-choice span::before{
    grid-row:1/3;
    margin:0;
    align-self:center;
  }
  .type-choice strong{align-self:end}
  .type-choice small{align-self:start}
  .form-grid{grid-template-columns:1fr}
  .field--full{grid-column:auto}
  .quote-sidebar{grid-template-columns:1fr}
  .result{
    padding:25px 18px;
    border-radius:18px;
  }
  .result-price{font-size:clamp(49px,16vw,70px)}
  .result-details{grid-template-columns:1fr}
  .result .quote-actions{
    flex-direction:column;
  }
  .result .quote-actions .button{
    width:100%;
  }

  .map-shell{height:470px}

  .article-side{grid-template-columns:1fr}
  .article{padding:25px 20px}

  .legal-layout{grid-template-columns:1fr}
  .legal-nav{position:static}
  .legal-content{padding:26px 20px}

  .cta-box{
    padding:31px 23px;
    grid-template-columns:1fr;
  }
  .cta-actions{flex-direction:column}

  .footer-grid{
    grid-template-columns:1fr;
    gap:27px;
  }
  .footer-bottom{flex-direction:column}
  .site-footer{padding-bottom:112px}

  .mobile-actions{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:1000;
    display:grid;
    grid-template-columns:1fr 1fr 1.12fr;
    padding:9px;
    background:rgba(255,255,255,.97);
    border-top:1px solid var(--line);
    box-shadow:0 -12px 30px rgba(14,20,27,.12);
    backdrop-filter:blur(14px);
  }
  .mobile-actions a{
    min-height:44px;
    display:grid;
    place-items:center;
    border-right:1px solid var(--line);
    font-size:11px;
    font-weight:800;
  }
  .mobile-actions a:last-child{border-right:0}
  .mobile-actions__primary{
    border-radius:999px;
    color:#fff;
    background:linear-gradient(135deg,var(--accent),#e8615b);
  }
  .back-to-top{
    right:14px;
    bottom:76px;
  }

  .cookie-banner{
    left:10px;
    right:10px;
    bottom:74px;
    align-items:stretch;
    flex-direction:column;
  }
  .cookie-banner__actions{
    display:grid;
    grid-template-columns:1fr 1fr;
  }
  .cookie-banner__actions .button:last-child{grid-column:1/-1}
}

@media(max-width:390px){
  .brand__full{display:none}
  .brand__mark{display:block}
  .hero-actions .button{width:100%}
}


/* === V3.3 refinement overrides === */
:root{
  --section-space:72px;
  --card-space:22px;
}
body{overflow-x:hidden}
.section{padding:var(--section-space) 0}
.section--soft{background:linear-gradient(180deg,#efebe6 0%,#ebe7e0 100%)}

/* simpler header */
.site-header{background:rgba(248,247,244,.8)}
.header__inner{min-height:74px;gap:22px}
.desktop-nav{gap:18px;padding:0;border:0;background:transparent;border-radius:0}
.desktop-nav a{position:relative;padding:10px 0;background:transparent;box-shadow:none;border-radius:0;color:#52606b;font-size:13px}
.desktop-nav a::after{content:"";position:absolute;left:0;right:0;bottom:0;height:2px;background:var(--accent);transform:scaleX(0);transform-origin:left;transition:transform .22s ease}
.desktop-nav a:hover,.desktop-nav a.is-active{color:var(--ink);background:transparent;box-shadow:none}
.desktop-nav a:hover::after,.desktop-nav a.is-active::after{transform:scaleX(1)}
.header-actions .button--quiet{background:transparent;border-color:rgba(14,20,27,.12);box-shadow:none}
.topline{font-size:12px}

.hero{padding:28px 0 18px}
.hero-grid{gap:18px}
.hero-main{min-height:560px;padding:48px 46px}
.hero-main p{max-width:620px;font-size:17px}
.hero-actions{margin-top:24px}
.hero-points{gap:12px;margin-top:30px}
.hero-points div{position:relative;padding:18px 16px 18px 54px;min-height:84px}
.hero-points i{position:absolute;left:16px;top:18px;width:26px;height:26px;display:grid;place-items:center;border-radius:9px;color:#fff;background:rgba(219,80,74,.85);box-shadow:0 10px 18px rgba(219,80,74,.22);font-size:12px}
.quick-card{padding:26px}
.quick-card h2{font-size:28px}
.quick-card p{margin-bottom:18px}
.quick-list div{grid-template-columns:40px 1fr;padding:9px}
.quick-list span{font-size:13px}

.trustbar{padding:16px 0 8px}
.trustbar__grid{grid-template-columns:repeat(4,1fr);border-radius:16px}
.trustbar__grid span{display:flex;align-items:center;justify-content:center;gap:9px;padding:14px 12px;font-size:11px}
.trustbar__grid span::before{display:none}
.trustbar__grid i{width:22px;height:22px;display:grid;place-items:center;border-radius:999px;background:var(--accent-soft);color:var(--accent);font-size:11px;flex:0 0 auto}

.section-head{margin-bottom:24px}
.section-head h2,.split-copy h2,.cta-box h2{letter-spacing:-.055em}
.card-grid{gap:14px}
.info-card{min-height:220px;padding:22px}
.info-card__number{width:38px;height:38px;margin-bottom:12px;border-radius:12px;font-size:10px}
.feature-icon{width:52px;height:52px;margin-bottom:18px;display:grid;place-items:center;border-radius:16px;background:linear-gradient(135deg,var(--accent-soft),#fff);color:var(--accent);box-shadow:0 10px 22px rgba(14,20,27,.06);font-size:18px}
.info-card--accent .feature-icon{background:rgba(255,255,255,.14);color:#fff;box-shadow:none}
.info-card h3{font-size:18px;margin-bottom:8px}
.info-card p{font-size:13px}
.info-card a{margin-top:16px;font-weight:800}

.section--dark{position:relative;overflow:hidden}
.section--dark::before{content:"";position:absolute;inset:-10% -20%;background:radial-gradient(circle at 0% 0%,rgba(219,80,74,.1),transparent 23%),radial-gradient(circle at 100% 100%,rgba(50,93,145,.08),transparent 30%);pointer-events:none}
.steps{gap:12px}
.step{min-height:200px;padding:20px 20px 18px}
.step>span{width:48px;height:48px;margin-bottom:30px;font-size:16px;border-radius:14px}
.step h3{font-size:20px}
.step p{font-size:12px}

.split{gap:16px}
.split-copy,.split-visual{min-height:400px;padding:30px}
.split-copy p{font-size:15px;margin-bottom:14px}
.map-visual{justify-content:flex-end;align-items:stretch}
.map-illustration{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.96;transform:scale(1.02)}
.split-visual p{z-index:2;max-width:300px;font-size:12px}
.location-dot{display:none}
.floating-badge{position:absolute;z-index:2;display:inline-flex;align-items:center;gap:9px;padding:11px 14px;border:1px solid rgba(255,255,255,.7);border-radius:999px;background:rgba(255,255,255,.92);box-shadow:0 16px 38px rgba(14,20,27,.18);color:var(--ink);font-size:11px;font-weight:800;backdrop-filter:blur(8px);animation:floatBadge 5s ease-in-out infinite}
.floating-badge i{width:26px;height:26px;display:grid;place-items:center;border-radius:50%;background:var(--accent-soft);color:var(--accent)}
.floating-badge--one{left:28px;top:26px}
.floating-badge--two{right:28px;top:32px;animation-delay:1.1s}
@keyframes floatBadge{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

.blog-grid{gap:16px}
.blog-card__visual{min-height:160px}
.blog-card__body{padding:20px}

.page-hero{padding:58px 0 48px}
.page-hero h1{margin:14px 0 12px}
.page-hero p{font-size:15px}

.quote-page{padding:30px 0 78px}
.quote-shell{gap:18px}
.quote-panel{padding:24px}
.quote-progress{padding-bottom:18px;margin-bottom:22px}
.quote-step h2{font-size:32px;margin:8px 0}
.type-choice span{min-height:100px}
.result{padding:28px;border-radius:22px}
.sidebar-card{padding:20px}

.footer-grid{gap:30px}
.footer-grid a,.footer-grid span,.footer-cookie-button{display:flex;align-items:center;gap:8px}
.footer-grid a::before,.footer-grid span::before{font-family:"Font Awesome 6 Free";font-weight:900;color:#db504a}
.footer-grid div:nth-child(1) span::before{content:"3c5"}
.footer-grid div:nth-child(2) a:nth-child(2)::before{content:"0ad"}
.footer-grid div:nth-child(2) a:nth-child(3)::before{content:"15c"}
.footer-grid div:nth-child(2) a:nth-child(4)::before{content:"279"}
.footer-grid div:nth-child(2) a:nth-child(5)::before{content:"02d"}
.footer-grid div:nth-child(3) a:nth-child(2)::before{content:"095"}
.footer-grid div:nth-child(3) a:nth-child(3)::before{content:"0e0"}
.footer-grid div:nth-child(3) a:nth-child(4)::before{content:"232"}
.footer-grid div:nth-child(4) a:nth-child(2)::before{content:"15c"}
.footer-grid div:nth-child(4) a:nth-child(3)::before{content:"023"}
.footer-grid div:nth-child(4) a:nth-child(4)::before{content:"1e6"}

/* reveal motion */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .75s cubic-bezier(.2,.7,.2,1),transform .75s cubic-bezier(.2,.7,.2,1)}
.reveal.is-visible{opacity:1;transform:none}
.hero-main,.quick-card,.cta-box{animation:heroIn .8s cubic-bezier(.2,.7,.2,1)}
@keyframes heroIn{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
.info-card,.step,.blog-card,.quote-panel,.sidebar-card,.map-shell,.contact-card,.contact-form,.split-copy,.split-visual{transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease}
.info-card:hover,.blog-card:hover,.quote-panel:hover,.sidebar-card:hover,.contact-form:hover,.contact-card:hover{transform:translateY(-4px)}

@media(max-width:1060px){
  .desktop-nav{gap:14px}
  .hero-main{min-height:520px}
}
@media(max-width:760px){
  .section{padding:56px 0}
  .hero-main{padding:34px 22px;border-radius:22px}
  .hero-points div{padding-left:50px}
  .trustbar__grid span{justify-content:flex-start}
  .split-copy,.split-visual{padding:24px;min-height:auto}
  .split-visual{min-height:320px}
  .floating-badge{padding:9px 12px;font-size:10px}
  .floating-badge--one{left:16px;top:16px}
  .floating-badge--two{right:16px;top:66px}
  .page-hero{padding:50px 0 40px}
  .quote-panel{padding:18px 14px}
}


/* Offline local SVG icon system */
.ui-icon{width:1em;height:1em;display:inline-block;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;vertical-align:-.12em}
.hero-points .ui-icon{position:absolute;left:16px;top:18px;width:26px;height:26px;padding:7px;border-radius:9px;color:#fff;background:rgba(219,80,74,.85);box-shadow:0 10px 18px rgba(219,80,74,.22)}
.quick-list span .ui-icon{width:16px;height:16px}
.trustbar__grid .ui-icon{width:22px;height:22px;padding:5px;border-radius:999px;background:var(--accent-soft);color:var(--accent);flex:0 0 auto}
.feature-icon .ui-icon{width:22px;height:22px}
.step>span .ui-icon{width:20px;height:20px}
.floating-badge .ui-icon{width:26px;height:26px;padding:6px;border-radius:50%;background:var(--accent-soft);color:var(--accent)}


/* === V3.5: official local Font Awesome + quote readability === */
.fa-solid,.fa-regular,.fa-brands{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}
.hero-points i,.quick-list i,.trustbar i,.feature-icon i,.step i,.floating-badge i{
  color:inherit;
  font-size:1em;
}

/* Quote form typography */
.quote-step>.intro{
  font-size:15px;
  line-height:1.7;
}
.quote-step h2{
  font-size:clamp(32px,4vw,40px);
}
.quote-progress span{
  font-size:11px;
}
.type-choice strong{
  font-size:15px;
}
.type-choice small{
  font-size:11px;
  line-height:1.5;
}
.field label{
  font-size:13px;
}
.field input,.field select,.field textarea{
  font-size:15px;
}
.field-help{
  font-size:11px;
  line-height:1.55;
}
.summary-mini{
  font-size:13px;
}
.summary-mini strong{
  font-size:14px;
}
.form-status{
  font-size:13px;
}
.sidebar-card h3{
  font-size:23px;
}
.sidebar-card p{
  font-size:13px;
}
.sidebar-list div{
  font-size:12px;
}

/* Light estimate result, matching the earlier approved colour direction. */
.result{
  padding:36px;
  border:1px solid var(--line);
  border-radius:24px;
  color:var(--text);
  background:
    radial-gradient(circle at 90% 0%,rgba(219,80,74,.075),transparent 19rem),
    linear-gradient(180deg,#ffffff 0%,#fdfbf9 100%);
  box-shadow:0 18px 48px rgba(14,20,27,.09);
  text-align:center;
}
.result::before{
  display:none;
}
.result-label{
  color:#65717d;
  font-size:12px;
  letter-spacing:.09em;
}
.result-price{
  margin:17px 0 10px;
  color:var(--accent);
  font-size:clamp(66px,9vw,96px);
  text-shadow:none;
}
.result-price::first-letter{
  color:var(--accent);
}
.result-copy{
  max-width:620px;
  margin:0 auto 26px;
  color:#596774;
  font-size:16px;
  line-height:1.65;
}
.result-details{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  padding:16px;
  margin:25px 0 18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#f8f6f2;
}
.result-details div{
  min-height:78px;
  padding:14px 15px;
  border:1px solid rgba(14,20,27,.07);
  border-radius:13px;
  background:#fff;
  align-items:flex-start;
  text-align:left;
}
.result-details span{
  color:#7d8892;
  font-size:10px;
}
.result-details strong{
  color:var(--ink);
  font-size:14px;
  line-height:1.45;
}
.result-notice{
  padding:14px 16px;
  border:1px solid #cfe7da;
  color:#155e3c;
  background:#eaf6ef;
  font-size:13px;
  text-align:center;
}
.result-notice.is-demo{
  border-color:#f0ddb0;
  color:#7a5400;
  background:#fff3d9;
}
.result .quote-actions{
  justify-content:center;
  margin:19px 0 18px!important;
}
.result .button--quiet{
  color:var(--ink);
  border-color:var(--line);
  background:#fff;
}
.result .button--quiet:hover{
  background:#f4f1ec;
}
.result .button--dark{
  color:#fff;
  background:var(--ink);
  box-shadow:0 12px 26px rgba(14,20,27,.2);
}
.result small{
  max-width:760px;
  margin:0 auto;
  color:#7f8a94;
  font-size:11px;
  line-height:1.6;
  text-align:center;
}

@media(max-width:760px){
  .quote-progress span{font-size:9px}
  .result{padding:28px 18px}
  .result-price{font-size:clamp(54px,16vw,76px)}
  .result-copy{font-size:14px}
  .result-details{grid-template-columns:1fr;padding:11px}
  .result-details strong{font-size:13px}
}


/* V3.9 footer fallback */
.site-footer .footer-grid a,
.site-footer .footer-grid span,
.site-footer .footer-cookie-button{font-size:14px}
.site-footer .footer-grid p{font-size:15px}
.site-footer .footer-grid h3{font-size:16px}


/* Homepage final CTA label: strong contrast on the red panel */
.cta-box .kicker {
  color: #a9322e !important;
  background: #fff !important;
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 8px 22px rgba(88, 18, 15, .14);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
}


/* Single blog tag */
.blog-card__body .blog-card__tag{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  padding:5px 9px;
  border-radius:999px;
  color:#c9433d;
  background:#fff0ee;
  font-size:9px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.blog-card__body .blog-card__meta{
  display:block;
  margin-top:9px;
  color:#84909a;
  font-size:9px;
  font-weight:750;
  letter-spacing:.04em;
  text-transform:none;
}
