/* ============ TOKENS ============ */
:root {
  --blue: #0a5cf0;
  --blue-dark: #0848c4;
  --blue-soft: #e8f0fc;
  --navy: #0b1f4d;
  --navy-deep: #081a42;
  --footer-bg: #0b1e4a;
  --ink: #0b1a3a;
  --muted: #4a5670;
  --line: #dbe3f0;
  --bg-light: #eaf1fb;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 2px 10px rgba(11, 31, 77, .07);
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --gutter: clamp(16px, 5.5vw, 60px);
}

/* ============ BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 62px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
address { font-style: normal; }
svg { display: block; }
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::after { content: ""; width: 60px; height: 1px; background: var(--blue); opacity: .8; }
.eyebrow-light { color: #fff; font-size: 10.5px; letter-spacing: .06em; }
.eyebrow-light::after { background: #fff; width: 90px; opacity: .6; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 600; border: 2px solid transparent; border-radius: 6px;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn .ico { width: 20px; height: 20px; flex: none; }
.btn .ico-arrow { width: 16px; height: 16px; transition: transform .18s ease; }
.btn:hover .ico-arrow { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(10, 92, 240, .28); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { background: #fff; color: var(--ink); border-color: #1a2b52; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-sm { font-size: 12px; padding: 9px 16px; border-radius: 5px; box-shadow: none; }
.btn-md { font-size: 12.5px; padding: 11px 20px; border-radius: 5px; }
.btn-lg { font-size: 16px; padding: 13px 26px; }
.btn-block { width: 100%; font-size: 16px; padding: 16px; border-radius: 6px; }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(10, 92, 240, .45); outline-offset: 2px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  color: #fff;
  height: 54px;
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(0, 0, 0, .3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 20px; }

.logo { display: block; position: relative; width: 196px; height: 40px; flex: none; line-height: 1; }
.logo-mark { position: absolute; left: 0; top: 0; width: 100%; height: 22px; }
.logo-text {
  position: absolute; left: 0; bottom: 2px;
  font-weight: 800; font-style: italic; font-size: 17px; letter-spacing: .01em; color: #fff;
  white-space: nowrap;
}
.logo-text em { font-style: italic; color: #2f7bff; }

.main-nav { display: flex; align-items: center; gap: 4px; position: absolute; left: 50%; transform: translateX(-50%); }
.main-nav a:not(.btn) {
  position: relative; padding: 8px 16px; font-size: 13px; font-weight: 500; color: #dfe7f7;
  transition: color .2s ease;
}
.main-nav a:not(.btn):hover, .main-nav a.active { color: #fff; }
.main-nav a.active { font-weight: 600; }
.main-nav a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: -8px; height: 3px;
  background: var(--blue); border-radius: 2px; box-shadow: 0 0 14px 3px rgba(10, 92, 240, .75);
}
.nav-cta-mobile { display: none; }
.nav-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #fff; white-space: nowrap; transition: color .2s ease; }
.nav-phone:hover { color: #7fb0ff; }
.nav-phone .ico { width: 18px; height: 18px; flex: none; color: #3b86ff; }
.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(100deg, #fff 0%, #f3f7fd 55%, #e9f0fb 100%);
}
.hero-media {
  position: absolute; top: 0; right: 0; bottom: 0; width: 58%;
  background: url("assets/hero.png") right top / cover no-repeat;
}
.hero-media::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 22%;
  background: linear-gradient(90deg, #f3f7fd 0%, rgba(243, 247, 253, 0) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-block: 28px 30px; }
.hero-content { max-width: 470px; }

.hero .eyebrow { font-size: 11.5px; }
.hero h1 { margin-top: 8px; font-weight: 800; letter-spacing: -.02em; line-height: 1.02; font-size: clamp(34px, 4.3vw, 44px); }
.hero h1 span { display: block; }
.h1-dark { color: var(--ink); }
.h1-blue { color: var(--blue); }

.price-banner {
  display: inline-block; margin: 6px 0 0 -10px; padding: 3px 22px 3px 18px;
  background: var(--blue); color: #fff; font-weight: 700;
  font-size: clamp(22px, 3.2vw, 33px); letter-spacing: -.01em; line-height: 1.2;
  transform: skewX(-12deg); border-radius: 8px;
  box-shadow: 0 8px 20px rgba(10, 92, 240, .3);
}
.price-banner span { display: block; transform: skewX(12deg); }

.hero-sub { margin-top: 16px; font-size: 15px; color: #1c2947; max-width: 340px; line-height: 1.5; }

.symptoms { display: flex; flex-wrap: wrap; gap: 6px 0; margin-top: 22px; }
.symptoms li { display: flex; align-items: center; gap: 8px; padding-right: 14px; margin-right: 14px; border-right: 1px solid var(--line); font-size: 12px; line-height: 1.25; color: #1c2947; }
.symptoms li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.sym-ico { width: 40px; height: 40px; flex: none; border-radius: 50%; border: 2px solid var(--blue); color: var(--blue); display: grid; place-items: center; background: #fff; }
.sym-ico svg { width: 24px; height: 24px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-cta .btn-lg { font-size: 15.5px; padding: 12px 24px; }
.hero-cta .btn-primary { box-shadow: 0 8px 20px rgba(10, 92, 240, .3); }

.trust-row { display: flex; flex-wrap: wrap; gap: 8px 0; margin-top: 22px; width: max-content; max-width: calc(100vw - 2 * var(--gutter));
  padding: 8px 12px; margin-left: -12px; border-radius: 8px; background: rgba(255, 255, 255, .88); backdrop-filter: blur(4px); }
.trust-row li { display: flex; align-items: center; gap: 8px; padding: 0 14px; border-left: 1px solid var(--line); font-size: 10.5px; color: #1c2947; line-height: 1.2; white-space: nowrap; }
.trust-row li:first-child { padding-left: 0; border-left: 0; }
.trust-row svg { width: 26px; height: 26px; flex: none; color: var(--navy); }
.trust-row li:nth-child(2) svg { color: var(--navy); }
.trust-row li:nth-child(3) svg, .trust-row li:nth-child(4) svg { color: var(--navy); }

/* ============ SERVICES ============ */
.services { background: var(--bg-light); padding-block: 48px; }
.services-inner { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 2fr); gap: 48px; align-items: center; }
.services-intro { padding-top: 0; }
.services-intro .eyebrow { font-size: 12px; letter-spacing: .18em; }
.services-intro h2 { margin-top: 12px; font-size: clamp(28px, 3.2vw, 36px); line-height: 1.2; font-weight: 700; letter-spacing: -.01em; }
.services-intro p:not(.eyebrow) { margin: 18px 0 26px; font-size: 16px; color: #26355a; max-width: 360px; line-height: 1.6; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.service-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: #fff; border-radius: 10px; padding: 28px 24px 24px; box-shadow: var(--shadow);
  min-height: 230px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(11, 31, 77, .14); }
.s-ico { width: 48px; height: 48px; flex: none; color: var(--blue); margin-bottom: 16px; }
.service-card h3 { font-size: 19px; line-height: 1.25; font-weight: 700; color: var(--ink); }
.service-card p { margin-top: 10px; font-size: 15px; line-height: 1.5; color: #59647d; }
.learn { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 18px; font-size: 15px; font-weight: 600; color: var(--blue); }
.learn svg { width: 13px; height: 13px; transition: transform .18s ease; }
.service-card:hover .learn svg { transform: translateX(3px); }

/* ============ ABOUT ============ */
.about { background: #fff; padding-block: 19px 17px; }
.about-inner { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1fr); gap: 38px; align-items: center; }
.about-media { position: relative; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); margin: 0; }
.about-media img { width: 100%; height: 222px; object-fit: cover; }
.about-media figcaption {
  position: absolute; left: 0; bottom: 0; background: var(--blue); color: #fff;
  padding: 9px 14px; font-size: 12px; font-weight: 500; border-top-right-radius: 8px;
}
.about-content .eyebrow { font-size: 10.5px; letter-spacing: .18em; }
.about-content h2 { margin-top: 10px; font-size: clamp(22px, 2.6vw, 24px); font-weight: 700; letter-spacing: -.01em; }
.about-content p:not(.eyebrow) { margin-top: 12px; font-size: 12.8px; line-height: 1.55; color: #26355a; max-width: 340px; }

.about-feats { display: flex; flex-wrap: wrap; margin: 20px 0 18px; gap: 10px 0; }
.about-feats li { display: flex; align-items: flex-start; gap: 7px; padding: 0 10px; border-left: 1px solid var(--line); font-size: 10.5px; line-height: 1.35; color: #1c2947; white-space: nowrap; }
.about-feats li:first-child { padding-left: 0; border-left: 0; }
.about-feats svg { width: 22px; height: 22px; flex: none; color: var(--navy); margin-top: -2px; }
.about-feats li:nth-child(n+3) svg { margin-top: -2px; }

/* ============ WHY CHOOSE ============ */
.why {
  position: relative; color: #fff; padding-block: 24px 22px;
  background:
    radial-gradient(900px 260px at 78% 30%, rgba(20, 80, 200, .35), transparent 65%),
    linear-gradient(115deg, #071940 0%, #0b2559 50%, #08204f 100%);
}
.why::before {
  content: ""; position: absolute; inset: 0; opacity: .07; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, #fff 0 1px, transparent 1px 14px);
}
.why-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 30px; align-items: center; }
.why-intro h2 { margin-top: 8px; font-size: clamp(22px, 2.8vw, 24px); font-weight: 700; }
.why-intro p:not(.eyebrow) { margin-top: 6px; font-size: 13.5px; color: #dfe8fa; }

.why-text { padding-left: 28px; border-left: 3px solid #3b86ff; font-size: clamp(17px, 1.9vw, 21px); line-height: 1.55; color: #dfe8fa; }
.why-text strong { font-weight: 700; color: #fff; }

/* ============ CONTACT ============ */
.contact { background: #fff; padding-block: 48px 56px; }
.contact-inner { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr); gap: 40px 48px; align-items: center; }
.contact-info .eyebrow { font-size: 12px; letter-spacing: .18em; }
.contact-info .eyebrow::after { width: 50px; }
.contact-info h2 { margin-top: 12px; font-size: clamp(28px, 3.2vw, 36px); line-height: 1.2; font-weight: 700; letter-spacing: -.01em; }
.contact-info > p:not(.eyebrow) { margin-top: 14px; font-size: 16px; color: #26355a; line-height: 1.6; max-width: 380px; }
.contact-list { margin-top: 26px; display: grid; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-size: 16px; color: #1c2947; min-width: 0; overflow-wrap: anywhere; }
.c-ico { width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; }
.c-ico svg { width: 20px; height: 20px; }
.contact-list address { line-height: 1.5; }
.contact-list a:hover { color: var(--blue); }

.contact-form { background: #fff; border-radius: 12px; padding: 32px 30px 28px; box-shadow: 0 6px 28px rgba(11, 31, 77, .12); border: 1px solid #eef2f8; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; margin-bottom: 22px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: #26355a; margin-bottom: 8px; }
.req { color: #e0352b; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  border: 1px solid #ccd6e6; border-radius: 6px; background: #fff; padding: 13px 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field select { appearance: none; padding-right: 38px; color: #7a869c;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230b1a3a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center; }
.field select:valid:not([value=""]) { color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: #8b96ab; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10, 92, 240, .14); outline: 0; }
.field textarea { resize: vertical; min-height: 110px; }
.field-message { grid-row: span 2; display: flex; flex-direction: column; }
.field-message textarea { flex: 1; min-height: 130px; }
.field.invalid input { border-color: #e0352b; }
.err { display: block; min-height: 0; margin-top: 5px; font-size: 13px; color: #e0352b; }
.form-status { margin-top: 14px; font-size: 14px; text-align: center; min-height: 0; }
.form-status.ok { color: #0d8a4a; font-weight: 600; }
.form-status.fail { color: #e0352b; }

.map-card { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 2.25fr); border-radius: 12px; overflow: hidden; box-shadow: 0 6px 28px rgba(11, 31, 77, .12); background: #fff; border: 1px solid #eef2f8; }
.map-info { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 28px 26px; }
.map-pin { width: 34px; height: 42px; margin-bottom: 14px; color: var(--blue); fill: var(--blue); }
.map-pin use { fill: var(--blue); }
.map-info h3 { font-size: 20px; font-weight: 700; }
.map-info p { margin-top: 8px; font-size: 15px; color: #3b4763; line-height: 1.55; }
.map-info a { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 11px 20px; border-radius: 6px; background: var(--blue); color: #fff; font-size: 15px; font-weight: 600; transition: background .18s ease; }
.map-info a:hover { background: var(--blue-dark); }
.map-info a svg { width: 14px; height: 14px; transform: rotate(-45deg); }
.map-frame { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ============ FOOTER ============ */
.site-footer { background: var(--footer-bg); color: #fff; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 18px 22px; }
.site-footer .logo { width: 210px; height: 44px; }
.site-footer .logo-mark { height: 24px; }
.site-footer .logo-text { font-size: 18px; }
.footer-nav { display: flex; gap: 30px; font-size: 12.5px; }
.footer-nav a { color: #e6edfb; transition: color .18s ease; }
.footer-nav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.socials { display: flex; gap: 14px; }
.socials a { color: #fff; transition: transform .18s ease, color .18s ease; }
.socials a:hover { transform: translateY(-3px); color: #6aa2ff; }
.socials svg { width: 22px; height: 22px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px; padding-block: 14px 20px; border-top: 1px solid rgba(255, 255, 255, .15); font-size: 10.5px; color: #cdd8ee; position: relative; }
.legal { display: flex; gap: 18px; }
.legal a:hover { color: #fff; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.service-card.reveal:nth-child(3n+2) { transition-delay: .08s; }
.service-card.reveal:nth-child(3n+3) { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ RESPONSIVE ============ */
/* Large desktop */
@media (min-width: 1200px) {
  .hero-inner { padding-block: 34px 36px; }
  .hero-content { max-width: 500px; }
  .hero h1 { font-size: 52px; }
  .price-banner { font-size: 35px; }
}

/* Small laptop */
@media (max-width: 1100px) {
  .footer-nav { gap: 22px; }
}

/* Header: compact phone button */
@media (max-width: 1020px) {
  .nav-phone span { display: none; }
  .nav-phone { width: 36px; height: 36px; justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, .1); }
}

/* Tablet */
@media (max-width: 960px) {
  .hero { display: flex; flex-direction: column; }
  .hero-media { position: relative; width: 100%; height: clamp(240px, 42vw, 380px); order: 2; background-position: 60% center; }
  .hero-media::before { inset: 0 0 auto 0; width: 100%; height: 40px; background: linear-gradient(180deg, #f3f7fd, rgba(243, 247, 253, 0)); }
  .hero-inner { order: 1; padding-block: 26px 14px; }
  .hero-content { max-width: 620px; }
  .hero-sub { max-width: 460px; }

  .services { padding-block: 40px; }
  .services-inner { grid-template-columns: 1fr; gap: 24px; }
  .services-intro p:not(.eyebrow) { max-width: 520px; }
  .about { padding-block: 32px; }
  .why { padding-block: 30px; }
  .why-inner { grid-template-columns: 1fr; gap: 22px; }
  .contact { padding-block: 40px 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 28px; }
  .contact-info > p:not(.eyebrow) { max-width: 520px; }
  .map-card { grid-template-columns: 1fr; }
  .map-info { padding: 22px 20px; }
  .map-frame { min-height: 300px; }

  .footer-top { flex-wrap: wrap; justify-content: center; gap: 18px 32px; padding-block: 24px 18px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}

/* Header: hamburger menu */
@media (max-width: 820px) {
  .nav-cta { display: none; }
  .nav-phone span { display: inline; }
  .nav-phone { width: auto; height: auto; background: none; border-radius: 0; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 54px; left: 0; right: 0; transform: none;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy); padding: 6px var(--gutter) 16px; border-top: 1px solid rgba(255, 255, 255, .1);
    max-height: 0; overflow: hidden; visibility: hidden; opacity: 0;
    transition: max-height .3s ease, opacity .25s ease, visibility .3s;
  }
  .main-nav.open { max-height: 340px; visibility: visible; opacity: 1; }
  .main-nav a:not(.btn) { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .main-nav a.active::after { left: 0; right: auto; width: 28px; bottom: 6px; }
  .nav-cta-mobile { display: inline-flex; margin-top: 14px; }

  .service-grid { gap: 16px; }
  .service-card { padding: 24px 20px 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 22px; }
  .about-media img { height: auto; aspect-ratio: 422 / 221; }
  .about-content p:not(.eyebrow) { max-width: none; font-size: 14px; }
  .about-feats li { font-size: 12px; }
}

/* Phone */
@media (max-width: 640px) {
  .nav-phone span { display: none; }
  .nav-phone { width: 36px; height: 36px; justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, .1); }
  .nav-actions { gap: 10px; }

  .hero-media { height: 240px; }
  .hero-cta .btn-lg { flex: 1 1 100%; }
  .symptoms li { flex: 1 1 100%; border-right: 0; margin: 0; padding-right: 0; }
  .trust-row { width: auto; max-width: none; margin-left: 0; padding: 10px 0; background: none; backdrop-filter: none; }
  .trust-row li { flex: 1 1 45%; border-left: 0; padding: 0; max-width: none; white-space: normal; }

  .services { padding-block: 36px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .services-intro p:not(.eyebrow) { margin: 14px 0 20px; font-size: 15px; }

  .about-feats li { flex: 1 1 45%; border-left: 0; padding: 0; }
  .why-text { padding-left: 18px; }

  .contact { padding-block: 36px 40px; }
  .contact-info > p:not(.eyebrow), .contact-list li { font-size: 15px; }
  .contact-form { padding: 24px 18px 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .field-message { grid-row: auto; }
  .field-message textarea { min-height: 110px; }
  .map-frame { min-height: 260px; }

  .footer-top { flex-direction: column; gap: 18px; }
  .footer-nav { gap: 12px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Small phone */
@media (max-width: 380px) {
  .logo { width: 158px; height: 36px; }
  .logo-mark { height: 18px; }
  .logo-text { font-size: 14px; }
  .nav-actions { gap: 6px; }
  .hero h1 { font-size: 30px; }
  .price-banner { font-size: 20px; margin-left: -6px; }
  .btn-lg, .hero-cta .btn-lg { font-size: 14.5px; padding: 12px 18px; }
  .trust-row li, .about-feats li { flex-basis: 100%; }
  .contact-form { padding: 20px 14px; }
  .legal { flex-wrap: wrap; justify-content: center; gap: 6px 18px; }
}
