:root {
    --bg: #ffffff;
    --text: #0b1220;
    --muted: #5b6474;

    /* Keep your blue vibe but modernise it */
    --brand: #0b3b8f;
    --brand-2: #0a2f6f;
    --accent: #1f6feb;

    --border: rgba(15, 23, 42, .10);
    --shadow: 0 10px 30px rgba(2, 6, 23, .10);
    --radius: 18px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.muted {
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: linear-gradient(180deg, var(--accent), var(--brand));
    color: #fff;
    border-color: rgba(255, 255, 255, .15);
    box-shadow: 0 10px 24px rgba(31, 111, 235, .25);
}

.btn-primary:hover {
    box-shadow: 0 14px 32px rgba(31, 111, 235, .30);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

.badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .95);
    font-weight: 600;
    font-size: 13px;
    backdrop-filter: blur(6px);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 20px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  flex-shrink:0;
}

.logo{
  font-weight:900;
  font-size:34px;
  letter-spacing:0.04em;
  line-height:1;
  background: linear-gradient(90deg,#2f7cf6,#0b3b8f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

/* Base nav items */
.nav>a,
.nav-dropdown-toggle {
  font-weight: 500;
  color: rgba(11, 18, 32, .82);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  transition: background .15s ease, color .15s ease;
}

/* Hover only */
.nav>a:hover,
.nav-dropdown-toggle:hover {
  color: var(--brand);
}

/* Remove pill hover from Services */
.nav-dropdown-toggle:hover {
  background: transparent !important;
  color: var(--brand);
}

/* Active page */
.nav>a.active,
.nav-dropdown.active .nav-dropdown-toggle {
  background: transparent;
  color: var(--brand);
  font-weight: 700;
}

.header-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(11, 18, 32, .8);
    border-radius: 2px;
}

.mobile-nav {
    border-top: 1px solid var(--border);
    background: #fff;
    padding: 10px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* Ensure hidden attribute always wins */
.mobile-nav[hidden]{
  display: none !important;
}

.mobile-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.mobile-nav a:hover {
    background: rgba(15, 23, 42, .04);
    text-decoration: none;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1200px 600px at 20% 10%, rgba(31, 111, 235, .20), transparent 60%),
        radial-gradient(900px 600px at 80% 0%, rgba(11, 59, 143, .18), transparent 55%),
        linear-gradient(180deg, #07122a, #071a3a);
    color: #fff;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 30px;
    padding: 56px 0;
    align-items: center;
}

.hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 3.4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.8px;
}

.hero p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    max-width: 54ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
    padding: 18px;
}

.hero-card .stat {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.hero-card .stat:last-child {
    border-bottom: none;
}

.hero-card .k {
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
}

.hero-card .v {
    font-weight: 800;
}

.trustbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.trustbar-inner {
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 14px 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgba(11, 18, 32, .78);
    font-weight: 600;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(31, 111, 235, .35);
    box-shadow: 0 0 0 6px rgba(31, 111, 235, .10);
}

/* Sections */
.section {
    padding: 56px 0;
}

.section h2 {
    margin: 0 0 10px;
    font-size: 30px;
    letter-spacing: -0.5px;
}

.section .lead {
    margin: 0 0 26px;
    color: var(--muted);
    max-width: 70ch;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 1px 0 rgba(2, 6, 23, .02);
    background: #fff;
}

.card h3 {
    margin: 10px 0 6px;
    font-size: 18px;
}

.card p {
    margin: 0 0 12px;
    color: var(--muted);
}

.card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.card-top {
    height: 42px;
    width: 42px;
    border-radius: 14px;
    background: rgba(31, 111, 235, .10);
    border: 1px solid rgba(31, 111, 235, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--brand);
}

/* CTA band */
.cta-band {
    padding: 52px 0;
    background: linear-gradient(180deg, rgba(31, 111, 235, .10), rgba(11, 59, 143, .08));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-inner h2 {
    margin: 0;
    font-size: 26px;
}

.cta-inner p {
    margin: 6px 0 0;
    color: var(--muted);
    max-width: 70ch;
}

/* Forms */
.form {
    display: grid;
    gap: 12px;
    max-width: 720px;
}

.field {
    display: grid;
    gap: 6px;
}

label {
    font-weight: 700;
    font-size: 14px;
}

input,
textarea,
select {
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font: inherit;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

/* Footer */
.site-footer {
    padding: 44px 0 18px;
    background: #070f22;
    color: rgba(255, 255, 255, .88);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 24px;
    align-items: start;
}

.footer-brand {
    font-weight: 900;
    letter-spacing: .2px;
    font-size: 18px;
}

.footer-title {
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, .78);
}

.footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .10);
    margin-top: 22px;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.site-footer .muted {
    color: rgba(255, 255, 255, .62);
}

@media (max-width: 920px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Page hero (light pages like Materials) */
.page-hero{
  padding: 54px 0;
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(31,111,235,.10), transparent 60%),
    radial-gradient(900px 600px at 80% 0%, rgba(11,59,143,.08), transparent 55%),
    linear-gradient(180deg, #07122a, #071a3a);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.page-hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start;
}

.badge-dark{
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

.page-hero h1{
  margin: 12px 0 10px;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.7px;
}

.page-hero .lead{
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  max-width: 70ch;
}

/* Make ghost button behave nicely on dark backgrounds */
.page-hero .btn-ghost,
.hero .btn-ghost{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.page-hero .btn-ghost:hover,
.hero .btn-ghost:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.55);
  color: #fff;
}

/* Right-side hero panel */
.hero-panel{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  padding: 16px;
}

.hero-panel-title{
  font-weight: 800;
  margin-bottom: 12px;
  color: rgba(255,255,255,.9);
}

.mini-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-card{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 12px;
}

.mini-k{ font-weight: 700; color: rgba(255,255,255,.72); font-size: 13px; }
.mini-v{ font-weight: 900; font-size: 18px; margin-top: 2px; }
.mini-s{ color: rgba(255,255,255,.72); font-size: 13px; margin-top: 4px; }

/* Material grid */
.material-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.material-tile{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(2,6,23,.02);
  transition: transform .10s ease, box-shadow .18s ease, border-color .18s ease;
}
.material-tile{
  min-height: 170px;
  padding: 18px;
}
.material-tile h3{
  font-size: 19px;
}
.material-tile p{
  font-size: 14px;
  line-height: 1.45;
}
.material-section{
  padding: 34px 0;
}
.material-head{
  margin-bottom: 18px;
}
.material-section h2{
  scroll-margin-top: 110px; /* stops anchor jump hiding under sticky header */
}
.material-head{
  align-items:center;
}
.material-head .btn{
  padding: 10px 14px;
  font-size: 14px;
}

.material-tile:hover{
  text-decoration:none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(31,111,235,.25);
}

.material-top{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,.02);
  color: rgba(11,18,32,.75);
}

.chip-easy{ border-color: rgba(34,197,94,.25); background: rgba(34,197,94,.08); }
.chip-balanced{ border-color: rgba(59,130,246,.25); background: rgba(59,130,246,.08); }
.chip-flex{ border-color: rgba(168,85,247,.25); background: rgba(168,85,247,.08); }
.chip-heat{ border-color: rgba(245,158,11,.25); background: rgba(245,158,11,.10); }
.chip-outdoor{ border-color: rgba(16,185,129,.25); background: rgba(16,185,129,.10); }
.chip-pro{ border-color: rgba(99,102,241,.25); background: rgba(99,102,241,.10); }

.material-tile h3{
  margin: 0 0 6px;
  font-size: 18px;
}
.material-tile p{
  margin: 0 0 10px;
  color: var(--muted);
}
.material-meta{
  font-weight: 700;
  color: rgba(11,18,32,.70);
  font-size: 13px;
}

/* Material sections */
.material-sections{
  background: linear-gradient(180deg, rgba(2,6,23,.02), transparent);
  border-top: 1px solid var(--border);
}

.material-section{
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.material-section:last-child{ border-bottom: none; }

.material-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.material-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 920px){
  .page-hero-inner{ grid-template-columns: 1fr; }
  .mini-grid{ grid-template-columns: 1fr; }
  .material-grid{ grid-template-columns: 1fr; }
  .material-cards{ grid-template-columns: 1fr; }
}

/* Quote form card */

.quote-form-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 34px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow);
}

.quote-form-wrap h2 {
    margin-top: 0;
}

.quote-form-wrap .btn {
    width: 100%;
    margin-top: 6px;
}
/* Announcement bar */

.announcement-bar{
  background: linear-gradient(90deg,#0b3b8f,#1f6feb);
  color:#fff;
  font-size:14px;
}

.announcement-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0;
}

.announcement-inner span{
  font-weight:500;
}

.announcement-close{
  background:none;
  border:none;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  opacity:.8;
}

.announcement-close:hover{
  opacity:1;
}

/* Ghost button on LIGHT backgrounds (cards/sections) */
.btn-ghost-light{
  background: #fff;
  color: rgba(11,18,32,.85);
  border: 1px solid var(--border);
}
.btn-ghost-light:hover{
  background: rgba(15,23,42,.03);
  text-decoration: none;
}
.section h2 {
    text-align: center;
}

.section .lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.card {
    display: flex;
    flex-direction: column;
}
.card-cta {
    margin-top: auto;
    padding-top: 14px;
}
.card-cta {
    display: flex;
    justify-content: center;
}
.card-top {
    margin: 0 auto 10px auto;
}
.card-top{
    margin: 0 auto 14px auto;
}

.card h3{
    text-align:center;
}

.card p{
    text-align:center;
}
.card ul{
    list-style-position: inside;
    text-align: center;
    padding-left: 0;
}
/* --- Materials page header alignment fix --- */
/* Material section header */
.material-header{
  text-align:center;
  margin-bottom:28px;
}

.material-header h2{
  margin-bottom:8px;
}

.material-desc{
  max-width:720px;
  margin:0 auto 16px auto;
  color:var(--muted);
  line-height:1.6;
}

/* Quote button */
.material-quote-btn{
  margin-top:6px;
}

.material-title{
  min-width: 0;
  max-width: 72ch; /* keeps description from running too wide */
}

.material-title h2{
  margin: 0 0 6px;
}

.material-desc{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.material-cta{
  flex-shrink: 0;
  margin-top: 2px; /* visually aligns with the title baseline */
}

/* Better separation between material sections */
.material-section{
  padding: 34px 0;
  border-bottom: 1px solid rgba(15, 23, 42, .10);
}

.material-section:last-child{
  border-bottom: none;
}

/* On mobile, stack header and button nicely */
@media (max-width: 920px){
  .material-header{
    flex-direction: column;
    align-items: flex-start;
  }

  .material-cta{
    margin-top: 10px;
  }
}
/* Material cards: keep headings centered, but lists readable */
.material-cards .card h3{
  text-align: center;
}

.material-cards .card ul{
  text-align: left;
  display: inline-block;   /* keeps list as a neat block within centered card */
  margin: 10px auto 0;
  padding-left: 18px;
}

.material-cards .card li{
  margin: 6px 0;
}
/* Material header layout */
.material-header{
  text-align: center;
  margin-bottom: 30px;
}

/* Limit description width so it aligns visually */
.material-desc{
  max-width: 620px;
  margin: 10px auto 18px;
  text-align: center;
}

/* Center the quote button */
.material-cta{
  text-align: center;
}
.material-cards{
  margin-bottom: 32px;
}

.material-cta{
  margin-top: 8px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a,
.nav-dropdown-toggle {
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: " ▾";
  font-size: 0.85em;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  display: none;
  z-index: 1000;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #f8fafc;
}

.nav a.active,
.nav-dropdown.active .nav-dropdown-toggle {
  font-weight: 600;
}
.nav-dropdown-toggle:hover {
  background: rgba(31, 111, 235, .08);
  color: var(--brand);
}
.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.section-alt-light {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.text-stack {
  max-width: 720px;
}

@media (max-width: 920px) {
  .split-section {
    grid-template-columns: 1fr;
  }
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(31, 111, 235, .10);
  border: 1px solid rgba(31, 111, 235, .18);
  flex-shrink: 0;
}
.section-dark-soft {
  background: linear-gradient(180deg, #f8fbff, #eef4ff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-kicker{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:10px;
}
.split-section h2{
  margin-top:0;
}
.section-kicker::after{
  content:"";
  display:block;
  width:36px;
  height:2px;
  background:var(--accent);
  margin-top:6px;
  border-radius:2px;
}
.section{
  padding:72px 0;
}
.section-kicker{
  display:block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:6px;
}
/* Thank you page */
.thank-you-section {
  padding: 80px 0;
}

.thank-you-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.thank-you-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

.thank-you-card h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.7px;
}

.thank-you-lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  text-align: left;
}

.thank-you-ref {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  margin-bottom: 26px;
  border-radius: 14px;
  background: rgba(31, 111, 235, .06);
  border: 1px solid rgba(31, 111, 235, .14);
}

.thank-you-ref-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.thank-you-ref-value {
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  word-break: break-word;
}

.thank-you-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.thank-you-actions .btn {
  width: auto;
}

@media (max-width: 700px) {
  .thank-you-card {
    padding: 28px 22px;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}
.about-intro .container,
.section .container {
  max-width: 1200px;
}

.about-split {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.about-main {
  max-width: 760px;
}

.about-main h2,
.section h2 {
  margin-bottom: 16px;
}

.about-main p {
  margin: 0 0 18px;
  line-height: 1.75;
  color: #334155;
}

.about-side.card {
  padding: 28px;
  position: sticky;
  top: 110px;
}

.about-side h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.about-side ul {
  margin: 0;
  padding-left: 18px;
}

.about-side li {
  margin-bottom: 10px;
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-two-col .card,
.grid-3 .card {
  padding: 28px;
}

.section.section-alt {
  background: #f8fbff;
}

.section h2 {
  text-align: left;
}

.section .lead {
  text-align: left;
  max-width: 780px;
  margin: 0 0 28px;
}

@media (max-width: 900px) {

  .about-split,
  .about-two-col {
    grid-template-columns: 1fr;
  }

  .about-side.card {
    position: static;
    top: auto;
  }
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 360px;
  gap: 32px;
  align-items: start;
}

.contact-main h2 {
  margin-bottom: 10px;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.contact-card {
  padding: 28px;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.contact-card ul {
  margin: 0;
  padding-left: 18px;
}

.contact-card li {
  margin-bottom: 10px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-bottom-row {
  align-items: end;
}

.field-small {
  max-width: 220px;
}

.contact-submit-wrap {
  display: flex;
  align-items: end;
  justify-content: flex-start;
  height: 100%;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-errors {
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid #f1b4b4;
  background: #fff5f5;
  border-radius: 14px;
  color: #7f1d1d;
}

.form-errors strong {
  display: block;
  margin-bottom: 8px;
}

.form-errors ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .field-small {
    max-width: none;
  }
}