/* =========================================================
   T1to5 Accounting & Tax — stylesheet
   Palette drawn from the business card:
   deep teal-navy, medium teal, seafoam + orange logo accent
   ========================================================= */

:root {
  --navy:        #14384a;   /* deep teal-navy (dark panel + logo "T") */
  --navy-700:    #1c4c61;
  --teal:        #2c7d92;   /* primary medium teal */
  --teal-600:    #2a7185;
  --teal-400:    #5fa4b4;
  --seafoam:     #8fc3cc;
  --teal-pale:   #e8f2f4;
  --teal-wash:   #f3f9fa;
  --orange:      #e8572a;   /* logo accent ("1" + "5") */
  --orange-600:  #cf4a1f;
  --orange-100:  #fdeee8;

  --ink:         #16323e;
  --body:        #3f5862;
  --muted:       #6c828c;
  --line:        #e0eaed;
  --bg:          #ffffff;
  --bg-alt:      #f5fafb;

  --radius:      18px;
  --radius-sm:   12px;
  --radius-lg:   26px;
  --shadow-sm:   0 1px 2px rgba(20,56,74,.06), 0 2px 8px rgba(20,56,74,.05);
  --shadow:      0 8px 30px rgba(20,56,74,.10);
  --shadow-lg:   0 24px 60px rgba(20,56,74,.16);
  --ring:        0 0 0 4px rgba(44,125,146,.22);

  --maxw:        1160px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display:     'Plus Jakarta Sans', var(--font);

  --t:           .25s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  font-weight: 800;
}

p { margin: 0 0 1rem; }
a { color: var(--teal-600); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--orange); }
img, svg, iframe { max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-sub { color: var(--muted); font-size: 1.075rem; margin: 0; }

h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-600); margin: 0 0 16px;
}
.eyebrow.center { justify-content: center; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px var(--orange-100); }

/* ---------- Brand mark ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  font-family: var(--display); font-weight: 800; font-size: 1.5rem;
  line-height: 1; letter-spacing: -.03em; display: inline-flex; align-items: baseline;
  background: #fff; border: 1.5px solid var(--line); padding: 8px 11px; border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.brand-mark.lg { font-size: 2.2rem; padding: 12px 16px; }
.bm-t  { color: var(--navy); }
.bm-1  { color: var(--orange); }
.bm-to { color: var(--orange); font-size: .55em; font-weight: 700; margin: 0 1px; align-self: center; }
.bm-5  { color: var(--orange); font-size: 1.18em; }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name strong { font-family: var(--display); color: var(--ink); font-size: 1.05rem; letter-spacing: -.02em; }
.brand-name span { font-size: .74rem; color: var(--muted); letter-spacing: .02em; }
.brand-name.on-dark strong { color: #fff; }
.brand-name.on-dark span { color: var(--seafoam); }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--teal);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(232,87,42,.32); }
.btn-primary:hover { background: var(--orange-600); color: #fff; box-shadow: 0 14px 30px rgba(232,87,42,.40); }

.btn-ghost { background: rgba(255,255,255,.6); color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { background: #fff; color: var(--navy); border-color: var(--teal-400); box-shadow: var(--shadow); }

.btn-sm { padding: 11px 18px; font-size: .92rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }

.nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu > li > a:not(.btn) {
  display: block; padding: 10px 14px; color: var(--ink); font-weight: 500; font-size: .97rem; border-radius: 10px;
}
.nav-menu > li > a:not(.btn):hover { color: var(--teal-600); background: var(--teal-pale); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: 1.5px solid var(--line);
  border-radius: 12px; cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.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; padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 120px); }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(170deg, var(--teal-wash) 0%, #fff 60%); }
.hero-bg .blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.blob-1 { width: 480px; height: 480px; top: -140px; right: -120px; background: radial-gradient(circle, var(--seafoam), transparent 70%); }
.blob-2 { width: 420px; height: 420px; bottom: -160px; left: -120px; background: radial-gradient(circle, rgba(232,87,42,.20), transparent 70%); }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px; opacity: .5;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 10%, transparent 70%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero h1 { font-size: clamp(2.3rem, 5.6vw, 3.85rem); margin-bottom: 18px; }
.hero h1 .hl { color: var(--teal); position: relative; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .07em; height: .18em;
  background: linear-gradient(90deg, rgba(232,87,42,.30), rgba(232,87,42,.10)); border-radius: 4px; z-index: -1;
}
.hero .lede { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--body); max-width: 560px; margin-bottom: 30px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.trust-row li { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 500; color: var(--navy); }
.ico-check { width: 18px; height: 18px; fill: none; stroke: var(--orange); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* Hero card (echoes the business card) */
.hero-card {
  position: relative; background: linear-gradient(155deg, var(--navy) 0%, var(--teal-600) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; width: 260px; height: 260px; right: -90px; top: -90px;
  background: radial-gradient(circle, rgba(143,195,204,.35), transparent 70%); border-radius: 50%;
}
.hc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; position: relative; }
.hero-card .brand-mark { background: #fff; }
.hc-badge { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--seafoam); border: 1px solid rgba(255,255,255,.25); padding: 6px 10px; border-radius: 999px; }
.hc-name { font-family: var(--display); font-size: 1.7rem; font-weight: 800; color: #fff; margin: 0; letter-spacing: -.02em; }
.hc-role { color: var(--seafoam); font-weight: 500; margin: 2px 0 0; }
.hc-divider { height: 1px; background: rgba(255,255,255,.16); margin: 22px 0; }
.hc-list li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px dashed rgba(255,255,255,.12); font-size: .95rem; }
.hc-list li:last-child { border-bottom: 0; }
.hc-list span { color: rgba(255,255,255,.86); }
.hc-list b { color: #fff; font-weight: 700; font-size: .82rem; background: rgba(255,255,255,.12); padding: 4px 10px; border-radius: 999px; }
.hc-foot { margin-top: 18px; }
.hc-pin { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--seafoam); }
.hc-pin .ico { width: 16px; height: 16px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Value band ---------- */
.values { background: var(--navy); padding: clamp(40px, 5vw, 56px) 0; position: relative; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value { color: #fff; }
.value-ico {
  display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px;
  border-radius: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); margin-bottom: 16px;
}
.value-ico svg { width: 24px; height: 24px; fill: none; stroke: var(--seafoam); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.value h3 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.value p { color: rgba(255,255,255,.74); font-size: .95rem; margin: 0; }

/* ---------- Services ---------- */
.services { background: var(--bg); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t); position: relative; overflow: hidden;
}
.card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--teal), var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card-ico {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: 14px; background: var(--teal-pale); margin-bottom: 18px; transition: background var(--t);
}
.card-ico svg { width: 26px; height: 26px; fill: none; stroke: var(--teal-600); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--t); }
.card:hover .card-ico { background: var(--orange-100); }
.card:hover .card-ico svg { stroke: var(--orange); }
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card > p { font-size: .95rem; color: var(--body); margin-bottom: 14px; }
.card-list li { position: relative; padding-left: 22px; font-size: .88rem; color: var(--muted); margin-bottom: 6px; }
.card-list li::before { content: ""; position: absolute; left: 2px; top: .55em; width: 7px; height: 7px; border-radius: 2px; background: var(--teal-400); }

.services-cta {
  margin-top: 44px; text-align: center; background: linear-gradient(135deg, var(--teal-pale), var(--teal-wash));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.services-cta p { font-size: 1.1rem; color: var(--ink); font-weight: 600; margin: 0; }

/* ---------- About ---------- */
.about { background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.about-copy p { color: var(--body); font-size: 1.05rem; }
.who-head { margin-top: 28px; font-size: 1.05rem; color: var(--navy); }
.who-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 12px; }
.who-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink); font-size: .97rem; }

.about-side { position: sticky; top: 100px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.stat { padding: 16px 0; border-bottom: 1px solid var(--line); }
.stat:first-child { padding-top: 0; }
.stat-num { display: block; font-family: var(--display); font-size: 1.9rem; font-weight: 800; color: var(--teal); letter-spacing: -.02em; line-height: 1; }
.stat-label { display: block; font-size: .92rem; color: var(--muted); margin-top: 6px; }
.stat-card .btn:first-of-type { margin-top: 24px; }
.stat-card .btn + .btn { margin-top: 10px; }

/* ---------- Process ---------- */
.process { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: #fff; border-radius: 13px; margin-bottom: 16px;
  background: linear-gradient(145deg, var(--teal), var(--navy)); box-shadow: 0 8px 18px rgba(20,56,74,.18);
}
.step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { font-size: .94rem; color: var(--body); margin: 0; }
.step:not(:last-child)::after {
  content: ""; position: absolute; right: -16px; top: 50%; z-index: 1;
  width: 11px; height: 11px;
  border-top: 2.5px solid var(--teal-400); border-right: 2.5px solid var(--teal-400);
  transform: translateY(-50%) rotate(45deg);
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg-alt); }
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.faq-intro { position: sticky; top: 100px; }
.faq-intro .section-sub { margin-top: 4px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow var(--t), border-color var(--t); }
.faq-item[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; cursor: pointer; font-family: var(--display); font-weight: 700; color: var(--ink); font-size: 1.04rem; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: none; width: 20px; height: 20px; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--teal); border-radius: 2px; transition: transform var(--t); }
.faq-plus::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item[open] .faq-plus::after { transform: scaleY(0); }
.faq-item[open] .faq-plus::before { background: var(--orange); }
.faq-body { padding: 0 22px 22px; }
.faq-body p { margin: 0; color: var(--body); font-size: .98rem; }

/* ---------- Contact ---------- */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 48px); align-items: start; }

.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field label span { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-alt);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field input::placeholder, .field textarea::placeholder { color: #9fb1b9; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-note { margin: 14px 0 0; font-weight: 600; font-size: .95rem; text-align: center; }
.form-note.ok { color: #1c7a4a; }
.form-note.err { color: var(--orange-600); }
.form-note.busy { color: var(--muted); }
.form-fineprint { font-size: .8rem; color: var(--muted); text-align: center; margin: 12px 0 0; }
#cf-submit[aria-busy="true"] { opacity: .7; pointer-events: none; }

.contact-info { display: flex; flex-direction: column; gap: 22px; }
.info-list { display: flex; flex-direction: column; gap: 4px; }
.info-list li { display: flex; align-items: flex-start; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-ico { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--teal-pale); }
.info-ico svg { width: 21px; height: 21px; fill: none; stroke: var(--teal-600); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.info-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; margin-bottom: 2px; }
.info-list a, .info-text { color: var(--ink); font-weight: 600; font-size: 1.02rem; }
.info-list a:hover { color: var(--orange); }
.info-text { font-weight: 500; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); line-height: 0; }
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; filter: grayscale(.15); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.74); padding: clamp(48px, 6vw, 72px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; color: rgba(255,255,255,.66); max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.5; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-top: 24px; }
.footer-bottom p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.55); }

/* ---------- Floating CTA (mobile) ---------- */
.float-cta {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; display: none; align-items: center; gap: 9px;
  background: var(--orange); color: #fff; padding: 13px 18px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  box-shadow: 0 12px 28px rgba(232,87,42,.42);
}
.float-cta svg { width: 19px; height: 19px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.float-cta:hover { color: #fff; transform: translateY(-2px); transition: transform var(--t); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 28px; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 74px 0 auto; flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 16px 20px 22px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform var(--t), opacity var(--t);
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu > li > a:not(.btn) { padding: 13px 14px; font-size: 1.05rem; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 440px; margin: 8px auto 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-side { position: static; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .float-cta { display: inline-flex; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .who-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-actions .btn { width: 100%; }
  .brand-name span { display: none; }
}

@media (max-width: 380px) {
  .footer-grid { grid-template-columns: 1fr; }
}
