/* =========================================================================
   Compensa.lá — Landing page (conversão · Google Ads)
   Brand-faithful styles built on /colors_and_type.css tokens.
   ========================================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-on-light);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
::selection { background: var(--c-verde-vivo); color: #fff; }

/* ----------------------------------------------------------------------- */
/* Layout primitives                                                        */
/* ----------------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding-top: 120px; padding-bottom: 120px; }
.section--tight { padding-top: 96px; padding-bottom: 96px; }

.surface-light  { background: var(--bg-light); color: var(--ink-on-light); }
.surface-dark   { background: var(--c-verde-compensa); color: #fff; }
.surface-gradient {
  background:
    radial-gradient(ellipse 55% 90% at 90% 80%, #2A9272 0%, transparent 45%),
    radial-gradient(ellipse 70% 70% at 10% 20%, #0A4A3E 0%, transparent 50%),
    linear-gradient(135deg, #05302C 0%, #051A1B 100%);
  color: #fff;
}

/* ----------------------------------------------------------------------- */
/* Type helpers                                                             */
/* ----------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--t-eyebrow-size);
  font-weight: var(--t-eyebrow-weight);
  letter-spacing: var(--t-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--c-verde-vivo);
  margin: 0 0 16px;
}
.surface-dark .eyebrow,
.surface-gradient .eyebrow { color: var(--c-verde-bruma); }

.eyebrow-divider {
  width: 80px; height: 4px; border-radius: 2px;
  background: var(--c-verde-vivo);
  border: 0; margin: 0 0 24px;
}
.surface-dark .eyebrow-divider,
.surface-gradient .eyebrow-divider { background: var(--c-verde-bruma); }

h1, h2, h3 { text-wrap: balance; margin: 0; }
.h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.01em;
}
.h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 600; line-height: 1.18; letter-spacing: -0.01em; }
.lead {
  font-size: clamp(17px, 1.4vw, 19px); line-height: 1.55; font-weight: 400;
  color: var(--ink-on-light-muted);
}
.surface-dark .lead, .surface-gradient .lead { color: rgba(255,255,255,0.85); }
.body { font-size: 17px; line-height: 1.6; color: var(--ink-on-light-muted); }

/* ----------------------------------------------------------------------- */
/* Buttons                                                                  */
/* ----------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; padding: 0 26px;
  font-size: 15.5px; font-weight: 500; letter-spacing: 0;
  border-radius: 10px; border: 0; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: background 160ms cubic-bezier(.4,0,.2,1), opacity 160ms, transform 120ms;
}
.btn:active { transform: scale(0.98); }
.btn svg { width: 18px; height: 18px; }

.btn--primary { background: var(--c-verde-compensa); color: #fff; }
.btn--primary:hover { background: #0a463f; }
.btn--secondary {
  background: #fff; color: var(--c-verde-compensa);
  box-shadow: inset 0 0 0 1.5px var(--c-verde-compensa);
}
.btn--secondary:hover { background: rgba(5,48,44,0.04); }

/* on dark surfaces */
.surface-dark .btn--primary, .surface-gradient .btn--primary,
.btn--primary.on-dark { background: #fff; color: var(--c-verde-compensa); }
.surface-dark .btn--primary:hover, .surface-gradient .btn--primary:hover,
.btn--primary.on-dark:hover { background: var(--c-verde-bruma); }
.btn--secondary.on-dark {
  background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.6);
}
.btn--secondary.on-dark:hover { background: rgba(255,255,255,0.08); }

.btn--lg { height: 56px; padding: 0 30px; font-size: 16px; }

/* WhatsApp glyph in button keeps brand monochrome (no green logo) */

/* ----------------------------------------------------------------------- */
/* Cards                                                                    */
/* ----------------------------------------------------------------------- */
.card-translucent {
  background: color-mix(in srgb, var(--c-verde-bruma) 20%, transparent);
  border-radius: 16px;
  padding: 28px 26px;
}
.card-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.surface-light .card-icon { background: color-mix(in srgb, var(--c-verde-vivo) 14%, transparent); color: var(--c-verde-vivo); }
.surface-dark .card-icon  { background: rgba(167,213,194,0.18); color: var(--c-verde-bruma); }
.card-title { font-size: 19px; font-weight: 600; line-height: 1.3; margin: 0; }
.card-body  { font-size: 14.5px; line-height: 1.55; margin: 10px 0 0; }
.surface-light .card-body { color: var(--ink-on-light-muted); }
.surface-dark .card-body  { color: rgba(255,255,255,0.78); }

/* ----------------------------------------------------------------------- */
/* NAV                                                                      */
/* ----------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 200ms, border-color 200ms, backdrop-filter 200ms;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid rgba(5,48,44,0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { height: 34px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.88); text-decoration: none; border-radius: 6px;
  transition: color 160ms;
}
.nav.scrolled .nav-links a { color: var(--c-verde-compensa); }
.nav-links a:hover { color: var(--c-verde-bruma); }
.nav.scrolled .nav-links a:hover { color: var(--c-verde-vivo); }
.nav-cta { height: 44px; padding: 0 20px; font-size: 14.5px; }
.nav-burger { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }

/* ----------------------------------------------------------------------- */
/* HERO                                                                     */
/* ----------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100vh;
  padding-top: 150px; padding-bottom: 110px;
  color: #fff; overflow: hidden;
  display: flex; align-items: center;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: center;
  width: 100%;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; color: #fff;
}
.hero p {
  margin-top: 28px; max-width: 520px;
  font-size: clamp(17px, 1.5vw, 19px); line-height: 1.55; color: rgba(255,255,255,0.85);
}
.hero-cta { margin-top: 38px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 34px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(167,213,194,0.85);
}
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.5; }

/* advantage stat cards */
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.stat-card { background: rgba(167,213,194,0.20); border-radius: 14px; padding: 20px 24px; }
.stat-value {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 42px; font-weight: 800; line-height: 1; letter-spacing: -0.02em;
  color: var(--c-verde-bruma); font-feature-settings: "tnum";
}
.stat-value .unit { font-size: 17px; font-weight: 500; opacity: 0.85; }
.stat-label {
  margin-top: 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--c-verde-bruma); opacity: 0.9;
}
.stat-note { margin-top: 7px; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.78); }

/* benefit-led advantage cards (hero) */
.adv-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-verde-bruma); opacity: 0.9;
}
.adv-title {
  margin-top: 9px; font-size: 21px; font-weight: 700; line-height: 1.22;
  letter-spacing: -0.01em; color: var(--c-verde-bruma);
}
.adv-note { margin-top: 9px; font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.8); }

/* ----------------------------------------------------------------------- */
/* Section heading blocks                                                   */
/* ----------------------------------------------------------------------- */
.head-narrow { max-width: 760px; }
.head-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.split-2col {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center;
}

/* cards grid */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* numbered feature row (problema -> solução supporting points) */
.point-row { display: flex; gap: 14px; align-items: flex-start; }
.point-check {
  margin-top: 3px; width: 20px; height: 20px; border-radius: 5px;
  background: var(--c-verde-vivo); flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.surface-dark .point-check { background: var(--c-verde-bruma); }
.point-check svg { width: 13px; height: 13px; color: #fff; }
.surface-dark .point-check svg { color: var(--c-verde-compensa); }

/* ----------------------------------------------------------------------- */
/* PHOTO band (solução / emotional moment)                                  */
/* ----------------------------------------------------------------------- */
.photo-band {
  position: relative; border-radius: 24px; overflow: hidden;
  min-height: 460px; display: flex; align-items: flex-end; padding: 44px;
  background-size: cover; background-position: center;
}
.photo-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(5,48,44,0.34) 0%, rgba(5,48,44,0.10) 42%, rgba(5,48,44,0) 70%);
}
.photo-card {
  position: relative;
  background: rgba(255,255,255,0.93);
  border-radius: 16px; padding: 34px; max-width: 600px; color: var(--c-verde-compensa);
}
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* full-bleed photo CTA (closing dobra) */
.cta-photo {
  position: relative; overflow: hidden;
  background-size: cover; background-position: center; color: #fff;
}
.cta-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,26,27,0.48) 0%, rgba(5,38,34,0.38) 100%);
}

/* ----------------------------------------------------------------------- */
/* PROCESSO timeline                                                        */
/* ----------------------------------------------------------------------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.steps-line {
  position: absolute; top: 32px; left: 10%; right: 10%; height: 1.5px;
  background: rgba(167,213,194,0.25);
}
.step { position: relative; text-align: center; }
.step-num {
  width: 64px; height: 64px; margin: 0 auto;
  border-radius: 12px; border: 2px solid var(--c-verde-bruma); color: var(--c-verde-bruma);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; background: var(--c-verde-compensa);
  position: relative; z-index: 1; font-feature-settings: "tnum";
}
.step-title { margin-top: 18px; font-size: 15.5px; font-weight: 600; color: #fff; line-height: 1.25; }
.step-body { margin-top: 9px; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.72); padding: 0 4px; }

/* ----------------------------------------------------------------------- */
/* FAQ                                                                      */
/* ----------------------------------------------------------------------- */
.faq-list { }
.faq-item { border-top: 1px solid rgba(5,48,44,0.10); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; background: transparent; border: 0; cursor: pointer;
  text-align: left; font-size: 18px; font-weight: 600; color: var(--c-verde-compensa); line-height: 1.35;
}
.faq-toggle {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1.5px rgba(5,48,44,0.18); color: var(--c-verde-compensa);
  transition: all 160ms;
}
.faq-toggle svg { width: 16px; height: 16px; transition: transform 200ms cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-toggle { background: var(--c-verde-compensa); box-shadow: none; color: #fff; }
.faq-item.open .faq-toggle svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 260ms cubic-bezier(.4,0,.2,1);
}
.faq-a-inner {
  padding-bottom: 28px; font-size: 16px; line-height: 1.6;
  color: var(--ink-on-light-muted); max-width: 660px;
}
.faq-link {
  appearance: none; border: 0; background: none; padding: 0;
  font: inherit; color: var(--c-verde-compensa); font-weight: 600;
  cursor: pointer; text-decoration: underline; text-underline-offset: 2px;
}
.faq-link:hover { color: var(--c-verde-vivo); }

/* ----------------------------------------------------------------------- */
/* FOOTER                                                                   */
/* ----------------------------------------------------------------------- */
.footer {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, #0A4A3E 0%, transparent 48%),
    radial-gradient(ellipse 60% 70% at 0% 100%, #01644E 0%, transparent 42%),
    linear-gradient(160deg, #05302C 0%, #051A1B 100%);
  color: #fff; padding-top: 96px; padding-bottom: 44px;
}
.footer-top {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: end;
  padding-bottom: 56px; border-bottom: 1px solid rgba(167,213,194,0.18);
}
.footer-logo { height: 64px; width: auto; }
.footer-claim { margin: 36px 0 0; font-size: clamp(24px, 2.6vw, 34px); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; max-width: 520px; }
.footer-cta-col { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-mid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 52px 0;
}
.footer-col h4 { font-size: var(--t-eyebrow-size); font-weight: 600; letter-spacing: var(--t-eyebrow-tracking); text-transform: uppercase; color: var(--c-verde-bruma); margin: 0 0 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 160ms; }
.footer-col a:hover { color: var(--c-verde-bruma); }
.footer-legal-list li { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.72); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(167,213,194,0.18);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(167,213,194,0.65);
}

/* ----------------------------------------------------------------------- */
/* MODAL — WhatsApp lead form                                               */
/* ----------------------------------------------------------------------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(5,26,27,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 200ms;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff; color: var(--c-verde-compensa); border-radius: 20px;
  width: 100%; max-width: 520px; max-height: 92vh; overflow: auto;
  padding: 40px 46px; position: relative;
  transform: translateY(12px) scale(0.98); transition: transform 220ms cubic-bezier(.4,0,.2,1);
}
.modal-overlay.open .modal { transform: none; }
.modal-close {
  position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(5,48,44,0.06); border: 0; cursor: pointer; color: var(--c-verde-compensa);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: rgba(5,48,44,0.10); }
.modal-eyebrow { color: var(--c-verde-vivo); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.modal h3 { margin: 12px 0 0; font-size: 27px; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
.modal-sub { margin: 12px 0 26px; font-size: 14.5px; line-height: 1.55; color: var(--ink-on-light-muted); }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.field label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(5,48,44,0.7); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--c-verde-compensa);
  height: 50px; padding: 0 14px; background: #fff; border-radius: 8px;
  box-shadow: inset 0 0 0 1.5px rgba(5,48,44,0.18); border: 0; outline: none;
  transition: box-shadow 140ms;
}
.field textarea { height: auto; min-height: 84px; padding: 13px 14px; line-height: 1.5; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { box-shadow: inset 0 0 0 2px var(--c-verde-vivo); }
.field .hint { font-size: 12px; color: var(--ink-on-light-footer); }
.modal-submit { width: 100%; margin-top: 14px; }
.modal-note {
  margin-top: 16px; font-size: 12px; line-height: 1.5; color: var(--ink-on-light-footer);
  display: flex; align-items: flex-start; gap: 8px;
}
.modal-note svg { width: 15px; height: 15px; color: var(--c-verde-vivo); flex-shrink: 0; margin-top: 1px; }
.field .err { display: none; font-size: 12px; color: #b0413a; margin-top: 1px; }
.field-error input, .field-error select, .field-error textarea { box-shadow: inset 0 0 0 2px #b0413a; }
.field-error .err { display: block; }

/* two-step modal */
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.modal-steps { display: flex; gap: 5px; margin-right: 44px; }
.modal-step-dot { width: 26px; height: 4px; border-radius: 2px; background: rgba(5,48,44,0.14); transition: background 200ms; }
.modal-step-dot.is-on { background: var(--c-verde-vivo); }
.modal-step h3 { margin: 0; }
.modal-back {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; border: 0; cursor: pointer; padding: 0;
  font-size: 13.5px; font-weight: 500; color: var(--ink-on-light-muted);
  margin-bottom: 14px; transition: color 140ms;
}
.modal-back:hover { color: var(--c-verde-vivo); }

/* option cards (etapa 1) */
.options { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 6px; }
.option {
  display: flex; align-items: flex-start; gap: 14px; text-align: left;
  width: 100%; padding: 17px 18px; cursor: pointer;
  background: #fff; border: 0; border-radius: 12px;
  box-shadow: inset 0 0 0 1.5px rgba(5,48,44,0.16);
  transition: box-shadow 140ms, background 140ms;
}
.option:hover { box-shadow: inset 0 0 0 1.5px rgba(5,48,44,0.34); }
.option.selected { box-shadow: inset 0 0 0 2px var(--c-verde-compensa); background: color-mix(in srgb, var(--c-verde-bruma) 14%, #fff); }
.option-mark {
  margin-top: 2px; width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(5,48,44,0.28);
  position: relative; transition: box-shadow 140ms;
}
.option.selected .option-mark { box-shadow: inset 0 0 0 7px var(--c-verde-compensa); }
.option-text { display: flex; flex-direction: column; gap: 4px; }
.option-title { font-size: 15.5px; font-weight: 600; color: var(--c-verde-compensa); line-height: 1.3; }
.option-desc { font-size: 13px; line-height: 1.45; color: var(--ink-on-light-muted); }
.options-err { margin: 2px 0 0; font-size: 12.5px; color: #b0413a; display: none; }
.options-err.show { display: block; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-grid .field { margin-bottom: 20px; min-width: 0; }
.field input, .field select, .field textarea { width: 100%; }
.modal-submit svg { width: 19px; height: 19px; }

/* ----------------------------------------------------------------------- */
/* Floating WhatsApp button (mobile persistent CTA)                         */
/* ----------------------------------------------------------------------- */
.fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  height: 58px; padding: 0 24px; border-radius: 29px; border: 0; cursor: pointer;
  background: var(--c-verde-compensa); color: #fff;
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-sans); font-size: 15.5px; font-weight: 600;
  box-shadow: 0 10px 30px rgba(5,26,27,0.34);
  transition: transform 140ms cubic-bezier(.4,0,.2,1), background 160ms;
}
.fab:hover { background: #0a463f; transform: translateY(-2px); }
.fab:active { transform: scale(0.98); }
.fab .fab-icon { width: 24px; height: 24px; }

/* ----------------------------------------------------------------------- */
/* Responsive                                                               */
/* ----------------------------------------------------------------------- */
@media (max-width: 960px) {
  .section { padding-top: 80px; padding-bottom: 80px; }
  .section--tight { padding-top: 64px; padding-bottom: 64px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav.scrolled .nav-burger { color: var(--c-verde-compensa); }
  .nav-burger { color: #fff; }
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-cards { flex-direction: column; }
  .head-2col, .split-2col { grid-template-columns: 1fr; gap: 36px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps-line { display: none; }
  .step { text-align: left; display: grid; grid-template-columns: 64px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid rgba(167,213,194,0.18); align-items: start; }
  .step:first-child { border-top: 0; }
  .step-title, .step-body { margin-top: 0; }
  .step-title { margin-bottom: 6px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .footer-mid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .fab { bottom: 18px; right: 18px; height: 54px; padding: 0 18px; }
  .fab .fab-label { display: none; }
  .field-grid { grid-template-columns: 1fr; }
  .cards-4, .cards-2 { grid-template-columns: 1fr; }
  .photo-band { padding: 20px; min-height: 400px; }
  .photo-card { padding: 24px; }
  .modal { padding: 30px 24px; }
  .footer-mid { grid-template-columns: 1fr; }
}
