/* =========================================================
   Tokens
========================================================= */
:root {
  --bg:           #f3f7f9;
  --bg-elev:      #e6eff3;
  --paper:        #ffffff;
  --ink:          #0f2a35;
  --ink-soft:     #2f4a55;
  --ink-mute:     #6b818a;
  --line:         rgba(15, 42, 53, 0.10);
  --line-strong:  rgba(15, 42, 53, 0.20);
  --accent:       #2a9bb8;       /* teal — matches logo */
  --accent-deep:  #1f7c95;
  --accent-soft:  #6cc1d5;
  --gold:         #c9a44a;

  --shadow-card:  0 1px 0 rgba(26,31,46,0.04), 0 24px 48px -28px rgba(26,31,46,0.18);
  --radius:       14px;
  --radius-sm:    8px;

  --font-display: "Instrument Serif", "Times New Roman", Georgia, serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --w:            min(1240px, 92vw);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(44px, 6.4vw, 96px); }
h2 { font-size: clamp(34px, 4.4vw, 64px); }
h3 { font-size: clamp(22px, 2vw, 30px); }

p  { margin: 0; text-wrap: pretty; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }

.container { width: var(--w); margin: 0 auto; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* =========================================================
   Top bar
========================================================= */
.topbar {
  background: #08161d;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar a {
  color: rgba(255,255,255,0.92);
  transition: color 120ms;
}
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar-info span,
.topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.92);
}
.topbar-info span { font-weight: 500; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { font-size: 12px; color: rgba(255,255,255,0.78); }
.topbar-social a:hover { color: #fff; }

/* =========================================================
   Nav
========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 22, 29, 0.98);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}
.logo img.logo-img { height: 44px; width: auto; display: block; }
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 17px;
  letter-spacing: 0.02em;
  font-weight: 500;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-text .name {
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #fff;
}
.logo-text .sub {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  transition: color 120ms;
  position: relative;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 160ms, background 160ms;
}
.nav-cta:hover { background: var(--accent-soft); color: #fff; transform: translateY(-1px); }
.nav-cta::after { content: "→"; font-size: 14px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  margin: 4px auto;
  transition: 200ms;
}

/* =========================================================
   Hero
========================================================= */
.hero {
  padding: clamp(56px, 9vw, 120px) 0 clamp(56px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero h1 {
  margin-top: 24px;
  margin-bottom: 28px;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--accent);
}
.hero-lead {
  font-size: clamp(16px, 1.3vw, 18.5px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 18px;
}
.hero-trust-by {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.trust-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.trust-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-icons img {
  height: 42px;
  width: auto;
  display: block;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: 180ms;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); }

.hero-trust {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-trust-item .num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
}
.hero-trust-item .lbl {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* Hero portrait */
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 220px 220px 24px 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #6cc1d5 0%, #1f7c95 100%);
  box-shadow: var(--shadow-card);
}
.portrait::after {
  content: "Mag. Ana Galic · Wien 1090";
  position: absolute;
  inset: auto 16px 16px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.portrait-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.18), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 14px);
}
.portrait-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 56%;
  opacity: 0.92;
  color: rgba(255,255,255,0.95);
}
.portrait-stamp {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.2;
  padding: 16px;
  rotate: -6deg;
  box-shadow: 0 12px 30px -10px rgba(15,42,53,0.5);
}
.portrait-stamp em { font-style: italic; }

.hero-langs {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 13px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-card);
}
.hero-langs .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* =========================================================
   Marquee — languages strip
========================================================= */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: scroll 38s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
}
.marquee-track span { display: flex; align-items: center; gap: 56px; }
.marquee-track .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.marquee-track i { font-style: italic; color: var(--accent-soft); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Section base
========================================================= */
section { scroll-margin-top: 80px; }
.section-pad { padding: clamp(72px, 10vw, 130px) 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 72px);
}

/* =========================================================
   Services
========================================================= */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.svc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: 200ms;
  position: relative;
  overflow: hidden;
}
.svc:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}
.svc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.svc h3 { font-size: 24px; }
.svc p {
  color: var(--ink-soft);
  font-size: 14.5px;
}
.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-elev);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

.svc.col-6 { grid-column: span 6; }
.svc.col-4 { grid-column: span 4; }
.svc.col-12 { grid-column: span 12; }

.svc.featured {
  background: var(--ink);
  color: var(--paper);
  border: none;
}
.svc.featured h3 { color: var(--paper); }
.svc.featured p  { color: rgba(255,255,255,0.75); }
.svc.featured .svc-icon { background: rgba(255,255,255,0.08); color: var(--paper); }
.svc.featured .svc-num  { color: rgba(255,255,255,0.5); }
.svc.featured .svc-link { color: var(--accent-soft); }

.svc-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-link::after { content: "→"; transition: 180ms; }
.svc:hover .svc-link::after { transform: translateX(4px); }

/* Document checklist */
.docs-block {
  margin-top: 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.docs-block h3 { font-size: 30px; margin-bottom: 12px; }
.docs-block p { color: var(--ink-soft); font-size: 15px; }
.docs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.docs-list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.docs-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
}

/* =========================================================
   About
========================================================= */
.about { background: var(--bg-elev); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.about-portrait {
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  background: linear-gradient(180deg, #cfe6ed 0%, #2a9bb8 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-portrait::after {
  content: "Büro · Müllnergasse 4, 1090 Wien";
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.about-bio h2 { margin-bottom: 24px; }
.about-bio p {
  color: var(--ink-soft);
  font-size: 16.5px;
  margin-bottom: 18px;
  max-width: 60ch;
}
.bio-meta {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.bio-meta dt {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.bio-meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
}
.bio-meta dd small {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* =========================================================
   Process
========================================================= */
.process { background: var(--bg); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  font-style: italic;
  margin-bottom: 24px;
}
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 14.5px; }

/* =========================================================
   Reviews
========================================================= */
.reviews {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 10vw, 130px) 0;
}
.reviews .eyebrow { color: var(--accent-soft); }
.reviews .eyebrow::before { background: var(--accent-soft); }
.reviews h2 { color: var(--paper); }
.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin-bottom: 56px;
  align-items: end;
}
.reviews-rating {
  text-align: right;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.stars { color: #f5b94a; font-size: 22px; letter-spacing: 2px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { color: #f5b94a; font-size: 14px; letter-spacing: 2px; }
.review-text {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.4;
  color: var(--paper);
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.review-author .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: grid; place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.review-author .meta { line-height: 1.3; }
.review-author .name { font-size: 14px; font-weight: 500; color: var(--paper); }
.review-author .src { font-size: 12px; color: rgba(255,255,255,0.5); }

/* =========================================================
   FAQ
========================================================= */
.faq { background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(32px, 5vw, 80px);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  text-align: left;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.faq-q .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--ink);
  font-weight: 300;
  transition: 200ms;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] .faq-q .icon { background: var(--accent); border-color: var(--accent); color: #fff; rotate: 45deg; }
.faq-a {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 70ch;
}
.faq-a strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   Contact / Form
========================================================= */
.contact {
  background: var(--bg);
  padding: clamp(72px, 10vw, 130px) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 64px);
  box-shadow: var(--shadow-card);
}
.contact-info h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 18px;
}
.contact-info p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 38ch;
}
.contact-card {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14.5px;
}
.contact-card a:hover { color: var(--accent); }
.contact-card .row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-card .icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-elev);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-card .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2px;
}

/* Form */
.form { display: grid; gap: 18px; }
.form .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: 160ms;
  width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(26,31,46,0.06);
}

.field-file {
  border: 1.5px dashed var(--line-strong);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  background: var(--bg);
  cursor: pointer;
  transition: 160ms;
  position: relative;
}
.field-file:hover { border-color: var(--accent); background: var(--paper); }
.field-file input[type=file] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
}
.field-file-label {
  font-size: 13.5px;
  color: var(--ink-soft);
}
.field-file-label strong { color: var(--ink); }
.field-file-label small {
  display: block;
  font-size: 11.5px;
  color: var(--ink-mute);
  margin-top: 4px;
}
.field-file.has-file { border-color: var(--accent); border-style: solid; background: var(--paper); }
.field-file.has-file .field-file-label strong { color: var(--accent); }

.form-meta {
  font-size: 12px;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-meta .icon { color: var(--accent); }

.form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.btn-primary.full {
  background: var(--accent);
  flex: 1;
  justify-content: center;
}
.btn-primary.full:hover { background: var(--ink); }

.form-status {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok {
  background: #e7f0e8;
  border: 1px solid #b8d3bb;
  color: #2d5a32;
}
.form-status.err {
  background: #f5e3e1;
  border: 1px solid #e0b6b1;
  color: #7a2d24;
}

/* =========================================================
   Footer
========================================================= */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
  font-size: 14px;
}
footer h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid a { color: rgba(255,255,255,0.7); }
.footer-grid a:hover { color: #fff; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-brand .logo .logo-text .name { color: var(--paper); font-size: 22px; }
.footer-brand .logo .logo-text .sub { color: rgba(255,255,255,0.45); }
.footer-brand .logo .logo-mark { background: var(--paper); color: var(--ink); }
.footer-brand p {
  margin: 18px 0 0;
  max-width: 36ch;
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .docs-block,
  .faq-grid,
  .reviews-head { grid-template-columns: 1fr; }

  .reviews-head { gap: 16px; }
  .reviews-rating { text-align: left; }

  .services-grid .svc { grid-column: span 12; }
  .services-grid .svc.col-6 { grid-column: span 12; }
  .services-grid .svc.col-4 { grid-column: span 12; }

  .docs-list { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .hero-langs { display: none; }
  .portrait-stamp { width: 110px; height: 110px; font-size: 12px; }
}

@media (max-width: 600px) {
  .form .row2 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .topbar-info { gap: 14px; font-size: 12px; flex-wrap: wrap; }
  .topbar-social { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .bio-meta { grid-template-columns: 1fr; }
  .about-portrait {
    max-height: 320px;
    aspect-ratio: 4 / 3;
    margin-inline: auto;
    width: 100%;
  }

  /* About photo on uber-mich.html */
  .about-photo {
    max-height: 320px;
    overflow: hidden;
    border-radius: var(--radius);
  }
  .about-photo img {
    max-height: 320px;
    object-position: center top;
  }

  /* Contact grid inner padding reduction */
  .contact-grid { padding: 24px 20px; }

  /* Footer bottom stacks vertically */
  .footer-bottom { flex-direction: column; gap: 8px; }

  /* Hero trust items wrap nicely */
  .hero-trust { gap: 16px; }

  /* Page hero heading smaller on phones */
  .page-hero h1 { font-size: clamp(32px, 7.5vw, 40px); }
}

/* =========================================================
   PAGE HEADER (sub-pages)
========================================================= */
.page-hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 72px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero .container { max-width: 880px; }
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 8px; color: var(--line-strong); }
.page-hero h1 { font-size: clamp(40px, 5.4vw, 76px); margin-bottom: 24px; }
.page-hero .lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 65ch;
}
.page-hero .accent { color: var(--accent); font-style: italic; }

.about-hero {
  background: var(--paper);
  padding: clamp(40px, 5vw, 72px) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.about-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.about-summary h2 {
  margin-top: 0;
  max-width: 620px;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}
.badge-row img {
  max-height: 84px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* =========================================================
   PROSE — content pages
========================================================= */
.prose { background: var(--paper); }
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.prose-aside {
  position: sticky;
  top: 100px;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}
.prose-aside h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}
.prose-aside ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.prose-aside a { color: var(--ink-soft); font-size: 14.5px; }
.prose-aside a:hover { color: var(--accent); }

.prose-body h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  margin-bottom: 20px;
  margin-top: 56px;
}
.prose-body h2:first-child { margin-top: 0; }
.prose-body h3 {
  font-size: 24px;
  margin-bottom: 12px;
  margin-top: 36px;
  color: var(--accent-deep);
}
.prose-body p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 70ch;
}
.prose-body p strong { color: var(--ink); font-weight: 600; }
.prose-body ul, .prose-body ol {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
  max-width: 70ch;
}
.prose-body li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  padding: 10px 0 10px 32px;
  border-bottom: 1px dashed var(--line);
  position: relative;
}
.prose-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-elev);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  display: grid;
  place-items: center;
}
.prose-body ol { counter-reset: item; }
.prose-body ol li::before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
}
.prose-body a {
  color: var(--accent-deep);
  border-bottom: 1px solid var(--accent-soft);
}
.prose-body a:hover { color: var(--accent); }
.prose-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
}
.prose-body .callout {
  margin: 32px 0;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.prose-body .callout h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink);
}
.prose-body .callout p { margin-bottom: 0; }

/* Lang pairs grid */
.lang-pairs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0 32px;
}
.lang-pairs .pair {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-pairs .pair::before {
  content: "↔";
  color: var(--accent);
  font-weight: 600;
}

/* Price table */
.price-table {
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.price-row:last-child { border-bottom: none; }
.price-row .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}
.price-row .label { font-size: 16px; color: var(--ink); font-weight: 500; }
.price-row .desc { font-size: 14px; color: var(--ink-soft); display: block; margin-top: 4px; font-weight: 400; }

/* =========================================================
   CREDENTIALS / BADGES
========================================================= */
.credentials {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.credentials h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.credentials p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 38ch;
}
.badges {
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.badge img {
  height: 56px;
  width: auto;
}
.badge .meta { line-height: 1.3; }
.badge .meta strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 600;
}
.badge .meta span {
  font-size: 12px;
  color: var(--ink-mute);
}

/* =========================================================
   CTA strip
========================================================= */
.cta-strip {
  background: var(--accent-deep);
  color: #fff;
  padding: clamp(48px, 7vw, 88px) 0;
}
.cta-strip .container {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 32px;
  align-items: center;
}
.cta-strip h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 46px);
}
.cta-strip p {
  color: rgba(255,255,255,0.78);
  margin-top: 8px;
  font-size: 15px;
}
.cta-strip .btn {
  background: #fff;
  color: var(--accent-deep);
  font-weight: 600;
}
.cta-strip .btn:hover { background: var(--ink); color: #fff; }

@media (max-width: 980px) {
  .prose-grid { grid-template-columns: 1fr; }
  .prose-aside { position: static; }
  .credentials-grid { grid-template-columns: 1fr; }
  .cta-strip .container { grid-template-columns: 1fr; }
  .lang-pairs { grid-template-columns: 1fr; }

  /* about-hero grid fix (overrides the later .about-grid rule) */
  .about-hero .about-grid,
  .about-grid { grid-template-columns: 1fr; }

  /* Nav dropdown — column layout when toggled on mobile */
  .nav .container { flex-wrap: wrap; }
  .nav-links {
    flex-direction: column;
    width: 100%;
    order: 3;
    gap: 0;
    padding: 4px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.10);
    margin-top: 8px;
  }
  .nav-links li a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
  }
}


/* =========================================================
   HERO FORM (inline, replaces portrait)
========================================================= */
.hero-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-card);
  position: relative;
}
.hero-form::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border-radius: 24px 24px 0 0;
}
.hero-form-head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.hero-form-head h3 {
  font-size: 28px;
  margin: 12px 0 10px;
}
.hero-form-head p {
  color: var(--ink-soft);
  font-size: 14.5px;
}
.hero-form-fields { gap: 14px; }
.hero-form-fields .field-file { padding: 18px; }
.hero-form-fields .field input,
.hero-form-fields .field select,
.hero-form-fields .field textarea { padding: 12px 14px; font-size: 14px; }
.hero-form-fields .btn-primary.full {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  margin-top: 4px;
}
.hero-form-fields .btn-primary.full:hover { background: var(--accent-deep); }
