/* ==========================================================================
   Titan Legacy Maintenance LLC — site stylesheet
   Loaded from <helmet> in index.html.

   Sizing model: every length is in rem (1rem = the root font size), so type,
   padding, gaps and radii all scale from one number. The root font size steps
   down at narrow widths (section 13), which shrinks the whole design at once
   instead of needing a per-element override for each breakpoint.
   Media queries use em on purpose — those are always relative to the browser's
   default font size, so they stay put when the root size changes.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --brand: #eb0029;
  --brand-dark: #c60022;
  --brand-bright: #ff2a44;
  --brand-soft: #f2808f;
  --brand-tint: #fde7ea;
  --brand-tint-border: #f9c3cb;

  /* Neutrals */
  --ink: #111822;
  --ink-raised: #1d2939;
  --text: #344054;
  --text-muted: #475569;
  --text-soft: #667085;
  --text-invert-soft: #98a2b3;
  --text-on-dark: #d0d5dd;

  --surface: #ffffff;
  --surface-muted: #f9fafb;
  --page: #ebeff5;
  --border: #d5d7da;
  --border-soft: #eaecf0;
  --border-field: #d0d5dd;

  /* Success (checklist) */
  --ok-bg: #ecfdf3;
  --ok-border: #abefc6;
  --ok-ink: #085d3a;

  /* Type */
  --font-body: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Inter Tight", Inter, system-ui, sans-serif;
  --leading-body: 1.6;

  /* Layout */
  --container: 75rem;   /* 1200px at the default root size */
  --gutter: 1.5rem;     /* 24px */
  --section-y: 5rem;    /* 80px */
  --gap: 3.5rem;        /* 56px — two-column gutter */
  --radius-sm: 0.5rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;

  /* Elevation */
  --shadow-btn: 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 0.75rem 2rem -0.5rem rgba(17, 24, 34, 0.45);
  --shadow-hover: 0 0.5rem 1.5rem -0.75rem rgba(17, 24, 34, 0.18);
  --focus-ring: 0 0 0 3px rgba(235, 0, 41, 0.16);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%; /* respects the user's browser font-size setting */
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: var(--leading-body);
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}

p {
  margin: 0;
}

input,
select,
textarea,
button {
  font-family: inherit;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section--flush-bottom {
  padding-bottom: 1.5rem;
}

/* Grid children default to min-width:auto, which lets wide content (long
   <option> labels, unbroken strings) push a column past the viewport. */
.hero__inner > *,
.about__inner > *,
.quote__inner > *,
.why__panel > *,
.card-grid > *,
.contact__grid > *,
.site-footer__top > * {
  min-width: 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-title {
  margin: 0.75rem 0 0;
  font-size: clamp(1.75rem, 4.4vw, 2.5rem);
  line-height: 1.12;
}

.section-title--spaced {
  margin-bottom: 2rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.eyebrow--brand {
  color: var(--brand);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   4. Buttons & links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border: 1px solid transparent;
  border-radius: 0.625rem;
  padding: 0.9375rem 1.625rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--brand);
  color: var(--surface);
}

.btn--primary:hover {
  background: var(--brand-bright);
  color: var(--surface);
}

.btn--sm {
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-btn);
}

.btn--sm.btn--primary:hover {
  background: var(--brand-dark);
}

.btn--outline-light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--surface);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--surface);
}

.btn--dark {
  background: var(--ink);
  color: var(--surface);
  padding: 0.8125rem 1.25rem;
  font-size: 0.9375rem;
}

.btn--dark:hover {
  background: var(--ink-raised);
  color: var(--surface);
}

.btn--block {
  display: flex;
  width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand);
}

/* --------------------------------------------------------------------------
   5. Top bar & header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: var(--text-invert-soft);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem 1.25rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.topbar__address {
  letter-spacing: 0.02em;
}

.topbar__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.topbar__phone {
  color: #eaecf0;
  font-weight: 500;
}

.topbar__email {
  color: var(--text-invert-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand__logo {
  height: 3.25rem;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.nav__link:hover {
  color: var(--brand);
}

/* Mobile menu toggle — hidden on desktop, shown at <= 48em */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  padding: 0.5625rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--surface);
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(56rem 26rem at 78% 12%, rgba(235, 0, 41, 0.32), transparent 70%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--gap);
  align-items: center;
  padding-top: 5.5rem;
  padding-bottom: 6rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(249, 195, 203, 0.35);
  background: rgba(235, 0, 41, 0.16);
  color: var(--brand-tint-border);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4375rem 0.875rem;
  border-radius: 1rem;
}

.hero__title {
  margin: 1.375rem 0 0;
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--surface);
  text-wrap: balance;
}

.hero__title em {
  font-style: normal;
  color: var(--brand-soft);
}

.hero__text {
  margin: 1.375rem 0 0;
  max-width: 35rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-on-dark);
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat {
  background: var(--ink);
  padding: 1.25rem 1.375rem;
}

.stat__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--surface);
}

.stat__meta {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: var(--text-invert-soft);
}

/* Hero side card */
.hero__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: var(--ink);
  box-shadow: var(--shadow-card);
}

.hero__card-title {
  margin: 0.625rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 600;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.375rem;
}

.step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.step__num {
  flex: none;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  font-size: 0.8125rem;
  font-weight: 700;
}

.step__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.step__text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.hero__card .btn {
  margin-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   7. About
   -------------------------------------------------------------------------- */
.about {
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
}

.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--gap);
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.about__title {
  margin: 0.875rem 0 0;
  font-size: clamp(1.75rem, 4.4vw, 2.5rem);
  line-height: 1.12;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.pill {
  border: 1px solid var(--brand-tint-border);
  background: var(--brand-tint);
  color: var(--brand-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4375rem 0.875rem;
  border-radius: 1rem;
}

/* --------------------------------------------------------------------------
   8. Services
   -------------------------------------------------------------------------- */
.services__intro {
  margin: 0;
  max-width: 26rem;
  font-size: 1rem;
  line-height: var(--leading-body);
  color: var(--text-soft);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  border-color: var(--brand-soft);
  box-shadow: var(--shadow-hover);
}

.icon-badge {
  display: grid;
  place-items: center;
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  background: var(--brand-tint);
  color: var(--brand);
}

.service-card__title {
  margin: 1.125rem 0 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.45;
  letter-spacing: normal;
}

.service-card__text {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: var(--leading-body);
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   9. Why Titan
   -------------------------------------------------------------------------- */
.why {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.why__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.why__title {
  margin: 0.75rem 0 0;
  font-size: clamp(1.625rem, 3.6vw, 2.125rem);
  line-height: 1.24;
  text-wrap: balance;
}

.why__text {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: var(--leading-body);
  color: var(--text-muted);
  text-wrap: pretty;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.check {
  display: flex;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--surface-muted);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}

.check__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background: var(--ok-bg);
  border: 1px solid var(--ok-border);
  color: var(--ok-ink);
}

.check__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
}

.check__text {
  margin-top: 0.1875rem;
  font-size: 0.875rem;
  line-height: var(--leading-body);
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   10. Quote form
   -------------------------------------------------------------------------- */
.quote {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.quote__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--gap);
  align-items: start;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.quote__text {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-wrap: pretty;
}

.quote__points {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.625rem;
}

.point {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-size: 0.9375rem;
  color: var(--text);
}

.point__tick {
  color: var(--brand);
  font-weight: 700;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

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

.field__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.input,
.select,
.textarea {
  border: 1px solid var(--border-field);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 0.9375rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input,
.select {
  width: 100%;
  height: 2.75rem;
  padding: 0 0.875rem;
}

.select {
  padding: 0 0.75rem;
}

.textarea {
  padding: 0.75rem 0.875rem;
  line-height: 1.5;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--brand);
  box-shadow: var(--focus-ring);
}

.form-submit {
  grid-column: 1 / -1;
  height: 3rem;
  padding: 0 1.625rem;
  background: var(--brand);
  color: var(--surface);
  border: none;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--brand-dark);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: progress;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.form-status:empty {
  display: none;
}

.form-status--ok {
  color: var(--ok-ink);
  font-weight: 600;
}

.form-status--error {
  color: var(--brand-dark);
  font-weight: 600;
}

/* Honeypot: off-screen for people, still fillable by bots. Deliberately not
   display:none — some bots skip hidden fields. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   11. Contact
   -------------------------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(17.5rem, 100%), 1fr));
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.15s ease;
}

.contact-card:hover {
  border-color: var(--brand-soft);
  text-decoration: none;
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  min-width: 0;
}

.contact-card__label {
  font-size: 0.8125rem;
  color: var(--text-soft);
}

.contact-card__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--text-invert-soft);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.9fr;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 1.75rem;
}

.footer-brand__mark {
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.75rem 1.125rem;
}

.footer-brand__mark img {
  height: 2.875rem;
  width: auto;
  display: block;
}

.footer-brand__text {
  margin: 1rem 0 0;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: var(--leading-body);
  color: var(--text-invert-soft);
}

.footer-col__title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--surface);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: var(--leading-body);
}

.footer-links a {
  color: var(--text-invert-soft);
}

.footer-links a:hover {
  color: var(--surface);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-size: 0.8125rem;
  /* --text-soft on the dark footer is only 3.5:1 — below WCAG AA. */
  color: var(--text-invert-soft);
}

.tagline {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   13. Responsive
       Root font size steps down first — that alone rescales type and spacing.
       The rules below only handle things that must change *shape*, not size.
   -------------------------------------------------------------------------- */
@media (max-width: 64em) { /* 1024px — tablets: collapse two-column layouts */
  :root {
    --section-y: 4rem;
    --gap: 2.5rem;
  }

  .hero__inner,
  .about__inner,
  .quote__inner,
  .why__panel {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding-top: 4rem;
    padding-bottom: 4.5rem;
  }

  .hero__text {
    max-width: none;
  }

  .about__inner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .why {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .why__panel {
    padding: 2rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 48em) { /* 768px — phones/small tablets */
  html {
    font-size: 93.75%; /* 15px */
  }

  :root {
    --gutter: 1.25rem;
    --section-y: 3.5rem;
    --gap: 2.25rem;
  }

  /* The address/phone/email strip costs a lot of vertical space on phones and
     the same details are repeated in the contact section, so drop it here. */
  .topbar {
    display: none;
  }

  .site-header__inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  /* Collapsed menu: links stack under the header and open via the toggle. */
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 0.375rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav__link {
    padding: 0.75rem 0.125rem;
    border-top: 1px solid var(--border-soft);
    font-size: 0.9375rem;
  }

  .nav .btn {
    margin-top: 0.75rem;
    justify-content: center;
  }

  .hero__inner {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
  }

  .quote-form {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    padding: 1.375rem;
  }

  .field--full,
  .form-submit,
  .form-note {
    grid-column: auto;
  }

  /* Keep form controls at >=16px so iOS Safari doesn't zoom on focus. */
  .input,
  .select,
  .textarea {
    font-size: 16px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-top: 2.75rem;
  }
}

@media (max-width: 30em) { /* 480px — small phones */
  html {
    font-size: 87.5%; /* 14px */
  }

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

  .hero__badge {
    letter-spacing: 0.06em;
  }

  .why__panel {
    padding: 1.5rem;
  }

  .hero__card,
  .service-card {
    padding: 1.375rem;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .site-footer__bottom-inner {
    justify-content: flex-start;
  }
}
