* {
  box-sizing: border-box;
}

:root {
  --bg: #f4f6f5;
  --text: #121417;
  --muted: #68707a;
  --dark: #0f1419;
  --dark-2: #171d23;
  --accent: #00c66b;
  --accent-dark: #00a95b;
  --white: #ffffff;
  --border: #e3e6ea;
  --shadow: 0 18px 50px rgba(0,0,0,.10);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 40px;
  background: var(--dark);
  color: var(--accent);
  border-radius: 8px;
  font-size: 15px;
}

.brand-text {
  font-size: 17px;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #3f4852;
}

.desktop-nav a:hover {
  color: #000;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  background: var(--accent);
  color: #111;
  border-radius: 10px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: .2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #111;
}

.btn-full {
  width: 100%;
}

.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(0,198,107,.15), transparent 24%),
    linear-gradient(135deg, #0d1115 0%, #151b21 100%);
  color: white;
  overflow: hidden;
}

.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 64px;
  padding: 76px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
  color: #008f4d;
  margin-bottom: 14px;
}

.eyebrow.light,
.hero .eyebrow {
  color: var(--accent);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.055em;
  max-width: 760px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.hero-copy {
  max-width: 650px;
  color: #c8cfd6;
  font-size: 19px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: #d9dfe4;
  font-size: 14px;
}

.hero-card {
  background: #fff;
  color: var(--text);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  transform: rotate(1.5deg);
}

.glass-graphic {
  height: 330px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.3), transparent 35%),
    linear-gradient(180deg, #bcd8e6 0%, #729aaa 100%);
  position: relative;
  overflow: hidden;
}

.glass-line {
  position: absolute;
  inset: 38px;
  border: 5px solid rgba(15,20,25,.55);
  border-radius: 30px 30px 60px 60px;
  transform: perspective(500px) rotateX(-6deg);
}

.crack {
  position: absolute;
  width: 2px;
  background: rgba(255,255,255,.9);
  transform-origin: top;
  box-shadow: 0 0 2px rgba(255,255,255,.7);
}

.crack-1 { height: 120px; left: 55%; top: 75px; transform: rotate(24deg); }
.crack-2 { height: 95px; left: 56%; top: 78px; transform: rotate(-44deg); }
.crack-3 { height: 75px; left: 56%; top: 78px; transform: rotate(74deg); }

.hero-card-content {
  padding: 24px 26px 28px;
  display: grid;
  gap: 5px;
}

.hero-card-content strong {
  font-size: 18px;
}

.hero-card-content span {
  color: var(--muted);
  font-size: 14px;
}

.trust-strip {
  background: white;
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  padding: 28px 18px;
  display: grid;
  gap: 2px;
  border-right: 1px solid var(--border);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong {
  font-size: 17px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p,
.section p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,.035);
}

.card p {
  margin-bottom: 0;
  font-size: 14px;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #e9fff4;
  border-radius: 12px;
  margin-bottom: 22px;
  font-size: 24px;
}

.dark-section {
  background: var(--dark);
  color: white;
}

.dark-section p {
  color: #bfc7cf;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  color: #e8edf1;
}

.quote-box {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 38px;
}

.quote-box p {
  color: white;
  font-size: 22px;
  line-height: 1.45;
}

.quote-box a {
  color: var(--accent);
  font-weight: 700;
}

.quote-mark {
  font-size: 64px;
  line-height: .8;
  color: var(--accent);
}

.areas {
  align-items: start;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-tags span {
  background: white;
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.quote-section {
  background: #eef1f4;
}

.quote-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.contact-stack a {
  color: #333;
}

.quote-form {
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

input, select, textarea {
  width: 100%;
  font: inherit;
  border: 1px solid #d9dde2;
  border-radius: 9px;
  padding: 13px 14px;
  background: #fff;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: #00a95b;
  box-shadow: 0 0 0 3px rgba(0,198,107,.15);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 12px;
  margin: 12px 0 0;
  text-align: center;
}

footer {
  background: #0a0d10;
  color: #fff;
  padding: 50px 0 95px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-wrap p {
  color: #98a3ad;
  margin-bottom: 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: #c5ccd2;
  font-size: 14px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.mobile-bar {
  display: none;
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .nav-wrap > .btn-small {
    display: none;
  }

  .hero-grid,
  .split,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
    min-height: auto;
    padding: 62px 0 54px;
  }

  .hero-card {
    transform: none;
  }

  .glass-graphic {
    height: 240px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .quote-grid {
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 26px, 1120px);
  }

  .brand-text {
    font-size: 15px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid > div {
    padding: 20px 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form {
    padding: 22px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .mobile-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #10151a;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,.3);
    overflow: hidden;
  }

  .mobile-bar a {
    color: white;
    text-align: center;
    padding: 14px 8px;
    font-size: 13px;
    font-weight: 800;
    border-right: 1px solid rgba(255,255,255,.1);
  }

  .mobile-bar a:last-child {
    background: var(--accent);
    color: #111;
    border-right: 0;
  }
}

.brand-logo {
  display: block;
  width: 180px;
  height: 56px;
  object-fit: cover;
  object-position: center 27%;
  border-radius: 8px;
}

.hero-logo-image {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.branded-card {
  border: 1px solid rgba(0,198,107,.3);
}

.footer-logo {
  width: 220px;
  height: 68px;
}

@media (max-width: 560px) {
  .brand-logo {
    width: 150px;
    height: 48px;
  }

  .hero-logo-image {
    height: 240px;
  }

  .footer-logo {
    width: 190px;
    height: 60px;
  }
}

.field-help {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 500;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.response-card {
  margin-top: 22px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  display: grid;
  gap: 3px;
}

.response-card span {
  color: var(--muted);
  font-size: 14px;
}

.response-card a {
  color: #008f4d;
  font-weight: 800;
}

.quick-cta {
  background: var(--accent);
  padding: 28px 0;
}

.quick-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.quick-cta-inner > div:first-child {
  display: grid;
  gap: 2px;
}

.quick-cta-inner strong {
  font-size: 22px;
}

.quick-cta-inner span {
  font-size: 14px;
}

.quick-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-cta .btn {
  background: #0f1419;
  color: white;
}

.quick-cta .btn:hover {
  background: #000;
}

.quick-cta .btn-dark-outline {
  background: transparent;
  border: 1px solid rgba(0,0,0,.45);
  color: #0f1419;
}

.quick-cta .btn-dark-outline:hover {
  background: rgba(0,0,0,.08);
}

@media (max-width: 700px) {
  .quick-cta-inner {
    display: grid;
  }

  .quick-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
