/* === Neci Recrutamento — site redesign === */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap');

:root {
  /* Palette: warm olive + cream — set by Tweaks */
  --bg: #f5f1e8;
  --bg-2: #ede6d4;
  --ink: #1b2014;
  --ink-2: #4a4f3e;
  --ink-3: #7a7d6b;
  --line: #d8d0bd;
  --accent: #4f5b2a;
  --accent-deep: #2f3818;
  --accent-bright: #a8c44a;
  --paper: #ffffff;

  --serif: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --sans: 'Inter Tight', system-ui, -apple-system, sans-serif;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;
}

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

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

body { overflow-x: hidden; }

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

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

::selection { background: var(--accent); color: var(--bg); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.nav-drawer.is-open {
  max-height: 460px;
  padding: 16px 24px 28px;
}
.nav-drawer a {
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer .nav-drawer-cta {
  margin-top: 16px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent-deep);
  color: var(--bg);
  text-align: center;
  border-bottom: none;
}
/* ============ LOGO ============ */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo-img {
  display: block;
  height: 48px;
  width: auto;
}
.logo--lg .logo-img { height: 96px; }
.logo--on-dark .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-links a {
  position: relative;
  padding: 6px 2px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent-deep); color: #f5f1e8; }
.btn-primary:hover { background: var(--ink); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-ghost { color: var(--ink-2); padding: 12px 4px; }
.btn-ghost:hover { color: var(--ink); }

/* ============ SECTIONS ============ */
section { padding: 96px 32px; }
.container { max-width: 1320px; margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3 { font-family: var(--sans); font-weight: 600; letter-spacing: -0.035em; }
h1 { font-size: clamp(48px, 6vw, 88px); line-height: 0.98; font-weight: 700; }
h2 { font-size: clamp(36px, 4vw, 56px); line-height: 1.05; font-weight: 600; }
h3 { font-size: 22px; line-height: 1.25; letter-spacing: -0.02em; font-weight: 600; }

.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}

em { font-style: italic; font-weight: 500; color: var(--accent-deep); }

/* ============ HERO ============ */
.hero {
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero h1 {
  margin: 28px 0 32px;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 400;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 36px;
}
.hero-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-meta-item .num {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 6px;
}
.hero-meta-item .num em { font-weight: 400; }
.hero-meta-item .label {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.35;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-2);
}
.hero-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink);
  box-shadow: 0 14px 40px -16px rgba(20, 20, 14, 0.25);
}
.hero-visual-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent-bright) 30%, transparent);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============ MARQUEE / TRUST ============ */
.trust {
  background: var(--accent-deep);
  color: color-mix(in oklab, var(--bg) 90%, transparent);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid color-mix(in oklab, var(--bg) 10%, transparent);
}
.trust-track {
  display: flex;
  gap: 64px;
  align-items: center;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  letter-spacing: -0.01em;
}
.trust-track span { display: inline-flex; align-items: center; gap: 64px; }
.trust-track .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  display: inline-block;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============ SERVICES ============ */
.services-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  position: relative;
  transition: background .25s;
  cursor: pointer;
}
.service-card:hover { background: var(--bg-2); }
.service-card .num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.service-card .photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  background: var(--bg-2);
  margin-bottom: 24px;
  overflow: hidden;
}
.service-card h3 {
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 20px;
}
.service-card .arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-deep);
}
.service-card .arrow svg {
  transition: transform .2s;
}
.service-card:hover .arrow svg { transform: translateX(4px); }

/* ============ PROCESS ============ */
.process {
  background: var(--accent-deep);
  color: color-mix(in oklab, var(--bg) 90%, transparent);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.process h2 { color: var(--bg); }
.process .eyebrow { color: color-mix(in oklab, var(--bg) 60%, transparent); }
.process .eyebrow::before { background: var(--accent-bright); }
.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.process-head .lede {
  color: color-mix(in oklab, var(--bg) 70%, transparent);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  border-top: 1px solid color-mix(in oklab, var(--bg) 20%, transparent);
  padding-top: 24px;
  padding-right: 16px;
}
.step-num {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--accent-bright);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 32px;
  display: block;
}
.step h3 {
  color: var(--bg);
  font-size: 24px;
  margin-bottom: 12px;
}
.step p {
  font-size: 14px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--bg) 70%, transparent);
}

/* ============ DIFFERENTIALS ============ */
.diffs-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.diffs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.diff {
  background: var(--bg);
  padding: 32px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 200px;
  transition: background .25s;
}
.diff:hover { background: var(--bg-2); }
.diff-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.diff-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: auto;
}
.diff-title em { color: var(--accent-deep); }
@media (max-width: 1024px) {
  .diffs-head { grid-template-columns: 1fr; gap: 32px; }
  .diffs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .diffs-grid { grid-template-columns: 1fr; }
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  position: relative;
}
.story-photo {
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-2);
}
.story-photo-2 {
  position: absolute;
  width: 50%;
  aspect-ratio: 4/5;
  bottom: -40px;
  right: -40px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-2);
  border: 8px solid var(--bg);
}
.story-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.25;
  color: var(--ink);
  margin: 28px 0 24px;
  letter-spacing: -0.01em;
}
.story-quote::before {
  content: '"';
  font-size: 64px;
  line-height: 0;
  color: var(--accent);
  position: relative;
  top: 16px;
  margin-right: 4px;
}
.story-body p {
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 15.5px;
}
.story-sig {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-deep);
  font-size: 20px;
}
.story-sig small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--bg-2);
}
.testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  gap: 32px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--accent-bright);
  margin-bottom: 20px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 24px;
  flex: 1;
  letter-spacing: -0.005em;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-meta .name {
  font-weight: 600;
  font-size: 14px;
}
.testimonial-meta .role {
  font-size: 12px;
  color: var(--ink-3);
}

/* ============ TESTIMONIALS CAROUSEL (mobile only) ============ */
.testimonials-carousel { display: none; }

@media (max-width: 720px) {
  .testimonials-grid { display: none; }
  .testimonials-carousel { display: block; overflow: hidden; }
  .testimonials-carousel-track {
    display: flex;
    transition: transform .35s ease;
  }
  .testimonials-carousel-slide {
    min-width: 100%;
  }
  .testimonials-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--bg);
    cursor: pointer;
    transition: background .2s, border-color .2s;
  }
  .carousel-arrow:hover { background: var(--bg-2); border-color: var(--ink-3); }
  .carousel-dots { display: flex; gap: 8px; align-items: center; }
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
  }
  .carousel-dot.is-active {
    background: var(--accent-deep);
    transform: scale(1.3);
  }
}

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-items {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  transition: color .15s;
}
.faq-q:hover { color: var(--accent-deep); }
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s, transform .25s;
}
.faq-item.is-open .faq-toggle {
  background: var(--accent-deep);
  color: var(--bg);
  border-color: var(--accent-deep);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: var(--ink-2);
  line-height: 1.6;
  font-size: 15px;
  padding-right: 48px;
}
.faq-item.is-open .faq-a {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ============ CTA / CONTACT ============ */
.cta {
  background: var(--ink);
  color: var(--bg);
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta h2 { color: var(--bg); }
.cta .lede { color: color-mix(in oklab, var(--bg) 70%, transparent); margin: 24px 0 36px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta .btn-primary { background: var(--accent-bright); color: var(--accent-deep); }
.cta .btn-primary:hover { background: var(--bg); }
.cta .btn-secondary { color: var(--bg); border-color: color-mix(in oklab, var(--bg) 30%, transparent); }
.cta .btn-secondary:hover { border-color: var(--bg); }

.cta-contact {
  background: color-mix(in oklab, var(--bg) 6%, transparent);
  border: 1px solid color-mix(in oklab, var(--bg) 12%, transparent);
  border-radius: var(--r-lg);
  padding: 36px;
}
.cta-contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--bg) 12%, transparent);
}
.cta-contact-row:last-child { border-bottom: none; }
.cta-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--bg) 10%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  flex-shrink: 0;
}
.cta-contact-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 55%, transparent);
  margin-bottom: 2px;
}
.cta-contact-value {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--bg);
  letter-spacing: -0.01em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: color-mix(in oklab, var(--bg) 60%, transparent);
  padding: 40px 32px;
  border-top: 1px solid color-mix(in oklab, var(--bg) 12%, transparent);
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
}

/* WhatsApp floating button */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22c55e;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(34, 197, 94, 0.5);
  z-index: 40;
  transition: transform .2s;
}
.fab:hover { transform: scale(1.08) rotate(-4deg); }

/* Photo placeholder striping (when no image dropped) */
image-slot::part(placeholder) {
  background:
    repeating-linear-gradient(135deg, color-mix(in oklab, var(--ink-3) 12%, transparent) 0 1px, transparent 1px 12px),
    var(--bg-2);
  color: var(--ink-3);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .services-head, .process-head, .story-grid, .testimonials-head, .faq-grid, .cta-grid, .diffs-head {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-grid, .process-steps, .testimonials-grid, .diffs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-contact-link { display: none; }
  .nav-drawer { display: flex; }
  section { padding: 72px 24px; }
}
@media (max-width: 720px) {
  /* Phone-specific polish */
  .nav-inner { padding: 14px 18px; gap: 12px; }
  .nav-cta { display: none; }
  .logo-img { height: 44px; }

  section { padding: 56px 20px; }
  .container { padding: 0; }

  h1 { font-size: 44px; line-height: 1.02; }
  h2 { font-size: 32px; }
  h3 { font-size: 20px; }
  .lede { font-size: 16px; }

  .hero { padding-top: 32px; padding-bottom: 48px; }
  .hero h1 { margin: 18px 0 22px; }
  .hero-cta { margin-top: 24px; }
  .hero-cta .btn { flex: 1; justify-content: center; min-width: 140px; }
  .hero-meta { margin-top: 40px; grid-template-columns: 1fr; gap: 22px; padding-top: 22px; }
  .hero-meta-item { display: flex; align-items: baseline; gap: 16px; }
  .hero-meta-item .num { font-size: 32px; margin-bottom: 0; min-width: 110px; }
  .hero-meta-item .label { font-size: 13px; flex: 1; }
  .hero-visual { aspect-ratio: 4/5; max-height: 480px; }
  .hero-visual-badge { left: 16px; right: 16px; bottom: 16px; padding: 14px 16px; }
  .hero-visual-badge strong { font-size: 12px; }
  .hero-visual-badge span { font-size: 11px; }

  .trust-track { font-size: 22px; gap: 40px; }
  .trust-track span { gap: 40px; }

  .services-grid, .process-steps, .testimonials-grid, .diffs-grid {
    grid-template-columns: 1fr;
  }
  .services-grid { border-radius: var(--r-md); }
  .service-card { min-height: 0; padding: 24px 22px 24px; }
  .service-card .photo { aspect-ratio: 16/10; max-height: 200px; }

  .process { padding: 64px 20px; }
  .process-head { margin-bottom: 48px; }
  .step { padding-top: 20px; }
  .step-num { font-size: 44px; margin-bottom: 18px; }
  .step h3 { font-size: 20px; }

  .diff { min-height: 0; padding: 24px 20px 28px; }
  .diff-title { font-size: 19px; }

  .story-photo-2 { width: 45%; bottom: -24px; right: -16px; border-width: 6px; }
  .story-quote { font-size: 22px; }
  .story-quote::before { font-size: 48px; top: 12px; }
  .story-sig { font-size: 18px; }

  .story-visual {
    display: flex;
    justify-content: center;
  }
  .story-photo {
    aspect-ratio: 1 / 1;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .testimonial { padding: 24px; }
  .testimonial blockquote { font-size: 16px; }

  .faq-q { font-size: 17px; padding: 20px 0; gap: 16px; }
  .faq-toggle { width: 28px; height: 28px; }
  .faq-a { font-size: 14px; padding-right: 16px; }
  .faq-item.is-open .faq-a { padding-bottom: 20px; }

  .cta { padding-top: 72px; padding-bottom: 72px; }
  .cta .lede { margin: 18px 0 28px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .cta-contact { padding: 24px 22px; border-radius: var(--r-md); }
  .cta-contact-value { font-size: 17px; }

  .footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .fab { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}
