/* ============================================================
   Traductora Iuliana — traductoraiuliana.com
   Static site · no build step · self-hosted fonts
   ============================================================ */

/* ---------- Fonts (variable woff2, latin + latin-ext for RO diacritics) ---------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/fraunces-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/fraunces-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #f9f7f1;
  --surface: #ffffff;
  --ink: #1c2434;
  --muted: #545e74;
  --navy: #16233f;
  --navy-2: #21335a;
  --navy-soft: #eef1f7;
  --gold: #d9a13b;
  --gold-soft: #f7ecd8;
  --gold-ink: #8a5f10;
  --green: #15803d;
  --green-dark: #116232;
  --green-soft: #e8f6ec;
  --line: #e7e2d6;
  --shadow: 0 1px 2px rgba(22, 35, 63, .05), 0 8px 24px -12px rgba(22, 35, 63, .18);
  --shadow-lg: 0 2px 4px rgba(22, 35, 63, .06), 0 24px 48px -20px rgba(22, 35, 63, .28);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --header-h: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy-2); }
ul { padding-left: 1.2em; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  text-wrap: balance;
}

.container { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--navy);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }
.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(21, 128, 61, .5);
}
.btn-whatsapp:hover { background: var(--green-dark); }
.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover { background: var(--navy-soft); }
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { background: var(--gold-soft); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.0625rem; }
.btn-lg svg { width: 24px; height: 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(249, 247, 241, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px -12px rgba(22,35,63,.25); }
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--navy);
  margin-right: auto;
  min-width: 0;
}
.brand-mark { flex: none; width: 42px; height: 42px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.1;
  white-space: nowrap;
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-ink);
  white-space: nowrap;
}
.brand > span { min-width: 0; }
.brand-name, .brand-sub { overflow: hidden; text-overflow: ellipsis; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  padding: 0;
}
.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
}
.site-nav a:hover { color: var(--navy-2); text-decoration: underline; text-underline-offset: 5px; text-decoration-color: var(--gold); text-decoration-thickness: 2px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.lang-switch:hover { border-color: var(--gold); }
.lang-switch .flag { width: 18px; height: 13px; border-radius: 2px; }
.lang-switch .lang-short { display: none; }
.header-cta { flex: none; padding: .6rem 1.1rem; font-size: .92rem; }

.nav-toggle {
  display: none;
  flex: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52rem 30rem at 118% -12%, rgba(217, 161, 59, .14), transparent 60%),
    radial-gradient(44rem 26rem at -18% 112%, rgba(33, 51, 90, .10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: 3.5rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .95rem;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid #ecd9b4;
  color: var(--gold-ink);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  margin-bottom: 1.15rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-ink);
}
.hero .lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34em;
  margin-bottom: 1.9rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.9rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.4rem;
  list-style: none;
  padding: 0;
  font-size: .92rem;
  color: var(--muted);
}
.hero-trust li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust svg { color: var(--green); flex: none; }

/* Portrait card */
.hero-card {
  position: relative;
  justify-self: center;
  width: min(330px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.1rem 1.4rem;
  rotate: 1.2deg;
}
.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
}
.hero-card figcaption { text-align: center; padding-top: 1rem; }
.hero-card .card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}
.hero-card .card-role {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .2rem;
}
.hero-seal {
  position: absolute;
  top: -34px;
  right: -30px;
  width: 108px;
  height: 108px;
  rotate: -8deg;
  filter: drop-shadow(0 6px 12px rgba(22,35,63,.22));
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy);
  color: #fff;
  padding: 1.9rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
}
.trust-item span { font-size: .88rem; color: #cdd5e4; }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--surface); border-block: 1px solid var(--line); }
.section-head { max-width: 46em; margin-bottom: 2.75rem; }
.section-head .kicker {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: .6rem;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: .75rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.section-alt .service-card { background: var(--paper); }
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--navy-soft);
  color: var(--navy-2);
}
.service-card h3 { font-size: 1.22rem; }
.service-card > p { color: var(--muted); font-size: .96rem; }
.service-card ul {
  list-style: none;
  padding: 0;
  margin-top: .1rem;
  display: grid;
  gap: .34rem;
  font-size: .92rem;
  color: var(--ink);
}
.service-card li { position: relative; padding-left: 1.05rem; }
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.service-note {
  margin-top: .4rem;
  padding: .65rem .9rem;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--gold-ink);
}
.service-note strong { color: inherit; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.7rem;
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -22px;
  left: 1.4rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  border: 3px solid var(--paper);
}
.section-alt .step::before { border-color: var(--surface); }
.step h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .95rem; }
.steps-note {
  margin-top: 2.2rem;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}

/* ---------- Pricing ---------- */
.pricing-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  background: var(--navy);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pricing-main { padding: 3rem 3rem 3rem; color: #fff; }
.pricing-main h2 { color: #fff; font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 1rem; }
.pricing-main p { color: #c8d0e0; margin-bottom: 1.6rem; max-width: 34em; }
.pricing-side {
  background: var(--navy-2);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}
.pricing-side li {
  list-style: none;
  display: flex;
  gap: .7rem;
  color: #e6eaf2;
  font-size: .97rem;
  align-items: baseline;
}
.pricing-side ul { padding: 0; margin: 0; display: grid; gap: 1.05rem; }
.pricing-side svg { flex: none; color: var(--gold); translate: 0 3px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 3.5rem;
  align-items: center;
}
.about-photo {
  position: relative;
  isolation: isolate;
  justify-self: center;
  width: min(320px, 100%);
}
.about-photo img {
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5.6;
  object-fit: cover;
  object-position: top;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius) + 6px);
  z-index: -1;
  opacity: .55;
}
.about-body h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: 1.1rem; }
.about-body p { color: var(--muted); margin-bottom: 1rem; max-width: 38em; }
.cred-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  list-style: none;
  padding: 0;
  margin-top: 1.4rem;
}
.cred-chips li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .95rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.cred-chips svg { color: var(--gold-ink); flex: none; }

/* ---------- Office ---------- */
.office-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 2.5rem;
  align-items: stretch;
}
.office-photos {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
}
.office-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.office-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 2.1rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  overflow-wrap: anywhere;
}
.office-card h3 { font-size: 1.35rem; }
.office-line { display: flex; gap: .85rem; align-items: flex-start; }
.office-line svg { flex: none; color: var(--gold-ink); translate: 0 4px; }
.office-line strong { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: .1rem; }
.office-line a { color: var(--navy-2); }
.office-card .btn { align-self: flex-start; margin-top: .4rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; display: grid; gap: .9rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  content: "+" / ""; /* excluded from the accessible name in modern browsers */
  flex: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-ink);
  transition: rotate .2s ease;
}
.faq-item[open] summary::after { rotate: 45deg; }
.faq-item .faq-body { padding: 0 1.4rem 1.25rem; color: var(--muted); font-size: .97rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(40rem 20rem at 85% -30%, rgba(217, 161, 59, .22), transparent 60%),
    var(--navy);
  color: #fff;
  text-align: center;
  padding: 4.5rem 0;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: .8rem; }
.cta-band p { color: #c8d0e0; max-width: 36em; margin: 0 auto 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.cta-contact-line { margin-top: 2.6rem; font-size: .95rem; color: #9fb0cc; }
.cta-contact-line a { color: #e6eaf2; }

/* ---------- Legal / prose pages ---------- */
.prose { max-width: 760px; }
.prose h1 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: .6rem; }
.prose .prose-updated { color: var(--muted); font-size: .9rem; margin-bottom: 2.2rem; }
.prose h2 { font-size: 1.45rem; margin: 2.4rem 0 .8rem; }
.prose h3 { font-size: 1.08rem; margin: 1.5rem 0 .45rem; }
.prose p, .prose li { color: var(--muted); font-size: .98rem; }
.prose p { margin-bottom: .85rem; }
.prose ul { margin: .3rem 0 1rem; display: grid; gap: .35rem; }
.prose strong { color: var(--ink); }
.prose .prose-note {
  margin-top: 1rem;
  padding: .9rem 1.1rem;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  color: var(--gold-ink);
  font-size: .92rem;
}

/* ---------- Footer ---------- */
.site-footer { background: #101a30; color: #b9c3d8; padding: 3.5rem 0 2rem; font-size: .95rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: .8rem; max-width: 30em; color: #94a1bb; }
.site-footer h3 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.site-footer a { color: #b9c3d8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.6rem;
  font-size: .85rem;
  color: #8291ad;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(21, 128, 61, .6);
  transition: transform .15s ease, background-color .15s ease;
}
.wa-float:hover { transform: scale(1.07); background: var(--green-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .brand-name { font-size: 1.05rem; }
}
/* Header collapses at 1140px: below that the full nav row (brand + 6 links +
   language switch + CTA) no longer fits, especially on the Romanian page. */
@media (max-width: 1140px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 1.2rem 1.4rem 1.6rem;
    display: none;
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: .2rem; }
  .site-nav a { display: block; padding: .7rem .4rem; font-size: 1.05rem; }
  .header-cta { display: none; }
  .hero-seal { right: -8px; }
}
@media (max-width: 900px) {
  .hero { padding: 3rem 0 3.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card { rotate: 0deg; }
  .hero-seal { top: -26px; right: -12px; width: 88px; height: 88px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 2.2rem; }
  .pricing-panel { grid-template-columns: 1fr; }
  .pricing-main, .pricing-side { padding: 2.4rem 1.8rem; }
  .about-grid, .office-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { gap: 1.1rem; }
  .trust-item strong { font-size: 1.2rem; }
  /* Office photos: swipeable strip with uniform tiles */
  .office-photos {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
    scroll-padding-inline: 1.25rem;
  }
  .office-photos::-webkit-scrollbar { display: none; }
  .office-photos img {
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .brand-sub { display: none; }
  .lang-switch { padding: .35rem .55rem; gap: .35rem; }
  .lang-switch .lang-full { display: none; }
  .lang-switch .lang-short { display: inline; }
}

/* ---------- Print ---------- */
@media print {
  .wa-float,
  .nav-toggle,
  .header-cta,
  .lang-switch,
  .skip-link { display: none !important; }
  .site-header { position: static; }
  .trust-strip,
  .pricing-panel,
  .pricing-main,
  .pricing-side,
  .cta-band,
  .site-footer { background: #fff !important; }
  .trust-strip *,
  .pricing-main *,
  .pricing-side *,
  .cta-band *,
  .site-footer * { color: #000 !important; }
}
