/* =========================================================
   New Way Studios LLC — Corporate Website
   Palette: White + Dark Navy Blue
   ========================================================= */

:root {
  --navy-900: #081a31;
  --navy-800: #0b1f3a;
  --navy-700: #102a4c;
  --navy-600: #1c3a63;
  --navy-500: #2f5688;
  --navy-300: #7f97b8;
  --ink: #16202e;
  --slate: #4a586b;
  --slate-light: #6b7888;
  --line: #e3e8ef;
  --line-soft: #eef1f6;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-tint: #f0f4f9;
  --white: #ffffff;
  --gold: #c9a24b;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(8, 26, 49, 0.06), 0 2px 8px rgba(8, 26, 49, 0.05);
  --shadow-md: 0 8px 24px rgba(8, 26, 49, 0.10);
  --shadow-lg: 0 20px 50px rgba(8, 26, 49, 0.16);

  --container: 1160px;
  --header-h: 76px;

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ----------------------- Reset ----------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-800);
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--navy-600);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover { color: var(--navy-800); }

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

ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

.sr-only,
.sr-only-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----------------------- Layout ----------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(64px, 9vw, 110px) 0;
}
.section-alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section-intro {
  color: var(--slate);
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin: 0 0 0.9rem;
}

/* ----------------------- Buttons ----------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--navy-700);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-300);
}
.btn-ghost:hover {
  border-color: var(--navy-800);
  color: var(--navy-800);
  background: rgba(11, 31, 58, 0.04);
}

.btn-light {
  background: var(--white);
  color: var(--navy-800);
}
.btn-light:hover {
  background: #f1f4f9;
  color: var(--navy-800);
  box-shadow: var(--shadow-md);
}

.btn-block { width: 100%; }

/* ----------------------- Header ----------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(8, 26, 49, 0.04), 0 6px 24px rgba(8, 26, 49, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-800);
}
.brand:hover { color: var(--navy-800); }
.brand-mark { display: flex; }
.brand-mark svg { border-radius: 9px; box-shadow: var(--shadow-sm); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 600;
}

.main-nav { display: flex; align-items: center; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-menu a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--radius-sm);
}
.nav-menu a:hover {
  color: var(--navy-800);
  background: rgba(11, 31, 58, 0.05);
}
.nav-menu a.nav-cta {
  margin-left: 0.4rem;
  background: var(--navy-800);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  font-weight: 600;
}
.nav-menu a.nav-cta:hover { background: var(--navy-700); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------- Hero ----------------------- */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 100px) 0 clamp(60px, 8vw, 96px);
  background:
    radial-gradient(1100px 480px at 78% -10%, rgba(28, 58, 99, 0.10), transparent 60%),
    radial-gradient(900px 420px at 0% 110%, rgba(11, 31, 58, 0.06), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(720px 380px at 70% 20%, #000, transparent 75%);
  mask-image: radial-gradient(720px 380px at 70% 20%, #000, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-copy h1 { margin-bottom: 1rem; }
.lede {
  font-size: 1.18rem;
  color: var(--slate);
  max-width: 38ch;
  margin-bottom: 1.8rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.hero-badges li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.9rem;
  color: var(--slate);
  font-weight: 500;
}
.hero-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy-500);
}

.hero-card {
  position: relative;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 14px -14px -16px 14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  opacity: 0.10;
  z-index: 0;
}
.hero-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat {
  background: var(--white);
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--navy-800);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy-500);
  margin-left: 2px;
  margin-top: -0.4rem;
}
.stat-label {
  font-size: 0.86rem;
  color: var(--slate-light);
  margin-top: 0.45rem;
}

/* ----------------------- Trust bar ----------------------- */
.trustbar {
  background: var(--navy-800);
  color: #d8e1ee;
  background-image:
    radial-gradient(700px 220px at 12% 0%, rgba(255, 255, 255, 0.06), transparent 60%);
}
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
}
.trust-item {
  padding: 2.4rem 1.6rem 2.4rem 0;
}
.trust-item + .trust-item {
  padding-left: 1.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
}
.trust-item h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.trust-item p {
  font-size: 0.92rem;
  color: #aebed3;
  margin: 0;
}

/* ----------------------- About ----------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.about-text p { color: var(--slate); }

.checklist {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.75rem;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink);
  font-size: 0.98rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--bg-tint);
  border: 1px solid #d4ddea;
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.42em;
  width: 0.42rem;
  height: 0.7rem;
  border: solid var(--navy-600);
  border-width: 0 2px 2px 0;
  transform: rotate(40deg);
}

.about-aside {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-sm);
}
.about-aside h3 {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.2rem;
}
.value-list { display: grid; gap: 1.1rem; }
.value-list dt {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-700);
  font-size: 1rem;
}
.value-list dd {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  color: var(--slate);
}

/* ----------------------- Cards (Services) ----------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d6deea;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg-tint);
  color: var(--navy-700);
  margin-bottom: 1.2rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--slate); font-size: 0.97rem; margin: 0; }

/* ----------------------- Process ----------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 24px);
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-top: 2.2rem;
  border-top: 2px solid var(--line);
}
.process-step::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy-800);
  box-shadow: 0 0 0 4px var(--bg);
}
.process-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy-300);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.9rem; color: var(--slate); margin: 0; }

/* ----------------------- CTA strip ----------------------- */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(255, 255, 255, 0.10), transparent 60%),
    radial-gradient(500px 260px at 0% 100%, rgba(201, 162, 75, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-strip-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(40px, 6vw, 64px) 24px;
}
.cta-strip h2 { color: var(--white); margin-bottom: 0.4rem; }
.cta-strip p { color: #c6d2e2; margin: 0; }

/* ----------------------- Company info ----------------------- */
.company-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.company-grid > div > p { color: var(--slate); }

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 1.8rem;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--navy-600);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
}
.info-card h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-light);
  margin-bottom: 0.35rem;
}
.info-card p { font-size: 0.98rem; color: var(--ink); margin: 0; line-height: 1.5; }

.company-aside {
  background: var(--navy-800);
  color: #d8e1ee;
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-md);
}
.company-aside h3 {
  color: var(--white);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.2rem;
}
.company-aside .checklist li { color: #d8e1ee; }
.company-aside .checklist li::before {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.company-aside .checklist li::after { border-color: #9fc0ec; }
.aside-note {
  margin-top: 1.4rem;
  font-size: 0.86rem;
  color: #a9b9cf;
}

/* ----------------------- Contact ----------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.contact-info > p { color: var(--slate); }
.contact-list {
  display: grid;
  gap: 1.3rem;
  margin-top: 1.8rem;
}
.contact-list li {
  display: grid;
  gap: 0.2rem;
}
.contact-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--slate-light);
}
.contact-list a, .contact-list span:not(.contact-label) {
  font-size: 1.02rem;
  color: var(--ink);
}
.contact-list a { color: var(--navy-600); font-weight: 600; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 1.15rem; }
.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 0.4rem;
}
.optional { font-weight: 400; color: var(--slate-light); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47, 86, 136, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-row.has-error input,
.contact-form .form-row.has-error select,
.contact-form .form-row.has-error textarea {
  border-color: #c0392b;
  background: #fdf3f2;
}
.form-error {
  display: none;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: #c0392b;
}
.form-row.has-error .form-error { display: block; }
.form-status {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.is-success { color: #1f7a3d; }
.form-status.is-error { color: #c0392b; }
.form-disclaimer {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--slate-light);
}

/* ----------------------- Footer ----------------------- */
.site-footer {
  background: var(--navy-900);
  color: #b9c6d8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(48px, 7vw, 72px);
  padding-bottom: clamp(32px, 5vw, 48px);
}
.footer-brand .brand-name {
  color: var(--white);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.6rem;
}
.footer-brand p { font-size: 0.92rem; color: #93a4b9; }
.footer-address { margin-top: 0.5rem; }
.site-footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-nav ul { display: grid; gap: 0.5rem; }
.footer-nav a, .footer-contact a { color: #b9c6d8; font-size: 0.95rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact p { font-size: 0.95rem; }
.back-to-top {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #9fc0ec;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.3rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.84rem; color: #8294aa; margin: 0; }

/* ----------------------- Reveal animation ----------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ----------------------- Responsive ----------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .lede { max-width: none; }
  .hero-card { max-width: 480px; }
  .about-grid,
  .company-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 2rem 1.4rem; }
  .trust-item + .trust-item { padding-left: 1.4rem; border-left: none; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.10); padding-right: 1.4rem; }
  .trust-item:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.10); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .info-cards { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 16px 1rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .nav-menu.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    display: block;
    padding: 0.85rem 0.6rem;
    border-radius: 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1rem;
  }
  .nav-menu a.nav-cta {
    margin: 0.7rem 0 0;
    text-align: center;
    border-radius: var(--radius-sm);
    border-bottom: none;
  }

  .hero-actions .btn { flex: 1 1 auto; }
  .hero-card-inner { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }
}

@media (max-width: 420px) {
  .hero-card-inner { grid-template-columns: 1fr; }
  .trustbar-inner { grid-template-columns: 1fr; }
  .trust-item:nth-child(odd) { border-right: none; }
  .trust-item + .trust-item { border-top: 1px solid rgba(255, 255, 255, 0.10); }
  .process { grid-template-columns: 1fr; }
}

/* ----------------------- Accessibility ----------------------- */
:focus-visible {
  outline: 3px solid var(--navy-500);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .nav-toggle, .hero-card, .contact-form, .cta-strip, .back-to-top { display: none !important; }
  body { color: #000; }
  .section { padding: 1rem 0; }
}
