/* ─── LEDOTEX Global Styles ──────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Geist:wght@300;400;500;600;700&display=swap');

:root {
  --ink:        #0A0A0A;
  --ink-2:      #1C1C1C;
  --ink-3:      #2E2E2E;
  --muted:      #6B6B6B;
  --muted-2:    #9A9A9A;
  --rule:       #E2E2E2;
  --bg:         #FAFAF8;
  --bg-2:       #F2F1EE;
  --bg-dark:    #111111;
  --accent:     #0033FF;
  --accent-h:   #0022CC;
  --success:    #1A7A4A;
  --error:      #C13030;
  --white:      #FFFFFF;

  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans:  'Geist', system-ui, sans-serif;

  --radius:     4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --t:          0.2s ease;

  --max-w:      1080px;
  --col-gap:    48px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; }

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
}

h3 {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
}

h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
}

p { color: var(--muted); font-size: 1rem; font-weight: 400; line-height: 1.75; }

em { font-style: italic; }

a { color: inherit; text-decoration: none; }

strong { font-weight: 600; color: var(--ink); }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }
.section-inner { max-width: 720px; }

/* ── Labels ──────────────────────────────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ── Rule ────────────────────────────────────────────────────────────────── */
hr { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-h); border-color: var(--accent-h); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-outline:hover { border-color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--accent-h); }
.btn-ghost::after { content: ' →'; }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-right: auto;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  transition: var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--t);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── Mobile menu ─────────────────────────────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 28px;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.nav-mobile.open { display: flex; opacity: 1; pointer-events: all; }

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--ink);
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .btn { margin-top: 12px; font-size: 1rem; padding: 14px 28px; }

/* ── Cookie Banner ────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  z-index: 200;
  display: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.cookie-banner.show { display: block; }
.cookie-banner p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 16px; }
.cookie-banner p a { color: var(--white); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn-accept {
  background: var(--white);
  color: var(--ink);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--t);
}
.cookie-actions .btn-essential {
  background: transparent;
  color: rgba(255,255,255,0.6);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--t);
}
.cookie-actions .btn-essential:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--rule);
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--muted);
}

.hero h1 { max-width: 820px; margin-bottom: 28px; }
.hero h1 em { color: var(--muted); }
.hero > .container > p { max-width: 560px; margin-bottom: 40px; font-size: 1.05rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 72px; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 640px;
}
.proof-item {
  padding: 20px 24px;
  border-right: 1px solid var(--rule);
}
.proof-item:last-child { border-right: none; }
.proof-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}
.proof-label { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }
.proof-note  { font-size: 0.72rem; color: var(--muted-2); margin-top: 2px; }

.hero-trust {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--muted);
}
.trust-item::before {
  content: '✓';
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--success);
}

/* ── Services section (homepage) ─────────────────────────────────────────── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: end;
  margin-bottom: 56px;
}

.services-list {
  border-top: 1px solid var(--rule);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  transition: var(--t);
  gap: 24px;
}
.service-row:hover .service-arrow { transform: translateX(4px); }

.service-row-left {}
.service-num { font-size: 0.72rem; color: var(--muted-2); font-weight: 500; margin-bottom: 6px; }
.service-row h3 { margin-bottom: 6px; }
.service-row p { font-size: 0.9rem; }
.service-arrow {
  font-size: 1.1rem;
  color: var(--muted-2);
  transition: transform var(--t);
  flex-shrink: 0;
}

/* ── Process ─────────────────────────────────────────────────────────────── */
.process-intro {
  max-width: 600px;
  margin-bottom: 64px;
}

.process-list { display: flex; flex-direction: column; gap: 0; }
.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
}
.process-item:first-child { border-top: 1px solid var(--rule); }

.process-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--rule);
  line-height: 1;
  padding-top: 4px;
}
.process-body h3 { margin-bottom: 8px; }

/* ── Results (case studies) ──────────────────────────────────────────────── */
.results-intro { max-width: 600px; margin-bottom: 64px; }
.results-intro h2 { margin-bottom: 12px; }

.results-list { display: flex; flex-direction: column; gap: 0; }

.result-card {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.result-card:first-child { border-top: 1px solid var(--rule); }

.result-meta { }
.result-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--rule);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.result-context { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.result-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.result-body p { font-size: 0.92rem; margin-bottom: 12px; }
.result-disclaimer {
  font-size: 0.78rem;
  color: var(--muted-2);
  font-style: italic;
}

/* ── CTA block ──────────────────────────────────────────────────────────── */
.cta-block {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
}
.cta-block h2 { color: var(--white); margin-bottom: 16px; }
.cta-block p  { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 36px; }
.cta-actions  { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-note     { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 16px; }

.btn-white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-white:hover { background: var(--bg-2); }

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* ── Services page ───────────────────────────────────────────────────────── */
.services-page-intro { max-width: 640px; margin-bottom: 80px; }
.services-page-intro h1 { margin-bottom: 16px; }

.service-block {
  padding: 72px 0;
  border-bottom: 1px solid var(--rule);
}
.service-block:first-of-type { border-top: 1px solid var(--rule); }

.service-block-header {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  margin-bottom: 40px;
  align-items: start;
}
.service-block-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--rule);
  line-height: 1;
}
.service-block h2 { margin-bottom: 12px; }
.service-block-lead { font-size: 1rem; color: var(--muted); max-width: 620px; }

.service-block-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-left: 168px;
}

.service-what h4 { margin-bottom: 12px; }
.service-what ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-what li {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.service-what li::before {
  content: '—';
  color: var(--muted-2);
  flex-shrink: 0;
  margin-top: 1px;
}

.service-expect h4 { margin-bottom: 12px; }
.service-expect p { font-size: 0.9rem; margin-bottom: 20px; }

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}
.meta-row span:first-child { color: var(--muted); }
.meta-row span:last-child  { color: var(--ink); font-weight: 500; }

/* ── About page ──────────────────────────────────────────────────────────── */
.about-intro { max-width: 760px; margin-bottom: 80px; }
.about-intro h1 { margin-bottom: 16px; }

.mission-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  padding: 72px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.mission-block h2 { margin-bottom: 20px; }
.mission-block p { margin-bottom: 16px; }

.mission-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.mstat {
  padding: 24px 28px;
  border-bottom: 1px solid var(--rule);
}
.mstat:last-child { border-bottom: none; }
.mstat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.mstat-label { font-size: 0.85rem; color: var(--muted); }

.values-block { padding: 72px 0; border-bottom: 1px solid var(--rule); }
.values-block h2 { margin-bottom: 48px; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}
.value-item h3 { margin-bottom: 8px; }

.team-block { padding: 72px 0; border-bottom: 1px solid var(--rule); }
.team-block h2 { margin-bottom: 12px; }
.team-block > .container > p { margin-bottom: 48px; max-width: 560px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 24px;
}
.team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  font-family: var(--font-sans);
}
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card .team-role { font-size: 0.78rem; color: var(--accent); font-weight: 500; margin-bottom: 10px; }
.team-card p { font-size: 0.83rem; }

/* ── Contact page ────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-info h1 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 48px; }

.contact-detail { margin-bottom: 20px; }
.contact-detail h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 0.95rem; color: var(--ink); }
.contact-detail a:hover { color: var(--accent); }

.contact-divider { border-top: 1px solid var(--rule); margin: 32px 0; }

.free-audit-box {
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--bg-2);
}
.free-audit-box h4 { margin-bottom: 12px; font-size: 0.9rem; }
.free-audit-box ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.free-audit-box li { font-size: 0.875rem; color: var(--muted); display: flex; gap: 8px; }
.free-audit-box li::before { content: '✓'; color: var(--success); font-size: 0.75rem; font-weight: 700; margin-top: 2px; }

/* ── Form ────────────────────────────────────────────────────────────────── */
.form-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 40px;
  background: var(--white);
}
.form-card h2 { font-size: 1.4rem; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--ink-3); margin-bottom: 7px; letter-spacing: 0.02em; }
.req { color: var(--error); }

input, select, textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--muted-2); }
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,51,255,0.08);
  background: var(--white);
}
textarea { resize: vertical; min-height: 130px; }
select { cursor: pointer; }
select option { background: var(--white); }

.form-submit { width: 100%; justify-content: center; padding: 13px; font-size: 0.9rem; }

.form-message {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-top: 14px;
}
.form-message.success { background: rgba(26,122,74,0.07); border: 1px solid rgba(26,122,74,0.25); color: var(--success); }
.form-message.error   { background: rgba(193,48,48,0.07);  border: 1px solid rgba(193,48,48,0.25);  color: var(--error); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: var(--col-gap);
  margin-bottom: 48px;
}

.footer-brand .nav-logo { display: block; margin-bottom: 12px; color: var(--white); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--t);
}
.footer-links a:hover { color: var(--white); }

.footer-contact p, .footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  display: block;
}
.footer-contact a:hover { color: var(--white); }
.footer-contact strong { color: rgba(255,255,255,0.7); font-weight: 500; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.35); transition: var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── Page header ─────────────────────────────────────────────────────────── */
.page-header {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--rule);
}
.page-header .label { display: block; margin-bottom: 20px; }
.page-header h1 { margin-bottom: 16px; }
.page-header p { max-width: 540px; font-size: 1.05rem; }

/* ── Legal pages ─────────────────────────────────────────────────────────── */
.legal-body {
  max-width: 720px;
  padding: 72px 0;
}
.legal-body h2 { font-size: 1.2rem; font-family: var(--font-sans); font-weight: 600; margin: 40px 0 10px; }
.legal-body p, .legal-body li { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 10px; }
.legal-body ul { padding-left: 20px; }
.legal-body a { color: var(--accent); text-decoration: underline; }

/* ── 404 ─────────────────────────────────────────────────────────────────── */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.not-found-num { font-family: var(--font-serif); font-size: 8rem; color: var(--rule); line-height: 1; margin-bottom: 16px; }

/* ── Fade-in ─────────────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-intro { grid-template-columns: 1fr; }
  .result-card { grid-template-columns: 1fr; gap: 20px; }
  .result-meta { display: flex; align-items: center; gap: 16px; }
  .service-block-header { grid-template-columns: 80px 1fr; gap: 24px; }
  .service-block-body { grid-template-columns: 1fr; padding-left: 104px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .navbar .btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero-proof { grid-template-columns: 1fr; }
  .proof-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .proof-item:last-child { border-bottom: none; }

  .mission-block { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-block { padding: 48px 28px; }
  .service-block-header { grid-template-columns: 1fr; }
  .service-block-body { padding-left: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .form-card { padding: 24px 20px; }
  .cta-block { padding: 40px 20px; }
}
