:root{
  --bg:#f4f7fc;
  --surface:#ffffff;
  --surface-2:#edf3fb;
  --text:#14233f;
  --muted:#5d6a81;
  --line:#dbe4f0;
  --line-2:#c9d5e6;
  --brand:#153b78;
  --brand-2:#214f99;
  --accent:#f57b20;
  --accent-2:#d9640c;
  --success:#22a06b;
  --shadow:0 20px 50px rgba(19,46,92,.12);
  --shadow-soft:0 10px 30px rgba(19,46,92,.08);
  --radius:22px;
  --radius-sm:14px;
  --container:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.45;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{width:min(calc(100% - 32px),var(--container));margin:0 auto}
.page{overflow:hidden}

.section{padding:56px 0}
.section:nth-of-type(even){
  background:linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0));
}

.section-title{
  margin:0 0 16px;
  font-size:clamp(34px,5vw,58px);
  line-height:.98;
  letter-spacing:-.04em;
  color:#16397d;
}
.section-title.left{text-align:left}

.eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  margin-bottom:14px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(37,76,154,.08);
  color:#254c9a;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.lead{font-size:19px;color:var(--muted);max-width:760px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 28px;
  border-radius:12px;
  font-size:17px;
  font-weight:800;
  line-height:1;
  border:0;
  cursor:pointer;
  transition:.2s ease;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
  color:#fff;
  box-shadow:0 10px 20px rgba(245,123,32,.25);
}
.btn-primary:hover{transform:translateY(-1px)}
.btn-secondary{
  background:linear-gradient(180deg,#1e4c91,#143b78);
  color:#fff;
  box-shadow:0 10px 20px rgba(21,59,120,.22);
}
.btn-light{
  background:#fff;
  color:var(--brand);
  border:1px solid rgba(255,255,255,.35);
}
.btn-block{width:100%}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(18,40,79,.94);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:84px;
}

.logo-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(180deg,var(--accent),#ff9a4d);
  display:grid;
  place-items:center;
  color:#fff;
  font-size:20px;
  box-shadow:0 10px 20px rgba(245,123,32,.24);
}
.logo-sub{
  display:block;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.74);
}

.nav{display:flex;align-items:center;gap:24px;color:#fff}
.nav a{font-weight:700;font-size:15px;color:rgba(255,255,255,.9)}
.nav a:hover{color:#fff}

.nav-desktop{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-left:auto;
  margin-right:auto;
}
.nav-desktop a,
.mobile-menu-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  font-weight:600;
  line-height:1;
  transition:transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease, opacity .25s ease;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.nav-desktop a{
  color:#fff;
}
.nav-desktop a:hover,
.mobile-menu-nav a:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.22);
  box-shadow:0 10px 30px rgba(0,0,0,.16);
}
.nav-desktop a[aria-current="page"],
.mobile-menu-nav a[aria-current="page"]{
  color:#fff;
  background:linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  border-color:rgba(255,255,255,.28);
  box-shadow:0 12px 34px rgba(0,0,0,.2), inset 0 0 0 1px rgba(255,255,255,.08);
}

.topbar-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.topbar-cta{white-space:nowrap}

.phone-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:800;
  font-size:15px;
  line-height:1;
  border:1px solid rgba(255,255,255,.14);
  white-space:nowrap;
}

.mobile-toggle{
  position:relative;
  display:none;
  width:54px;
  height:54px;
  padding:0;
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:background .25s ease, border-color .25s ease, transform .25s ease;
}
.mobile-toggle:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.22);
}
.mobile-toggle span{
  position:absolute;
  left:14px;
  width:24px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transition:transform .3s ease, opacity .3s ease, top .3s ease;
}
.mobile-toggle span:nth-child(1){top:18px}
.mobile-toggle span:nth-child(2){top:26px}
.mobile-toggle span:nth-child(3){top:34px}
.mobile-toggle[aria-expanded="true"] span:nth-child(1){
  top:26px;
  transform:rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.mobile-toggle[aria-expanded="true"] span:nth-child(3){
  top:26px;
  transform:rotate(-45deg);
}

/* Mobile menu */
.mobile-menu{
  position:fixed;
  inset:0;
  z-index:1200;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .3s ease, visibility .3s ease;
}
.mobile-menu.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.mobile-menu-backdrop{
  position:absolute;
  inset:0;
  background:rgba(8,14,24,.58);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  opacity:0;
  transition:opacity .35s ease;
}
.mobile-menu.is-open .mobile-menu-backdrop{opacity:1}

.mobile-menu-panel{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  width:100%;
  height:100%;
  padding:24px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(180deg, rgba(10,16,28,.96), rgba(12,19,34,.98));
  transform:translateY(24px) scale(.985);
  opacity:0;
  transition:transform .42s cubic-bezier(.22,1,.36,1), opacity .32s ease;
  overflow:auto;
}
.mobile-menu.is-open .mobile-menu-panel{
  transform:translateY(0) scale(1);
  opacity:1;
}

.mobile-menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:32px;
}
.mobile-menu-close{
  position:relative;
  width:54px;
  height:54px;
  padding:0;
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  background:rgba(255,255,255,.08);
  cursor:pointer;
  color:#fff;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:background .25s ease, border-color .25s ease, transform .25s ease;
}
.mobile-menu-close:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.22);
}
.mobile-menu-close span{
  position:absolute;
  left:14px;
  top:26px;
  width:24px;
  height:2px;
  border-radius:999px;
  background:currentColor;
}
.mobile-menu-close span:first-child{transform:rotate(45deg)}
.mobile-menu-close span:last-child{transform:rotate(-45deg)}

.mobile-menu-nav{
  display:flex;
  flex-direction:column;
  gap:14px;
  width:min(100%,640px);
  margin:0 auto;
}
.mobile-menu-nav a{
  min-height:64px;
  justify-content:flex-start;
  padding:0 22px;
  font-size:20px;
  color:#fff;
  border-radius:22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 12px 30px rgba(0,0,0,.16);
}
.mobile-menu-nav a[aria-current="page"]{
  background:linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.1));
  border-color:rgba(255,255,255,.24);
}

.mobile-menu-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  width:min(100%,640px);
  margin:32px auto 0;
}
.mobile-menu-footer .phone-chip,
.mobile-menu-footer .btn{
  flex:1 1 0;
  justify-content:center;
}

body.menu-open{overflow:hidden}

/* Hero */
.hero{
  position:relative;
  color:#fff;
  padding:50px 0 38px;
  background:linear-gradient(180deg,rgba(10,31,64,.88),rgba(18,44,87,.76)),url("../img/home-mock.webp") center/cover no-repeat;
}
.hero.case{background-image:linear-gradient(180deg,rgba(10,31,64,.88),rgba(18,44,87,.76)),url("../img/case-mock.jpg")}
.hero.about{background-image:linear-gradient(180deg,rgba(10,31,64,.88),rgba(18,44,87,.76)),url("../img/hero.about.webp")}
.hero.case1{background-image:linear-gradient(180deg,rgba(10,31,64,.88),rgba(18,44,87,.76)),url("../img/sunroom.webp")}
.hero.case2{background-image:linear-gradient(180deg,rgba(10,31,64,.88),rgba(18,44,87,.76)),url("../img/2story.webp")}
.hero.case3{background-image:linear-gradient(180deg,rgba(10,31,64,.88),rgba(18,44,87,.76)),url("../img/elizabeth.webp")}
.hero.case4{background-image:linear-gradient(180deg,rgba(10,31,64,.88),rgba(18,44,87,.76)),url("../img/secondstory.webp")}
.hero.case5{background-image:linear-gradient(180deg,rgba(10,31,64,.88),rgba(18,44,87,.76)),url("../img/roofcover.webp")}
.hero.case6{background-image:linear-gradient(180deg,rgba(10,31,64,.88),rgba(18,44,87,.76)),url("../img/roofdeck.webp")}
.hero.case7{background-image:linear-gradient(180deg,rgba(10,31,64,.88),rgba(18,44,87,.76)),url("../img/cascade.webp")}
.hero.financing{background-image:linear-gradient(180deg,rgba(10,31,64,.88),rgba(18,44,87,.76)),url("../img/hero.financing.webp")}
.hero.contact{background-image:linear-gradient(180deg,rgba(10,31,64,.88),rgba(18,44,87,.76)),url("../img/hero.contact.webp")}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:end;
}
.hero-copy{max-width:720px}
.hero h1{
  margin:0 0 14px;
  font-size:clamp(30px,6vw,54px);
  line-height:.98;
  letter-spacing:-.04em;
}
.hero p{
  font-size:24px;
  line-height:1.22;
  margin:0 0 28px;
  color:rgba(255,255,255,.92);
  max-width:720px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.hero-panel{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(12px);
  padding:26px;
  border-radius:22px;
  box-shadow:var(--shadow);
}

.hero.about{
  padding:84px 0 48px;
}
.hero.about .hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:32px;
  align-items:center;
}
.hero.about .hero-copy{max-width:760px}
.hero.about .hero-copy h1{
  margin:0 0 18px;
  font-size:clamp(40px,6vw,72px);
  line-height:.96;
  letter-spacing:-.04em;
  max-width:12ch;
}
.hero.about .hero-copy p{
  max-width:760px;
  font-size:19px;
  line-height:1.72;
  color:#667085;
}
.hero.about .badge-row{margin-top:24px}

.hero.contact .hero-panel{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.08);
}
.hero.contact .contact-box strong{color:#14233f}
.hero.contact .contact-box span{color:#5d6a81}
.hero.contact .contact-box a{
  color:#153b78;
  font-weight:700;
}

/* Layout helpers */
.grid-4,.grid-3,.grid-2{display:grid;gap:24px}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.equal-grid{align-items:stretch}
.equal-grid > *{height:100%}
.split{display:grid;grid-template-columns:.98fr 1.02fr;gap:28px;align-items:center}

/* Cards */
.card,
.service-card,
.proof-card,
.review-card{
  overflow:hidden;
  border-radius:28px;
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 20px 60px rgba(15,23,42,.06);
}

.card{
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 44px rgba(19,46,92,.14);
  border-color:#c9d7ea;
}

.card-body{padding:24px 24px 22px}
.card h3,
.card-body h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.15;
  letter-spacing:-.03em;
  color:var(--brand);
}
.card p,
.card-body p{
  margin:0;
  font-size:16px;
  line-height:1.68;
  color:#667085;
}
.card-body p:last-child{margin-bottom:0}

.service-card,
.proof-card,
.review-card{height:100%}

.service-card .card-media,
.proof-card .card-media{
  display:block;
  width:100%;
  aspect-ratio:1.2 / 1;
  object-fit:cover;
}

.service-card .card-body,
.proof-card .card-body{
  padding:28px;
}
.service-card .btn{
  margin-top:18px;
  width:100%;
}

.proof-card h3{font-size:26px;line-height:1;margin-bottom:12px}
.proof-date{
  display:inline-flex;
  margin-bottom:10px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(37,76,154,.1);
  color:#254c9a;
  font-size:13px;
  font-weight:700;
  letter-spacing:.02em;
}

.review-card{
  position:relative;
}
.review-card::before{
  content:"“";
  position:absolute;
  top:16px;
  left:18px;
  font-size:42px;
  line-height:1;
  color:rgba(21,59,120,.10);
  font-weight:900;
}
.review-card .card-body{padding:28px}
.review-card p{
  margin:0 0 18px;
  font-size:17px;
  line-height:1.72;
  color:#475467;
}
.review-card strong{
  display:inline-block;
  font-size:16px;
  line-height:1.4;
  color:#0f172a;
}

/* Text blocks */
.panel{
  height:100%;
  padding:34px 34px 30px;
  border-radius:28px;
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 20px 60px rgba(15,23,42,.06);
}
.panel .section-title.left{margin-bottom:16px}
.panel .text-block.left{max-width:none}
.panel p:last-child{margin-bottom:0}

.text-block{
  background:
    radial-gradient(circle at top left, rgba(245,123,32,.05), transparent 30%),
    linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
  border:1px solid var(--line);
  border-radius:24px;
  padding:30px;
  box-shadow:0 12px 34px rgba(19,46,92,.08);
}
.text-block.left{max-width:none}
.text-block h2{
  margin:0 0 14px;
  font-size:38px;
  line-height:1;
  color:var(--brand);
  letter-spacing:-.03em;
}
.text-block p{
  margin:0;
  font-size:19px;
  color:var(--text);
}
.text-block p:last-child{margin-bottom:0}

/* Lists / badges */
.checks{
  margin:18px 0 0;
  padding:0;
  list-style:none;
}
.checks li{
  position:relative;
  padding-left:30px;
  font-size:16px;
  line-height:1.65;
  color:#475467;
}
.checks li + li{margin-top:12px}
.checks li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:14px;
  height:14px;
  border-radius:999px;
  background:linear-gradient(135deg, #254c9a, #4f7ad3);
  box-shadow:0 0 0 4px rgba(37,76,154,.12);
}
.checks.two{
  columns:2;
  column-gap:28px;
}
.checks.two li{break-inside:avoid}

.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 16px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid rgba(37,76,154,.12);
  box-shadow:0 10px 30px rgba(15,23,42,.04);
  font-size:14px;
  font-weight:700;
  color:#254c9a;
}
.trust-badge-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
}
.badge-icon{
  width:16px;
  height:16px;
  fill:#f57b20;
}

/* Forms */
.office-card,
.contact-form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow-soft);
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.field,.select,textarea{
  width:100%;
  padding:16px 18px;
  border-radius:14px;
  border:1px solid var(--line-2);
  background:#fff;
  font:inherit;
  color:var(--text);
  outline:none;
}
textarea{
  min-height:140px;
  resize:vertical;
}

.process-estimate-wrap{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
  gap:28px;
  align-items:stretch;
}
.process-side,
.estimate-side{
  padding:34px;
  border-radius:28px;
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 20px 60px rgba(15,23,42,.06);
}
.process-side .section-title.left,
.estimate-side h3{margin-bottom:16px}
.estimate-side .eyebrow{
  display:inline-block;
  margin-bottom:10px;
}
.estimate-side h3{
  font-size:clamp(26px,4vw,38px);
  line-height:1.08;
  letter-spacing:-.03em;
}
.estimate-text{
  font-size:17px;
  line-height:1.72;
  color:#667085;
}
.estimate-form{width:100%}
.estimate-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-bottom:14px;
}
.estimate-form input,
.estimate-form select{
  width:100%;
  height:58px;
  padding:0 18px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  font:inherit;
  color:var(--text);
  outline:none;
  appearance:none;
  -webkit-appearance:none;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.estimate-form input::placeholder{color:#7d889e}
.estimate-form input:focus,
.estimate-form select:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(21,59,120,.10);
}
.estimate-submit{
  width:100%;
  min-height:58px;
  border-radius:16px;
  font-size:18px;
  font-weight:800;
  margin-top:4px;
}

.form-success,
.form-error{
  display:none;
  margin-top:18px;
  padding:16px 18px;
  border-radius:14px;
  font-weight:600;
  font-size:14px;
  align-items:center;
  gap:12px;
  box-shadow:0 10px 24px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.6);
}
.success-icon{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#22c55e;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:700;
  flex-shrink:0;
  box-shadow:0 3px 8px rgba(0,0,0,.15);
}
.success-text{flex:1}
.error-icon{background:#ef4444}

/* Contact / areas */
.contact-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
}
.contact-stack{display:grid;gap:16px}
.contact-info-list{display:grid;gap:14px}
.contact-box{
  padding:18px;
  border-radius:18px;
  background:var(--surface-2);
  border:1px solid var(--line);
}
.contact-box strong{
  display:block;
  color:var(--brand);
  font-size:18px;
  margin-bottom:8px;
}
.contact-hours-wrap .checks li{word-break:break-word}

.service-areas{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.area-list{
  margin:0;
  padding:0;
  list-style:none;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.area-list li{
  padding:16px 18px;
  border-bottom:1px solid var(--line);
  font-size:17px;
  color:var(--text);
}
.area-list li:last-child{border-bottom:0}

/* Footer */
.footer-cta{padding:12px 0 0}
.footer-cta-box{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:center;
  padding:34px;
  border-radius:30px;
  background:linear-gradient(135deg, #16397d, #254c9a);
  color:#ffffff;
  box-shadow:0 24px 70px rgba(22,57,125,.28);
}
.footer-cta-box h2{
  margin:0 0 10px;
  color:#ffffff;
  font-size:clamp(30px,5vw,46px);
  line-height:1.02;
  letter-spacing:-.04em;
  max-width:12ch;
}
.footer-cta-box p{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.84);
  font-size:17px;
  line-height:1.68;
}
.footer-cta-box .btn{white-space:nowrap}

.footer{
  background:linear-gradient(180deg,#143468,#0f2b57);
  color:#fff;
  padding:34px 0 0;
  margin-top:0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr .9fr 1fr;
  gap:28px;
  padding-bottom:28px;
}
.footer h3{
  margin:0 0 16px;
  font-size:24px;
  letter-spacing:-.02em;
}
.footer ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}
.footer li,.footer p{
  color:rgba(255,255,255,.84);
  font-size:17px;
  margin:0;
}
.footer-bottom{
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.64);
  font-size:14px;
}

/* Team */
.team-card{
  text-align:center;
  padding-top:54px;
  background:linear-gradient(180deg,#ffffff 0%, #fafdff 100%);
}
.team-avatar{
  width:124px;
  height:124px;
  margin:0 auto 20px;
  border-radius:50%;
  overflow:hidden;
  border:6px solid #f4f7fb;
  box-shadow:0 14px 30px rgba(19,46,92,.16);
}
.team-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.team-role{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border-radius:999px;
  background:#eaf2ff;
  color:#1e4c91;
  font-weight:800;
  font-size:13px;
  margin-bottom:12px;
}

/* Generic section intro */
.section-intro{
  max-width:900px;
  margin:0 auto 30px;
  text-align:center;
  font-size:18px;
  line-height:1.72;
  color:#667085;
}

/* Service section */
.section-services{
  padding:72px 0 88px;
}
.section-services .section-title{
  text-align:center;
  margin:0 0 18px;
}
.section-services .section-intro{
  max-width:760px;
  margin:0 auto 40px;
  text-align:center;
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
}
.section-services .service-cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
  align-items:stretch;
}
.section-services .service-card{
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  border:1px solid rgba(21,59,120,.08);
  box-shadow:0 18px 44px rgba(19,46,92,.08);
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.section-services .service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 54px rgba(19,46,92,.14);
  border-color:rgba(21,59,120,.16);
}
.section-services .card-media{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
  display:block;
}
.section-services .card-body{
  padding:26px 24px 24px;
}
.section-services .card-body h3{
  margin:0 0 12px;
  font-size:32px;
  line-height:1.15;
  color:var(--brand);
}
.section-services .card-body p{
  margin:0 0 20px;
  font-size:17px;
  line-height:1.65;
  color:var(--muted);
}
.section-services .btn{min-width:170px}

/* Clarity */
.section-clarity .clarity-shell{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:0;
  border:1px solid #dce4ef;
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff 0%,#fbfcfe 100%);
  box-shadow:0 16px 36px rgba(19,46,92,.06);
}
.section-clarity .clarity-copy{
  padding:52px 48px 42px;
  background:#ffffff;
}
.section-clarity .clarity-aside{
  padding:52px 40px 42px;
  background:
    radial-gradient(circle at top right, rgba(33,79,153,.06), transparent 34%),
    linear-gradient(180deg,#f9fbfe 0%,#f4f7fb 100%);
  border-left:1px solid #dce4ef;
}
.section-clarity .clarity-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#214f99;
}
.section-clarity .clarity-kicker::before{
  content:"";
  width:28px;
  height:2px;
  background:#f57b20;
  border-radius:999px;
}
.section-clarity .clarity-title{
  margin:0 0 22px;
  max-width:620px;
  font-size:clamp(34px,4.2vw,56px);
  line-height:1.02;
  letter-spacing:-.04em;
  color:#153b78;
}
.section-clarity .clarity-text{
  margin:0 0 20px;
  max-width:60ch;
  font-size:17px;
  line-height:1.68;
  color:#5e6b82;
}
.section-clarity .clarity-actions{margin-top:28px}
.section-clarity .clarity-aside-title{
  margin:0 0 16px;
  max-width:440px;
  font-size:clamp(28px,3.1vw,44px);
  line-height:1.04;
  letter-spacing:-.03em;
  color:#153b78;
}
.section-clarity .clarity-aside-text{
  margin:0 0 24px;
  max-width:46ch;
  font-size:17px;
  line-height:1.65;
  color:#5e6b82;
}
.section-clarity .clarity-benefits{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.section-clarity .clarity-benefit{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px;
  border:1px solid #dce4ef;
  border-radius:18px;
  background:rgba(255,255,255,.82);
  box-shadow:0 8px 22px rgba(19,46,92,.04);
}
.section-clarity .clarity-benefit-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#f57b20;
  flex:0 0 12px;
  margin-top:7px;
}
.section-clarity .clarity-benefit-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.section-clarity .clarity-benefit-copy strong{
  font-size:18px;
  line-height:1.3;
  color:#153b78;
  font-weight:800;
}
.section-clarity .clarity-benefit-copy span{
  font-size:15px;
  line-height:1.55;
  color:#5e6b82;
}

/* Why home */
.section-whyhome .whyhome-box{
  padding:46px 40px 40px;
  border:1px solid #dce4ef;
  border-radius:28px;
  background:
    radial-gradient(circle at top right, rgba(33,79,153,.05), transparent 30%),
    linear-gradient(180deg,#ffffff 0%,#fbfcfe 100%);
  box-shadow:0 14px 34px rgba(19,46,92,.05);
}
.section-whyhome .whyhome-head{
  max-width:760px;
  margin-bottom:30px;
}
.section-whyhome .whyhome-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#214f99;
}
.section-whyhome .whyhome-kicker::before{
  content:"";
  width:28px;
  height:2px;
  border-radius:999px;
  background:#f57b20;
}
.section-whyhome .whyhome-title{
  margin:0 0 14px;
  font-size:clamp(34px,4vw,56px);
  line-height:1.03;
  letter-spacing:-.04em;
  color:#153b78;
}
.section-whyhome .whyhome-intro{
  margin:0;
  max-width:64ch;
  font-size:18px;
  line-height:1.7;
  color:#5e6b82;
}
.section-whyhome .whyhome-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.section-whyhome .whyhome-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  min-height:150px;
  padding:20px 18px;
  border:1px solid #e1e8f2;
  border-radius:20px;
  background:#fff;
  box-shadow:0 8px 20px rgba(19,46,92,.04);
}
.section-whyhome .whyhome-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:999px;
  background:rgba(34,160,107,.12);
  color:#22a06b;
  font-size:16px;
  font-weight:900;
  flex:0 0 30px;
  margin-top:2px;
}
.section-whyhome .whyhome-copy h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.25;
  color:#153b78;
  font-weight:800;
}
.section-whyhome .whyhome-copy p{
  margin:0;
  font-size:15px;
  line-height:1.6;
  color:#5e6b82;
}

/* Trustsoft */
.section-trustsoft .trustsoft-box{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:40px;
  align-items:center;
  padding:44px;
  border-radius:28px;
  border:1px solid #d7e3f3;
  background:linear-gradient(180deg,#ffffff 0%,#f7faff 100%);
  box-shadow:0 14px 32px rgba(19,46,92,.05);
}
.section-trustsoft .trustsoft-left{max-width:640px}
.section-trustsoft .trustsoft-kicker{
  display:inline-block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#214f99;
}
.section-trustsoft .trustsoft-title{
  margin:0 0 16px;
  font-size:clamp(34px,4vw,52px);
  line-height:1.04;
  letter-spacing:-.03em;
  color:#153b78;
}
.section-trustsoft .trustsoft-text{
  margin:0;
  max-width:58ch;
  font-size:18px;
  line-height:1.7;
  color:#5e6b82;
}
.section-trustsoft .trustsoft-actions{
  margin-top:24px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.section-trustsoft .trustsoft-right{width:100%}
.section-trustsoft .trustsoft-list{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.section-trustsoft .trustsoft-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:18px;
  border-radius:18px;
  border:1px solid #dce7f4;
  background:#ffffff;
  box-shadow:0 6px 18px rgba(19,46,92,.04);
}
.section-trustsoft .trustsoft-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#f57b20;
  flex:0 0 10px;
  margin-top:8px;
}
.section-trustsoft .trustsoft-item-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.section-trustsoft .trustsoft-item-copy small{
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#6c83a8;
}
.section-trustsoft .trustsoft-item-copy strong{
  font-size:22px;
  line-height:1.25;
  color:#153b78;
  font-weight:800;
}

/* Assurance */
.section-assurance .assurance-shell{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:0;
  border:1px solid #d9e5f2;
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff 0%,#fbfcfe 100%);
  box-shadow:0 14px 34px rgba(19,46,92,.05);
}
.section-assurance .assurance-warranty{
  padding:48px 44px;
  background:#ffffff;
}
.section-assurance .assurance-finance{
  padding:42px 40px;
  background:
    radial-gradient(circle at top right, rgba(33,79,153,.08), transparent 36%),
    linear-gradient(180deg,#f7fbff 0%,#eef5fd 100%);
  border-left:1px solid #d9e5f2;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.section-assurance .assurance-kicker,
.section-assurance .assurance-finance-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#214f99;
}
.section-assurance .assurance-kicker::before,
.section-assurance .assurance-finance-kicker::before{
  content:"";
  width:28px;
  height:2px;
  border-radius:999px;
  background:#f57b20;
}
.section-assurance .assurance-title{
  margin:0 0 18px;
  max-width:560px;
  font-size:clamp(34px,4vw,54px);
  line-height:1.03;
  letter-spacing:-.04em;
  color:#153b78;
}
.section-assurance .assurance-finance-title{
  margin:0 0 14px;
  max-width:420px;
  font-size:clamp(28px,3.2vw,42px);
  line-height:1.05;
  letter-spacing:-.03em;
  color:#153b78;
}
.section-assurance .assurance-text{
  margin:0 0 18px;
  max-width:58ch;
  font-size:17px;
  line-height:1.68;
  color:#5e6b82;
}
.section-assurance .assurance-finance-text{
  margin:0 0 20px;
  max-width:38ch;
  font-size:17px;
  line-height:1.65;
  color:#5e6b82;
}
.section-assurance .assurance-finance-points{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-bottom:24px;
}
.section-assurance .assurance-point{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:0 16px;
  border:1px solid #dbe7f4;
  border-radius:14px;
  background:rgba(255,255,255,.75);
  color:#153b78;
  font-size:15px;
  font-weight:700;
  box-shadow:0 6px 16px rgba(19,46,92,.03);
}
.section-assurance .assurance-point::before{
  content:"";
  width:8px;
  height:8px;
  margin-right:12px;
  border-radius:50%;
  background:#f57b20;
  flex:0 0 8px;
}
.section-assurance .assurance-actions{margin-top:auto}
.section-assurance .assurance-actions .btn{
  min-height:56px;
  padding:0 28px;
  border-radius:14px;
  box-shadow:0 12px 24px rgba(245,123,32,.18);
}

/* Casepeek */
.section-casepeek .casepeek-head{
  max-width:860px;
  margin:0 auto 30px;
  text-align:center;
}
.section-casepeek .casepeek-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#214f99;
}
.section-casepeek .casepeek-kicker::before,
.section-casepeek .casepeek-kicker::after{
  content:"";
  width:34px;
  height:2px;
  border-radius:999px;
  background:#d9e5f2;
}
.section-casepeek .casepeek-title{
  margin:0 0 14px;
  font-size:clamp(34px,4.4vw,58px);
  line-height:1.04;
  letter-spacing:-.04em;
  color:#153b78;
}
.section-casepeek .casepeek-intro{
  margin:0 auto;
  max-width:68ch;
  font-size:18px;
  line-height:1.7;
  color:#5e6b82;
}
.section-casepeek .casepeek-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.section-casepeek .casepeek-card{
  border-radius:24px;
  overflow:hidden;
  border:1px solid #dbe6f2;
  background:#ffffff;
  box-shadow:0 12px 28px rgba(19,46,92,.05);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.section-casepeek .casepeek-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(19,46,92,.09);
  border-color:#cddced;
}
.section-casepeek .casepeek-link{
  display:block;
  color:inherit;
}
.section-casepeek .casepeek-media{
  position:relative;
  aspect-ratio:16/11;
  overflow:hidden;
  background:#eaf1f8;
}
.section-casepeek .casepeek-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(12,24,48,.04) 0%,rgba(12,24,48,.10) 35%,rgba(12,24,48,.48) 100%);
}
.section-casepeek .casepeek-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}
.section-casepeek .casepeek-card:hover .casepeek-media img{transform:scale(1.04)}
.section-casepeek .casepeek-date,
.section-casepeek .casepeek-type{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.section-casepeek .casepeek-date{
  top:14px;
  left:14px;
  background:rgba(255,255,255,.92);
  color:#153b78;
}
.section-casepeek .casepeek-type{
  right:14px;
  bottom:14px;
  background:rgba(21,59,120,.88);
  color:#ffffff;
  backdrop-filter:blur(6px);
}
.section-casepeek .casepeek-body{
  padding:20px 18px 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.section-casepeek .casepeek-body h3{
  margin:0 0 8px;
  font-size:19px;
  line-height:1.2;
  letter-spacing:-.02em;
  color:#153b78;
  font-weight:800;
}
.section-casepeek .casepeek-body p{
  margin:0;
  font-size:16px;
  line-height:1.55;
  color:#5e6b82;
}
.section-casepeek .casepeek-actions{
  margin-top:24px;
  display:flex;
  justify-content:center;
}
.section-casepeek .casepeek-cta{
  margin-top:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  min-height:36px;
  padding:0 14px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#153b78;
  background:#eef4fb;
  border:1px solid #d8e4f2;
  transition:all .2s ease;
}
.section-casepeek .casepeek-card:hover .casepeek-cta{
  background:#153b78;
  color:#fff;
  border-color:#153b78;
}

/* Processinc */
.section-processinc .processinc-shell{
  padding:44px 42px;
  border-radius:26px;
  border:1px solid #d9e5f2;
  background:
    radial-gradient(circle at top right, rgba(33,79,153,.10), transparent 40%),
    radial-gradient(circle at bottom left, rgba(33,79,153,.06), transparent 45%),
    linear-gradient(180deg,#f7fbff 0%,#eef5fd 100%);
  box-shadow:0 16px 34px rgba(19,46,92,.06);
}
.processinc-head{margin-bottom:28px}
.processinc-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#214f99;
}
.processinc-kicker::before{
  content:"";
  width:28px;
  height:2px;
  border-radius:999px;
  background:#f57b20;
}
.processinc-title{
  margin:0;
  font-size:clamp(34px,4vw,54px);
  line-height:1.04;
  letter-spacing:-.04em;
  color:#153b78;
}
.processinc-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px 28px;
}
.processinc-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:14px 16px;
  border-radius:14px;
  background:rgba(255,255,255,.7);
  border:1px solid #dbe7f4;
}
.processinc-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:50%;
  font-size:14px;
  font-weight:800;
  color:#fff;
  background:#22a06b;
  flex-shrink:0;
}
.processinc-item h3{
  margin:0 0 4px;
  font-size:17px;
  font-weight:800;
  color:#153b78;
}
.processinc-item p{
  margin:0;
  font-size:15px;
  line-height:1.55;
  color:#5e6b82;
}

/* Roadmap */
.section-roadmap .roadmap-head{
  max-width:860px;
  margin:0 auto 34px;
  text-align:center;
}
.section-roadmap .roadmap-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#214f99;
}
.section-roadmap .roadmap-kicker::before,
.section-roadmap .roadmap-kicker::after{
  content:"";
  width:30px;
  height:2px;
  border-radius:999px;
  background:#d9e5f2;
}
.section-roadmap .roadmap-title{
  margin:0 0 14px;
  font-size:clamp(34px,4.2vw,56px);
  line-height:1.03;
  letter-spacing:-.04em;
  color:#153b78;
}
.section-roadmap .roadmap-intro{
  margin:0 auto;
  max-width:66ch;
  font-size:18px;
  line-height:1.7;
  color:#5e6b82;
}
.section-roadmap .roadmap-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}
.section-roadmap .roadmap-step{
  position:relative;
  min-height:220px;
  padding:24px 22px 22px;
  border:1px solid #dbe6f2;
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff 0%,#fbfcfe 100%);
  box-shadow:0 12px 26px rgba(19,46,92,.05);
}
.section-roadmap .roadmap-step-top{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:16px;
}
.section-roadmap .roadmap-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:#153b78;
  color:#ffffff;
  font-size:15px;
  font-weight:800;
  letter-spacing:.04em;
  flex:0 0 42px;
  box-shadow:0 10px 18px rgba(21,59,120,.18);
}
.section-roadmap .roadmap-step h3{
  margin:2px 0 0;
  font-size:28px;
  line-height:1.08;
  letter-spacing:-.03em;
  color:#153b78;
  font-weight:800;
}
.section-roadmap .roadmap-step p{
  margin:0;
  font-size:17px;
  line-height:1.65;
  color:#5e6b82;
}
.section-roadmap .roadmap-step--final{
  background:
    radial-gradient(circle at top right, rgba(33,79,153,.08), transparent 36%),
    linear-gradient(180deg,#ffffff 0%,#f6faff 100%);
}

/* Voice */
.section-voice{position:relative}
.section-voice .voice-head{
  max-width:820px;
  margin:0 auto 30px;
  text-align:center;
}
.section-voice .voice-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#214f99;
}
.section-voice .voice-kicker::before,
.section-voice .voice-kicker::after{
  content:"";
  width:30px;
  height:2px;
  border-radius:999px;
  background:#d9e5f2;
}
.section-voice .voice-title{
  margin:0 0 12px;
  font-size:clamp(34px,4.2vw,56px);
  line-height:1.03;
  letter-spacing:-.04em;
  color:#153b78;
}
.section-voice .voice-intro{
  margin:0 auto;
  max-width:64ch;
  font-size:18px;
  line-height:1.7;
  color:#5e6b82;
}
.section-voice .voice-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  align-items:stretch;
}
.section-voice .voice-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:320px;
  padding:24px 22px 22px;
  border:1px solid #dbe6f2;
  border-radius:24px;
  background:
    radial-gradient(circle at top right, rgba(33,79,153,.05), transparent 34%),
    linear-gradient(180deg,#ffffff 0%,#fbfcfe 100%);
  box-shadow:0 12px 28px rgba(19,46,92,.05);
}
.section-voice .voice-card--featured{
  transform:translateY(-10px);
  border-color:#cfdff0;
  box-shadow:0 18px 34px rgba(19,46,92,.09);
}
.section-voice .voice-stars{
  margin-bottom:14px;
  font-size:16px;
  letter-spacing:.12em;
  color:#f57b20;
}
.section-voice .voice-quote-mark{
  position:absolute;
  top:20px;
  right:18px;
  font-size:72px;
  line-height:1;
  font-weight:900;
  color:rgba(21,59,120,.10);
  pointer-events:none;
}
.section-voice .voice-quote{
  margin:0 0 22px;
  font-size:17px;
  line-height:1.75;
  color:#5e6b82;
}
.section-voice .voice-meta{
  margin-top:auto;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.section-voice .voice-meta strong{
  font-size:20px;
  line-height:1.2;
  color:#153b78;
  font-weight:800;
}
.section-voice .voice-meta span{
  font-size:13px;
  line-height:1.4;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#6f84a5;
  font-weight:700;
}

/* Responsive */
@media (min-width:1101px){
  .topbar .container{
    width:min(calc(100% - 32px),1380px);
  }
  .topbar-inner{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:14px;
    min-height:84px;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:14px;
    flex:0 0 300px;
    min-width:300px;
    color:#fff;
    font-weight:900;
    font-size:22px;
    letter-spacing:-.02em;
    line-height:1.04;
  }
  .logo-mark{flex:0 0 44px}
  .nav-desktop{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    flex:1 1 auto;
    min-width:0;
    margin:0;
  }
  .nav-desktop a{
    min-height:46px;
    padding:0 18px;
    font-size:15px;
    white-space:nowrap;
    color:#fff;
  }
  .topbar-actions{
    display:flex;
    align-items:center;
    gap:12px;
    flex:0 0 auto;
    margin-left:8px;
  }
  .topbar-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 24px;
    border-radius:14px;
    white-space:nowrap;
    flex:0 0 auto;
  }
}

@media (max-width:1100px){
  .nav-desktop,
  .topbar-cta,
  .topbar-actions .phone-chip{
    display:none;
  }
  .mobile-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .hero.about .hero-grid,
  .process-estimate-wrap,
  .footer-cta-box{
    grid-template-columns:1fr;
  }
  .hero.about .hero-copy h1,
  .footer-cta-box h2{
    max-width:none;
  }
  .project-proof-grid,
  .reviews-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .section-services .service-cards{gap:22px}
  .section-services .card-body h3{font-size:28px}
  .section-whyhome .whyhome-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:1080px){
  .hero-grid,
  .featured,
  .split,
  .split.reverse,
  .case-overview,
  .contact-layout,
  .footer-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .service-areas,
  .process,
  .trustbar-inner,
  .info-bar,
  .project-gallery{
    grid-template-columns:1fr 1fr;
  }
  .footer-grid{grid-template-columns:1fr 1fr}
  .section-voice .voice-grid{grid-template-columns:1fr}
  .section-voice .voice-card--featured{transform:none}
}

@media (max-width:980px){
  .section-clarity .clarity-shell,
  .section-trustsoft .trustsoft-box,
  .section-assurance .assurance-shell{
    grid-template-columns:1fr;
  }
  .section-clarity .clarity-copy,
  .section-clarity .clarity-aside,
  .section-trustsoft .trustsoft-box,
  .section-assurance .assurance-warranty,
  .section-assurance .assurance-finance{
    padding:32px 22px;
  }
  .section-clarity .clarity-aside,
  .section-assurance .assurance-finance{
    border-left:0;
    border-top:1px solid #d9e5f2;
  }
  .section-clarity .clarity-title{font-size:clamp(30px,8vw,44px)}
  .section-clarity .clarity-aside-title{font-size:clamp(26px,7vw,38px)}
  .section-trustsoft .trustsoft-title{font-size:clamp(30px,8vw,42px)}
  .section-trustsoft .trustsoft-text{font-size:17px}
  .section-trustsoft .trustsoft-item-copy strong{font-size:20px}
  .section-assurance .assurance-title{font-size:clamp(30px,8vw,42px)}
  .section-assurance .assurance-finance-title{font-size:clamp(26px,7vw,36px)}
  .section-assurance .assurance-text,
  .section-assurance .assurance-finance-text{font-size:16px}
}

@media (max-width:900px){
  .service-cards,
  .project-proof-grid,
  .reviews-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:820px){
  .section-processinc .processinc-shell{padding:32px 24px}
  .processinc-grid{grid-template-columns:1fr}
  .processinc-title{font-size:clamp(30px,8vw,40px)}
}

@media (max-width:780px){
  .section{padding:44px 0}
  .panel,
  .process-side,
  .estimate-side,
  .footer-cta-box,
  .review-card .card-body,
  .card-body{
    padding:24px;
  }
  .project-proof-grid,
  .reviews-grid,
  .grid-2,
  .grid-3,
  .grid-4{
    grid-template-columns:1fr;
  }
  .checks.two{columns:1}
  .section-whyhome .whyhome-box{padding:32px 22px}
  .section-whyhome .whyhome-title{font-size:clamp(30px,8vw,42px)}
  .section-whyhome .whyhome-intro{font-size:17px}
  .section-whyhome .whyhome-grid{grid-template-columns:1fr}
  .section-whyhome .whyhome-item{min-height:auto}
}

@media (max-width:768px){
  .section-services{padding:56px 0 72px}
  .section-services .section-intro{
    margin:0 auto 28px;
    font-size:16px;
  }
  .section-services .service-cards{
    grid-template-columns:1fr;
    gap:18px;
  }
  .section-services .service-card{border-radius:22px}
  .section-services .card-body{padding:20px 18px 18px}
  .section-services .card-body h3{font-size:24px}
  .section-services .card-body p{font-size:15px}
  .section-services .btn{width:100%}
}

@media (max-width:767px){
  .process-side,
  .estimate-side{padding:26px 20px}
  .estimate-side h3{font-size:34px}
  .estimate-text{
    font-size:15px;
    margin-bottom:18px;
  }
  .estimate-form input,
  .estimate-form select,
  .estimate-submit{height:54px}
}

@media (max-width:760px){
  .nav{display:none}
  .topbar-actions .phone-chip{display:none}
  .hero{padding-top:74px}
  .hero-grid,
  .featured,
  .split,
  .split.reverse,
  .case-overview,
  .contact-layout,
  .footer-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .service-areas,
  .process,
  .trustbar-inner,
  .info-bar,
  .project-gallery,
  .checks.two,
  .before-after,
  .form-grid,
  .section-casepeek .casepeek-grid,
  .section-roadmap .roadmap-grid{
    grid-template-columns:1fr;
  }
  .container{width:min(calc(100% - 24px),var(--container))}
  .hero h1{font-size:44px}
  .hero p{font-size:20px}
  .section-title{font-size:clamp(30px,8vw,42px)}
  .card h3{font-size:24px}
  .text-block h2,
  .featured-copy h3,
  .footer-cta-box h2{font-size:32px}
  .footer-cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
  .section-casepeek .casepeek-intro,
  .section-roadmap .roadmap-intro,
  .section-voice .voice-intro{
    font-size:17px;
  }
  .section-roadmap .roadmap-step{
    min-height:auto;
    padding:22px 18px 20px;
    border-radius:20px;
  }
  .section-roadmap .roadmap-step h3{font-size:24px}
  .section-roadmap .roadmap-step p{font-size:16px}
  .section-voice .voice-card{
    min-height:auto;
    padding:22px 18px 20px;
    border-radius:20px;
  }
  .section-voice .voice-meta strong{font-size:18px}
}

@media (max-width:640px){
  .topbar-inner{min-height:76px}
  .mobile-menu-panel{padding:18px}
  .mobile-menu-head{margin-bottom:26px}
  .mobile-menu-nav a{
    min-height:58px;
    font-size:18px;
    padding:0 18px;
    border-radius:18px;
  }
  .mobile-menu-footer{flex-direction:column}
  .mobile-menu-footer .phone-chip,
  .mobile-menu-footer .btn{width:100%}
}