/* Tqthyponastic — Career Development
   Corporate editorial · navy/orange/cream · Sevilla
   Type: Playfair Display + Inter */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #f7f5ef;
  color: #1a1f2c;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:root {
  --bg: #f7f5ef;
  --bg-soft: #efece2;
  --card: #ffffff;
  --ink: #1a1f2c;
  --ink-dim: #5e677a;
  --navy: #0e2a47;
  --navy-soft: #1f4068;
  --orange: #e87b1c;
  --orange-soft: #f9a55c;
  --line: #d6d0bf;
  --container: 1240px;
  --pad: clamp(20px, 4vw, 40px);
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 500; letter-spacing: -0.015em; line-height: 1.1; color: var(--navy); }
h1 { font-size: clamp(48px, 7vw, 96px); letter-spacing: -0.025em; }
h2 { font-size: clamp(36px, 4.5vw, 64px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); }
h4 { font-size: 20px; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: -0.01em; }
.italic { font-style: italic; color: var(--orange); }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--orange); font-weight: 700;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--orange);
}
p { color: var(--ink-dim); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(80px, 10vw, 144px) 0; position: relative; }

/* === Header === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247, 245, 239, 0.98);
  border-bottom: 1px solid transparent;
  padding: 18px 0;
  transition: all 0.4s ease;
}
.site-header.scrolled { padding: 12px 0; border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(14, 42, 71, 0.05); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand {
  font-family: 'Playfair Display', serif; font-weight: 600;
  font-size: 26px; color: var(--navy); letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 12px;
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.brand-mark::after {
  content: 'T'; color: var(--orange);
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 22px; font-weight: 600;
  margin-top: -2px;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; color: var(--ink-dim); font-weight: 500;
  position: relative; padding: 4px 0;
  transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 2px; background: var(--orange);
}
.nav-cta {
  background: var(--navy); color: #fff;
  padding: 13px 24px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  position: relative;
  transition: background 0.3s ease;
}
.nav-cta::before {
  content: ''; position: absolute; top: 4px; left: 4px;
  width: 100%; height: 100%; background: var(--orange);
  z-index: -1;
  transition: transform 0.3s ease;
}
.nav-cta:hover { background: var(--navy-soft); }
.nav-cta:hover::before { transform: translate(2px, 2px); }
.burger { display: none; background: none; border: 0; flex-direction: column; gap: 4px; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 2px; background: var(--navy); }

/* === Hero === */
.hero {
  padding: 160px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.hero h1 { margin: 28px 0 32px; max-width: 14ch; }
.hero h1 em { color: var(--orange); font-style: italic; }
.hero .lede { font-size: 19px; margin-bottom: 40px; max-width: 38ch; }
.hero-meta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 32px;
  font-family: inherit; font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  cursor: pointer; border: 0;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--navy); color: #fff;
  position: relative;
}
.btn-primary::before {
  content: ''; position: absolute; top: 6px; left: 6px;
  width: 100%; height: 100%; background: var(--orange);
  z-index: -1; transition: transform 0.3s ease;
}
.btn-primary:hover { background: var(--navy-soft); }
.btn-primary:hover::before { transform: translate(2px, 2px); }
.btn-ghost {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(14, 42, 71, 0.4));
}
.hero-visual::after {
  content: ''; position: absolute; bottom: -1px; right: -1px;
  width: 120px; height: 120px;
  border-bottom: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
}
.hero-quote {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: var(--card);
  padding: 24px 28px;
  border-left: 4px solid var(--orange);
  z-index: 2;
  box-shadow: 0 20px 40px -10px rgba(14, 42, 71, 0.3);
}
.hero-quote p {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 17px; line-height: 1.5; color: var(--navy);
}
.hero-quote .cite { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-top: 12px; font-family: 'Inter', sans-serif; font-style: normal; font-weight: 700; }

/* === Trusted strip === */
.trusted {
  background: var(--navy); color: #d4e0ed;
  padding: 28px 0;
}
.trusted .container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.trusted .label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.trusted-logos { display: flex; gap: 40px; flex-wrap: wrap; flex: 1; justify-content: space-between; }
.trusted-logos span { font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px; color: #d4e0ed; white-space: nowrap; }

/* === Section head (left-aligned editorial) === */
.sec-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 72px; }
.sec-head .eyebrow { margin-bottom: 24px; }
.sec-head h2 { max-width: 14ch; }
.sec-head .desc { font-size: 18px; max-width: 56ch; }

/* === Service grid === */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.service {
  background: var(--card);
  padding: 48px 40px 40px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex; flex-direction: column; gap: 24px;
  border: 1px solid var(--line);
}
.service:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -16px rgba(14, 42, 71, 0.12); }
.service-num { display: flex; align-items: center; gap: 16px; }
.service-num .n { font-family: 'Playfair Display', serif; font-style: italic; font-size: 56px; color: var(--orange); line-height: 1; font-weight: 500; }
.service-num .label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); font-weight: 700; }
.service h3 { font-size: 30px; }
.service p { font-size: 16px; }
.service ul { list-style: none; padding: 0; }
.service li { padding: 10px 0; border-top: 1px dotted var(--line); display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.service li::before { content: '→'; color: var(--orange); font-weight: 700; }
.service .read { color: var(--navy); font-weight: 600; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-top: auto; padding-top: 16px; border-top: 2px solid var(--navy); display: inline-block; }

/* === Process vertical steps === */
.process { max-width: 980px; margin: 0 auto; position: relative; }
.process::before {
  content: ''; position: absolute; left: 40px; top: 0; bottom: 0;
  width: 1px; background: var(--line);
}
.process-step {
  display: grid; grid-template-columns: 80px 1fr 1fr; gap: 32px;
  padding: 32px 0; align-items: start;
  position: relative;
}
.process-step .marker {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600;
  font-size: 26px; color: var(--navy);
  position: relative; z-index: 1;
}
.process-step.active .marker { background: var(--navy); color: var(--orange); border-color: var(--navy); }
.process-step h3 { margin-bottom: 12px; }
.process-step .when { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 15px; }

/* === Stats banner === */
.stats-banner {
  background: var(--navy); color: #fff;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px; background: var(--orange); opacity: 0.18;
  border-radius: 50%;
}
.stats-banner .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.stat-item { padding-left: 24px; border-left: 2px solid var(--orange); }
.stat-item .num {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(56px, 7vw, 88px); color: #fff; line-height: 1;
  letter-spacing: -0.02em;
}
.stat-item .label { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-soft); margin-top: 12px; font-weight: 500; }
.stat-item .desc { font-size: 14px; color: #c4d4e6; margin-top: 14px; }

/* === Team zigzag === */
.team-zig { display: grid; gap: 64px; }
.team-row {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center;
}
.team-row.flip > .team-img { order: 2; }
.team-img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.team-row:hover .team-img img { transform: scale(1.05); }
.team-img::after {
  content: ''; position: absolute; top: -1px; left: -1px;
  width: 100px; height: 100px;
  border-top: 4px solid var(--orange); border-left: 4px solid var(--orange);
}
.team-body .role { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 12px; }
.team-body h3 { font-size: 44px; margin-bottom: 14px; }
.team-body .bio { font-size: 16px; margin-bottom: 24px; }
.team-body .creds { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.team-body .creds span { font-size: 13px; color: var(--ink-dim); display: flex; gap: 12px; }
.team-body .creds strong { color: var(--navy); min-width: 120px; font-weight: 700; }

/* === Testimonials cards === */
.testi-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 0;
  border: 1px solid var(--line);
  background: var(--card);
}
.testi {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
}
.testi:last-child { border-right: 0; }
.testi:first-child { background: var(--navy); color: #fff; }
.testi:first-child p { color: #d4e0ed; }
.testi:first-child blockquote { color: #fff; }
.testi:first-child .name { color: #fff; }
.testi .mark { font-family: 'Playfair Display', serif; font-style: italic; font-size: 72px; color: var(--orange); line-height: 0.2; margin-bottom: 24px; }
.testi blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 21px; line-height: 1.45; margin-bottom: 32px; flex: 1; }
.testi-who { display: flex; gap: 14px; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); }
.testi:first-child .testi-who { border-top-color: rgba(255,255,255,0.2); }
.testi-who img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.name { font-weight: 700; font-size: 15px; }
.role { font-size: 13px; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-top: 4px; }

/* === Blog magazine === */
.blog-magazine { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; }
.blog-main article { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.blog-main article:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.blog-main .b-img { aspect-ratio: 16/9; overflow: hidden; margin-bottom: 28px; }
.blog-main .b-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease; }
.blog-main article:hover .b-img img { transform: scale(1.04); }
.blog-meta { display: flex; gap: 18px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 16px; align-items: center; }
.blog-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.blog-main h3 { font-size: clamp(28px, 3.2vw, 42px); margin-bottom: 14px; line-height: 1.15; }
.blog-main p { font-size: 16px; margin-bottom: 20px; }
.blog-main .read { color: var(--navy); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 13px; border-bottom: 2px solid var(--orange); padding-bottom: 4px; }

.blog-side h5 { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--navy); }
.blog-side-item { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 60px 1fr; gap: 14px; }
.blog-side-item .num { font-family: 'Playfair Display', serif; font-style: italic; font-size: 36px; color: var(--orange); line-height: 1; font-weight: 500; }
.blog-side-item h4 { font-size: 15px; line-height: 1.35; margin-bottom: 6px; color: var(--navy); font-family: 'Inter', sans-serif; font-weight: 600; }
.blog-side-item .meta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); font-weight: 700; }

/* === FAQ === */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 28px 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq-q h3 { font-size: 24px; color: var(--navy); }
.faq-q .ico { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--orange); font-style: italic; line-height: 1; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, margin 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; margin-top: 16px; }
.faq-a p { font-size: 16px; max-width: 70ch; }

/* === Form === */
.form-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.form-wrap > div:first-child { background: var(--card); padding: clamp(32px, 5vw, 56px); border-top: 4px solid var(--orange); border: 1px solid var(--line); }
.form { display: grid; gap: 20px; }
.form .field { display: flex; flex-direction: column; gap: 8px; }
.form label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); font-weight: 700; }
.form input, .form textarea, .form select {
  background: var(--bg); border: 0; border-bottom: 2px solid var(--line);
  padding: 14px 4px; font-size: 16px; font-family: inherit; color: var(--ink);
  transition: border-color 0.3s ease;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: 0; border-bottom-color: var(--orange); }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form .consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--ink-dim); }
.form .consent input { width: auto; }
.form .consent a { color: var(--orange); border-bottom: 1px solid var(--orange); }
.form textarea { resize: vertical; min-height: 110px; }

.contact-info { padding-left: 0; }
.contact-info .info-row { padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-row:first-child { padding-top: 0; }
.contact-info h5 { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 10px; }
.contact-info p { color: var(--navy); font-size: 18px; }
.contact-info p a { color: var(--navy); }
.contact-info p a:hover { color: var(--orange); }

.map-wrap { margin-top: 64px; aspect-ratio: 21/9; border: 1px solid var(--line); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3); }

/* === Page head === */
.page-head { padding: 200px 0 96px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.page-head .crumbs { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 24px; }
.page-head .crumbs a { color: var(--ink-dim); }
.page-head h1 { max-width: 16ch; }
.page-head .lede { max-width: 60ch; margin-top: 28px; font-size: 19px; }

/* === Legal === */
.legal { max-width: 820px; margin: 0 auto; background: var(--card); padding: clamp(32px, 5vw, 56px); border: 1px solid var(--line); }
.legal h2 { font-size: 28px; margin: 48px 0 14px; color: var(--navy); font-family: 'Playfair Display', serif; font-weight: 500; }
.legal h3 { font-size: 18px; margin: 28px 0 10px; color: var(--navy); font-family: 'Inter', sans-serif; font-weight: 600; }
.legal p, .legal li { color: var(--ink-dim); font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.legal ul { margin: 8px 0 20px 24px; }
.legal a { color: var(--orange); border-bottom: 1px solid var(--orange); }
.legal .updated { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); padding-bottom: 16px; border-bottom: 1px solid var(--line); font-weight: 700; }

/* === Footer === */
.site-footer { background: var(--navy); color: #d4e0ed; padding: 96px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 64px; }
.site-footer h5 { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 22px; font-weight: 700; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { color: #d4e0ed; font-size: 14px; transition: color 0.3s ease; }
.footer-grid a:hover { color: var(--orange); }
.footer-brand .brand { color: #fff; margin-bottom: 18px; }
.footer-brand .brand-mark { background: var(--orange); }
.footer-brand .brand-mark::after { color: var(--navy); }
.footer-brand p { color: #c4d4e6; max-width: 36ch; font-size: 14px; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: all 0.3s ease;
}
.socials a:hover { background: var(--orange); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; color: #93b3c5; }

/* === Cookie banner === */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px;
  background: var(--card); border-left: 4px solid var(--orange);
  padding: 24px 28px; z-index: 1000;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  max-width: 1000px; margin: 0 auto;
  box-shadow: 0 24px 60px rgba(14, 42, 71, 0.18);
  transform: translateY(140%); transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 14px; color: var(--ink); }
.cookie-banner a { color: var(--orange); border-bottom: 1px solid var(--orange); }
.cookie-banner .actions { display: flex; gap: 10px; }
.cookie-banner button {
  padding: 11px 22px; border: 0; cursor: pointer;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  font-family: inherit;
}
.cookie-accept { background: var(--navy); color: #fff; }
.cookie-accept:hover { background: var(--orange); }
.cookie-reject { background: var(--bg-soft); color: var(--navy); }

/* === Reveal === */
[data-reveal], [data-reveal-stagger] > * { opacity: 0; transform: translateY(28px); }
[data-reveal].animate, [data-reveal-stagger].animate > * { animation: revealUp 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
[data-reveal-stagger].animate > *:nth-child(1) { animation-delay: 0s; }
[data-reveal-stagger].animate > *:nth-child(2) { animation-delay: 0.08s; }
[data-reveal-stagger].animate > *:nth-child(3) { animation-delay: 0.16s; }
[data-reveal-stagger].animate > *:nth-child(4) { animation-delay: 0.24s; }
[data-reveal-stagger].animate > *:nth-child(5) { animation-delay: 0.32s; }
[data-reveal-stagger].animate > *:nth-child(6) { animation-delay: 0.4s; }
@keyframes revealUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .sec-head { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-row { grid-template-columns: 1fr; gap: 32px; }
  .team-row.flip > .team-img { order: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi { border-right: 0; border-bottom: 1px solid var(--line); }
  .blog-magazine { grid-template-columns: 1fr; gap: 56px; }
  .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .process-step { grid-template-columns: 60px 1fr; }
  .process-step .marker { width: 60px; height: 60px; font-size: 22px; }
  .process::before { left: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; gap: 16px; position: absolute; top: 100%; left: 0; right: 0; background: var(--card); padding: 24px; border-bottom: 1px solid var(--line); }
  .stats-grid { grid-template-columns: 1fr; }
  .form .row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-banner .actions { flex-wrap: wrap; }
  .blog-side-item { grid-template-columns: 50px 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
