/* Zenith Monitoring — layout & theme (brand blues + orange from mockups) */
:root {
  --blue-900: #002a54;
  --blue-800: #003b6f;
  --blue-700: #004a99;
  --blue-600: #0b5cad;
  --blue-400: #3b82c4;
  --blue-100: #e8f0fe;
  --blue-50: #eef4fc;
  --orange: #ff8c42;
  --orange-hover: #f58233;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-400: #8892a0;
  --gray-600: #555555;
  --shadow-lg: 0 25px 50px -12px rgba(0, 42, 84, 0.45);
  --radius: 12px;
  --radius-sm: 8px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Merriweather", Georgia, "Times New Roman", serif;
  --container: min(1240px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255, 140, 66, 0.4);
}

.btn--orange:hover {
  background: var(--orange-hover);
}

.btn--soft {
  background: var(--blue-100);
  color: var(--blue-800);
}

.btn--soft:hover {
  background: #d9e7fc;
}

.btn--send {
  padding: 1rem;
  font-size: 1rem;
}

/* Shared “Zenith” blue surface (hero, Silver card, footer) */
.zenith-bg {
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.hero > .zenith-bg,
.footer > .zenith-bg,
.price-card--featured > .zenith-bg {
  position: absolute;
  inset: 0;
}

.zenith-bg__layer {
  position: absolute;
  inset: 0;
}

.zenith-bg__layer--base {
  background:
    radial-gradient(ellipse 100% 85% at 50% 42%, #0c5caa 0%, #004a99 38%, #003b6f 62%, #002a54 100%),
    linear-gradient(165deg, #001a33 0%, #003b6f 55%, #005099 100%);
}

.zenith-bg__layer--lines {
  inset: -40% -20%;
  opacity: 0.14;
  background: repeating-linear-gradient(
    -42deg,
    transparent,
    transparent 5px,
    rgba(147, 197, 253, 0.55) 5px,
    rgba(147, 197, 253, 0.55) 6px
  );
  mask-image: linear-gradient(90deg, black 0%, black 55%, transparent 92%);
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 55%, transparent 92%);
}

.zenith-bg__layer--rays {
  opacity: 1;
  background:
    linear-gradient(32deg, transparent 35%, rgba(56, 189, 248, 0.07) 48%, transparent 58%),
    linear-gradient(210deg, transparent 40%, rgba(96, 165, 250, 0.06) 52%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(34, 211, 238, 0.08), transparent 55%);
}

.zenith-bg__layer--slant {
  width: 52%;
  height: 145%;
  left: -18%;
  top: -22%;
  transform: skewX(-11deg);
  background: linear-gradient(100deg, rgba(0, 31, 61, 0.92) 0%, rgba(0, 59, 111, 0.35) 55%, transparent 100%);
  box-shadow: 24px 0 80px -20px rgba(34, 211, 238, 0.22);
}

.zenith-bg__layer--slant--b {
  left: 2%;
  opacity: 0.55;
  width: 38%;
  box-shadow: 18px 0 50px -12px rgba(56, 189, 248, 0.18);
}

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero__wrap {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem 0;
  gap: 1rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav__toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.nav__links a:not(.btn) {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
}

.nav__links a:not(.btn):hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: rgba(255, 140, 66, 0.12);
  border: 1px solid rgba(255, 140, 66, 0.3);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1rem;
}

.hero__br {
  display: none;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 34rem;
}

.hero__checks {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  max-width: 34rem;
}

.hero__checks li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.55rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 6px;
  height: 10px;
  border: solid var(--orange);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__stat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.hero__card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card-frame {
  background: linear-gradient(160deg, rgba(0, 31, 61, 0.85) 0%, rgba(0, 59, 111, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 420px;
}

.hero__logo-panel {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero__logo-img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--white {
  background: var(--white);
}

.section--muted {
  background: var(--gray-100);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin: 0;
  font-size: 1.0625rem;
  font-family: var(--font-serif);
  color: var(--gray-600);
}

.section__subtitle--accent {
  color: var(--blue-700);
  font-weight: 500;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature {
  background: var(--white);
  border: 1px solid #e8edf4;
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature:hover {
  box-shadow: 0 8px 32px rgba(0, 42, 84, 0.1);
  transform: translateY(-2px);
}

.feature__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature__icon {
  width: 24px;
  height: 24px;
  color: var(--blue-700);
}

.feature__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-900);
}

.feature__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card--featured {
  background: var(--blue-900);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  position: relative;
}

.price-card--featured > *:not(.zenith-bg) {
  position: relative;
  z-index: 1;
}

.price-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}


.price-card__header .price-card__name {
  margin: 0;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  margin-top: 0.2rem;
}

.tier-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tier-badge--bronze {
  background: #fdf3e7;
  color: #92400e;
  border: 1px solid #f5c98a;
}

.tier-badge--bronze::before {
  background: radial-gradient(circle at 35% 35%, #f5c98a, #b45309);
  box-shadow: inset 0 -1px 2px rgba(0,0,0,0.2);
}

.tier-badge--silver {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #c8cdd5;
}

.tier-badge--silver::before {
  background: radial-gradient(circle at 35% 35%, #ffffff, #9ca3af);
  box-shadow: inset 0 -1px 2px rgba(0,0,0,0.15);
}

.tier-badge--gold {
  background: #fefce8;
  color: #854d0e;
  border: 1px solid #fde047;
}

.tier-badge--gold::before {
  background: radial-gradient(circle at 35% 35%, #fde68a, #d97706);
  box-shadow: inset 0 -1px 2px rgba(0,0,0,0.2);
}

.price-card--featured .tier-badge--silver {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.25);
}

.price-card__badge {
  position: relative;
  top: auto;
  left: auto;
  align-self: flex-start;
  z-index: 2;
  margin: 0 0 0.85rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card__badge--ghost {
  background: transparent;
  border: none;
  pointer-events: none;
  visibility: hidden;
  display: block;
}

.price-card__blurb {
  margin: 0 0 1.15rem;
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray-600);
}

.price-card__blurb--on-dark {
  color: rgba(255, 255, 255, 0.88);
}

.price-card__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.35;
}

.price-card--featured .price-card__name {
  color: var(--white);
}

.price-card__list {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-card__list li {
  position: relative;
  padding-left: 2.1rem;
  margin-bottom: 0.65rem;
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--blue-800);
  color: var(--white);
  font-size: 0.5625rem;
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
}

.price-card__list--light li {
  color: rgba(255, 255, 255, 0.92);
}

.price-card__list--light li::before {
  background: var(--orange);
  color: var(--white);
  line-height: 1.25rem;
}

/* How it works */
.steps {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.steps__track {
  display: none;
}

.steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step {
  position: relative;
  background: var(--blue-50);
  border: 1px solid rgba(0, 74, 153, 0.2);
  border-radius: var(--radius);
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.55rem;
  width: 1.1rem;
  height: 3px;
  background: var(--blue-400);
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 2;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.step__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-900);
}

.step__text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* FAQ */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq__item[open] {
  box-shadow: 0 4px 20px rgba(0, 42, 84, 0.08);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-900);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--blue-400);
  flex-shrink: 0;
  line-height: 1;
}

.faq__item[open] .faq__question::after {
  content: "−";
}

.faq__item[open] .faq__question {
  border-bottom: 1px solid #e2e8f0;
}

.faq__answer {
  margin: 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Contact */
.section--contact {
  background: var(--gray-100);
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

#faq {
  padding-bottom: 2.5rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.contact__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--blue-900);
}

.contact__lead {
  margin: 0 0 2rem;
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 32rem;
}

.contact__details {
  margin: 0;
}

.contact__details > div {
  margin-bottom: 1.25rem;
}

.contact__details dt {
  font-weight: 700;
  color: var(--blue-900);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact__details dd {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-600);
}

.contact__form-wrap {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(12, 30, 61, 0.06);
}

.contact__form .form__row {
  margin-bottom: 1.25rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--blue-900);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: var(--gray-400);
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: 2px solid var(--blue-700);
  outline-offset: 1px;
  border-color: var(--blue-700);
}

.form__row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact__form textarea {
  resize: vertical;
  min-height: 160px;
}

/* Footer */
.footer {
  position: relative;
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 0;
  overflow: hidden;
}

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  align-items: start;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__location {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer__heading {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer__links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  text-align: center;
}

.footer__copy {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__disclaimer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.footer__disclaimer p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.hero__stat-num sup {
  font-size: 0.6em;
  vertical-align: super;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive — tablet landscape / small desktop */
@media (max-width: 1024px) {
  .steps__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

/* Responsive — tablet portrait and below */
@media (max-width: 900px) {
  .nav {
    position: relative;
    flex-wrap: wrap;
    z-index: 100;
  }

  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 101;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 1.25rem;
    right: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(0, 59, 111, 0.98);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a:not(.btn) {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__links .btn {
    margin-top: 0.75rem;
    justify-content: center;
  }

  .section {
    padding: 3rem 0;
  }

  .section__header {
    margin-bottom: 1.5rem;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.75rem;
    padding-top: 0.25rem;
  }

  .hero__eyebrow {
    display: inline-block;
  }

  .hero__br {
    display: none;
  }

  .hero__wrap {
    position: relative;
    z-index: 1;
  }

  .hero__copy {
    display: contents;
  }

  .hero__eyebrow { display: none; }
  .hero__card    { order: 0; margin-top: 0; margin-bottom: 1rem; }
  .hero__title   { order: 1; margin-bottom: 0.5rem; }
  .hero__lead    { order: 2; margin-bottom: 0.75rem; }
  .hero__checks  { order: 3; margin-bottom: 0.75rem; }
  .hero__actions { order: 4; }
  .hero__stats   { order: 5; padding-top: 0; border-top: 1px solid rgba(255,255,255,0.12); }

  .hero__card-frame {
    max-width: 300px;
    margin-inline: auto;
    padding: 0.85rem;
  }

  .hero__logo-panel {
    padding: 1.25rem 1.75rem;
  }

  .hero__logo-img {
    max-width: 200px;
  }

  .hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .hero__lead {
    margin-inline: auto;
    font-size: 0.9375rem;
  }

  .hero__checks {
    margin-inline: auto;
    text-align: left;
    max-width: 22rem;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__actions .btn {
    flex: 1;
    max-width: 220px;
  }

  .hero__stats {
    justify-content: center;
    gap: 1.25rem;
  }

  .hero__stat-label {
    font-size: 0.7rem;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .price-card--featured {
    transform: none;
    order: -1;
  }

  .steps__list {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__grid .footer__col {
    align-items: center;
  }
}

/* Responsive — small phones */
@media (max-width: 480px) {
  :root {
    --container: min(1120px, calc(100% - 1.5rem));
  }

  .section {
    padding: 2.5rem 0;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .hero__title {
    font-size: 1.35rem;
  }


  .hero__logo-panel {
    padding: 1rem 1.25rem;
  }

  .hero__logo-img {
    max-width: 160px;
  }

  .hero__stats {
    gap: 1rem;
  }

  .hero__stat-num {
    font-size: 1.1rem;
  }

  .hero__actions .btn {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .section__subtitle {
    font-size: 0.9375rem;
  }

  .price-card {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .price-card--featured {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .step {
    padding: 1.5rem 1rem 1.25rem;
  }

  .contact__form-wrap {
    padding: 1.25rem;
  }

  .form__row--half {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-top: 2.5rem;
  }

  .footer__grid {
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .btn--lg {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }
}
