:root {
  --orange: #f06807;
  --red: #f06807;
  --red-dark: #d95d06;
  --ink: #262626;
  --muted: #637083;
  --line: #e8edf3;
  --panel: #ffffff;
  --soft: #f6f8fb;
  --teal: #0f766e;
  --amber: #f5b84b;
  --shadow: 0 22px 70px rgba(18, 23, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(232, 237, 243, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 178px;
}

.brand-logo {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  color: #303846;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 26px rgba(242, 84, 69, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background: #f8fafc;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 38%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 23, 34, 0.2), rgba(18, 23, 34, 0));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
  padding: 80px clamp(18px, 6vw, 84px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: #384252;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 660px;
  margin: 0;
}

.hero-stats div,
.pillars article,
.plan-card,
.trust-item,
.quote-form {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 45px rgba(18, 23, 34, 0.08);
}

.hero-stats div {
  padding: 18px;
}

.hero-stats dt {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 36px;
}

.section-heading h2,
.feature-text h2,
.app-copy h2,
.quote-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.pillars,
.plan-grid,
.trust {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
}

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

.pillars article,
.plan-card,
.trust-item {
  padding: 28px;
}

.pillars span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 800;
}

.pillars h3,
.plan-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.pillars p,
.feature-text p,
.app-copy p,
.quote-copy p,
.plan-card p,
.trust-item span,
.footer p {
  color: var(--muted);
}

.feature-band,
.app-section,
.quote {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 92px clamp(18px, 5vw, 72px);
}

.feature-band {
  background: var(--soft);
}

.feature-image img,
.app-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-text,
.app-copy,
.quote-copy {
  max-width: 560px;
}

.check-list,
.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plan-card li {
  position: relative;
  padding-left: 28px;
  color: #313b49;
}

.check-list li::before,
.plan-card li::before {
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 999px;
  content: "";
}

.plans {
  background: #fff;
}

.plan-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
}

.plan-card.featured {
  border-color: rgba(242, 84, 69, 0.45);
  box-shadow: 0 24px 70px rgba(242, 84, 69, 0.16);
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.app-section {
  background: var(--ink);
  color: #fff;
}

.app-section .eyebrow,
.app-section p {
  color: #d7dde6;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.store-links a {
  padding: 13px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 800;
}

.trust {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}

.trust-item {
  display: grid;
  gap: 8px;
}

.trust-item strong {
  font-size: 1.1rem;
}

.quote {
  background:
    radial-gradient(circle at 12% 20%, rgba(245, 184, 75, 0.16), transparent 28%),
    linear-gradient(180deg, #fff, #f7f9fc);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: #263041;
  font-weight: 700;
}

.contact-list a {
  color: var(--red-dark);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: #fff;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #394354;
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 54px;
  padding: 64px clamp(18px, 7vw, 120px) 46px;
  color: #d6dbe2;
  background: var(--ink);
}

.footer div {
  min-width: 0;
}

.footer-brand img {
  width: 188px;
  max-width: 100%;
  margin-bottom: 14px;
}

.footer span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.footer p {
  margin-bottom: 8px;
  color: #fff;
}

.footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-link-title {
  margin-top: 22px;
}

.footer-monitoring {
  align-self: end;
}

.footer-monitoring a {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
  text-decoration: none;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  color: #cbd1d8;
}

.footer-bottom p {
  margin: 0;
  color: #cbd1d8;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .nav {
    position: absolute;
    top: 73px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 68px;
    padding-bottom: 56px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.45) 100%);
  }

  .section-heading,
  .feature-band,
  .app-section,
  .quote {
    grid-template-columns: 1fr;
  }

  .pillars,
  .plan-grid,
  .trust,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .feature-text,
  .app-copy,
  .quote-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand,
  .brand-logo {
    min-width: 0;
    width: 146px;
  }

  .hero-content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-stats,
  .pillars,
  .plan-grid,
  .trust,
  .quote-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .section,
  .feature-band,
  .app-section,
  .quote {
    padding: 64px 16px;
  }

  .footer-bottom {
    display: grid;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 24px;
  }

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

  .feature-image {
    order: 2;
  }

  .feature-text {
    order: 1;
  }
}
