/* ==========================================================================
   Ibergara — Landing de automatización
   Tipografía: Fraunces (titulares, self-hosted) + Libre Franklin (texto)
   Paleta: petróleo + terracota sobre papel cálido — ver variables abajo
   ========================================================================== */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../assets/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: 300 700;
  font-display: swap;
  src: url("../assets/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: 'Fraunces';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/fraunces-italic-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: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/fraunces-italic-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: 'Libre Franklin';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../assets/fonts/libre-franklin-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: 'Libre Franklin';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../assets/fonts/libre-franklin-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;
}

:root {
  /* Neutro cálido de base — nada de blanco puro ni gris frío */
  --paper: #F5F0E4;
  --paper-2: #EBE2CD;
  --ink: #211B12;

  /* Oscuro con carácter: marrón muy oscuro, no navy azulado */
  --dark: #241B12;
  --dark-2: #17110B;
  --dark-border: #3C2F1E;

  /* Primario: petróleo oscuro (reemplaza violeta/indigo) */
  --petrol: #123C3A;
  --petrol-2: #1C5551;
  --petrol-soft: #8FB8B0;

  /* Acento: terracota */
  --terracota: #BD5B2C;
  --terracota-hover: #A24923;
  --terracota-soft: #E8A97C;

  --text-body: #574E3C;
  --text-muted: #8C816A;
  --text-hero-body: #D8CDB7;
  --border: #DFD3B3;
  --max-width: 1280px;

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Libre Franklin', system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--terracota); }
a:hover { color: var(--terracota-hover); }

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

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

h1, h2, h3 { font-family: var(--font-display); font-optical-sizing: auto; }

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

/* ---- Botones: radio asimétrico en vez del rounded-rectangle por defecto ---- */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 2px 16px 2px 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  border: none;
  background: none;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--terracota);
  color: var(--paper);
  border: none;
}
.btn-primary:hover { background: var(--terracota-hover); transform: translateY(-2px); }
.btn-dark {
  background: var(--petrol);
  color: var(--paper);
  border: none;
}
.btn-dark:hover { background: var(--petrol-2); }
.btn-outline-dark {
  border: 1px solid #5a4c34;
  color: var(--paper);
  background: transparent;
}
.btn-outline-dark:hover { color: var(--paper); border-color: var(--terracota-soft); transform: translateY(-2px); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px 6px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.badge-on-dark { background: rgba(189, 91, 44, 0.16); color: var(--terracota-soft); }
.badge-on-light { background: rgba(18, 60, 58, 0.08); color: var(--petrol); }

/* ---- Numeral editorial de sección ---- */
.section-index {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 15px;
  color: var(--terracota);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: block;
}

.section-heading--center { max-width: 620px; margin: 0 auto 60px; text-align: center; }
.section-heading--center h2 { font-size: 36px; font-weight: 600; letter-spacing: -0.005em; margin: 0 0 16px; line-height: 1.15; }
.section-heading--center p { font-size: 17px; line-height: 1.6; color: var(--text-body); margin: 0; }

.section-heading--left { max-width: 640px; margin: 0 0 56px; text-align: left; }
.section-heading--left h2 { font-size: 34px; font-weight: 600; letter-spacing: -0.005em; margin: 0 0 16px; line-height: 1.18; }
.section-heading--left p { font-size: 17px; line-height: 1.6; color: var(--text-body); margin: 0; }

/* ---- Header ---- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.logo-mark { flex-shrink: 0; }
.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav a { text-decoration: none; color: var(--ink); font-size: 15px; font-weight: 500; }
.main-nav a:hover { color: var(--terracota); }
.nav-cta { padding: 11px 22px; font-size: 14px; }

/* ---- Hero: dos columnas asimétricas, no todo centrado ---- */
.hero {
  background: var(--dark);
  background-image: radial-gradient(rgba(245, 240, 228, 0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  color: var(--paper);
  padding: 76px 64px 0;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 60px;
}
.hero-badge { margin-bottom: 22px; }
.hero h1 {
  font-size: 47px;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
}
.hero p {
  font-size: 18px;
  line-height: 1.62;
  color: var(--text-hero-body);
  max-width: 520px;
  margin: 0 0 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn { padding: 15px 26px; font-size: 16px; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual svg { width: 100%; height: auto; max-width: 420px; }

/* ---- Antes / después ---- */
.section-before-after { background: var(--dark-2); color: var(--paper); padding: 108px 64px; }
.section-before-after .container { max-width: 1140px; }
.section-before-after h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-align: center;
  margin: 0 0 60px;
}
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.before-after-col { padding: 0 48px; }
.before-after-col .col-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}
.before-after-col.before { border-right: 1px dashed var(--dark-border); }
.before-after-col.before .col-label { color: #776653; }
.before-after-col.after .col-label { color: var(--terracota-soft); }
.before-after-list { display: flex; flex-direction: column; gap: 22px; }
.before-after-item { display: flex; gap: 14px; align-items: flex-start; }
.before-after-item p { font-size: 18px; margin: 0; line-height: 1.5; }
.before-after-col.before .before-after-item p { color: #9C927B; }
.before-after-col.after .before-after-item p { color: var(--paper); }
.ba-mark { flex-shrink: 0; margin-top: 6px; }

/* ---- Auditoría gratuita: timeline horizontal, alineado a la izquierda ---- */
.section-auditoria { padding: 96px 64px; }
.audit-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 52px;
  position: relative;
}
.audit-step { position: relative; padding-top: 28px; }
.audit-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: -40px;
  height: 1px;
  background: var(--border);
}
.audit-step:last-child::before { right: 0; }
.audit-step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  color: var(--terracota);
  margin-bottom: 16px;
}
.audit-step h3 { font-size: 20px; font-weight: 600; margin: 0 0 10px; letter-spacing: -0.005em; }
.audit-step p { font-size: 15px; line-height: 1.6; color: var(--text-body); margin: 0; }
.section-auditoria .cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.section-auditoria .cta-row .btn { padding: 16px 30px; font-size: 16px; }
.cta-row-note { font-size: 14px; color: var(--text-muted); }

/* ---- Logos / integraciones ---- */
.section-logos { padding: 44px 64px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-logos p {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0 0 26px;
}
.logos-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 34px; }
.logo-pill {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-body);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--border);
}

/* ---- Features: mosaico con tiles de color, no íconos sueltos ---- */
.section-features { padding: 104px 64px; background: var(--paper); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card { background: var(--paper-2); border-radius: 4px; padding: 34px 30px; }
.feature-tile {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 30% 70% 65% 35% / 40% 35% 65% 60%;
  transform: rotate(-4deg);
}
.feature-card:nth-child(even) .feature-tile { border-radius: 65% 35% 30% 70% / 60% 40% 60% 40%; transform: rotate(4deg); }
.feature-tile.tile-petrol { background: var(--petrol); }
.feature-tile.tile-terracota { background: var(--terracota); }
.feature-tile svg { width: 26px; height: 26px; transform: rotate(4deg); }
.feature-card:nth-child(even) .feature-tile svg { transform: rotate(-4deg); }
.feature-card h3 { font-size: 18px; font-weight: 600; margin: 0 0 10px; letter-spacing: -0.005em; }
.feature-card p { font-size: 15px; line-height: 1.6; color: var(--text-body); margin: 0 0 14px; }
.feature-example {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* ---- Software a medida ---- */
.section-software { background: var(--petrol); color: var(--paper); padding: 104px 64px; }
.software-inner { display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: center; }
.software-copy .section-index { color: var(--terracota-soft); }
.software-copy h2 { font-size: 33px; font-weight: 600; letter-spacing: -0.005em; margin: 0 0 18px; line-height: 1.2; color: var(--paper); }
.software-copy > p { font-size: 17px; line-height: 1.6; color: rgba(245, 240, 228, 0.82); margin: 0 0 28px; max-width: 480px; }
.software-list { display: flex; flex-direction: column; gap: 16px; margin: 0 0 34px; padding: 0; list-style: none; max-width: 480px; }
.software-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.6; color: var(--paper); }
.software-list .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracota-soft); margin-top: 8px; flex-shrink: 0; }
.software-visual { display: flex; justify-content: center; }
.software-visual svg { width: 100%; max-width: 380px; height: auto; }

/* ---- Casos de uso ---- */
.section-casos { padding: 100px 64px; background: var(--paper-2); }
.section-casos .container { max-width: 1180px; }
.case-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.case-tab {
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.case-tab.is-active { border: none; background: var(--petrol); color: var(--paper); }
.case-tab[data-accent="terracota"].is-active { background: var(--terracota); }

.case-panel {
  background: var(--petrol);
  border-radius: 8px;
  padding: 52px 56px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.case-panel[data-accent="terracota"] { background: var(--terracota); }
.case-panel-watermark {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 200px;
  height: 200px;
  opacity: 0.14;
  pointer-events: none;
}
.case-panel-inner { max-width: 620px; position: relative; z-index: 1; }
.case-panel h3 { font-size: 27px; font-weight: 600; margin: 0 0 14px; letter-spacing: -0.005em; }
.case-panel-inner > p { font-size: 16px; line-height: 1.65; color: rgba(245, 240, 228, 0.82); margin: 0 0 24px; }
.case-bullets { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.case-bullet { display: flex; gap: 12px; align-items: flex-start; }
.case-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--paper);
  margin-top: 8px;
  flex-shrink: 0;
  opacity: 0.7;
}
.case-bullet p { font-size: 15px; line-height: 1.6; color: var(--paper); margin: 0; }

/* ---- Testimonios: uno destacado + dos chicos ---- */
.section-testimonios { padding: 96px 64px; background: var(--paper); }
.testimonials-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: stretch; }
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px;
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
}
.testimonial-card--featured {
  padding: 44px 44px 38px;
  background: var(--dark);
  color: var(--paper);
  border: none;
}
.testimonial-card--small + .testimonial-card--small { margin-top: 24px; }
.testimonials-side { display: flex; flex-direction: column; }
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 26px;
  flex-grow: 1;
}
.testimonial-card--featured .testimonial-quote { font-size: 25px; color: var(--paper); }
.testimonial-card--small .testimonial-quote { font-size: 16px; color: var(--ink); }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--paper);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-card--featured .testimonial-name { color: var(--paper); }
.testimonial-role { font-size: 13px; color: var(--text-muted); }
.testimonial-card--featured .testimonial-role { color: var(--text-hero-body); }

/* ---- FAQ ---- */
.section-faq { padding: 92px 64px; background: var(--paper-2); }
.section-faq .container { max-width: 820px; }
.section-faq h2 { font-size: 34px; font-weight: 600; letter-spacing: -0.005em; margin: 0 0 46px; text-align: center; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  font-family: inherit;
}
.faq-question h3 { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin: 0; color: var(--ink); }
.faq-icon { font-size: 20px; color: var(--terracota); flex-shrink: 0; margin-left: 16px; }
.faq-answer {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 16px 0 0;
  max-width: 680px;
  display: none;
}
.faq-item.is-open .faq-answer { display: block; }

/* ---- CTA final ---- */
.section-cta-final {
  padding: 112px 64px;
  background: var(--petrol);
  background-image: linear-gradient(135deg, rgba(245,240,228,0.05) 25%, transparent 25%, transparent 50%, rgba(245,240,228,0.05) 50%, rgba(245,240,228,0.05) 75%, transparent 75%, transparent);
  background-size: 32px 32px;
  color: var(--paper);
  text-align: center;
}
.section-cta-final h2 { font-size: 38px; font-weight: 600; margin: 0 0 16px; letter-spacing: -0.005em; }
.section-cta-final p { font-size: 17px; color: rgba(245,240,228,0.82); margin: 0 0 34px; }
.section-cta-final .btn { padding: 16px 32px; font-size: 16px; }

/* ---- Footer ---- */
.site-footer { padding: 52px 64px; background: var(--dark-2); color: var(--text-muted); }
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-style: italic; font-size: 18px; font-weight: 600; color: var(--paper); margin-bottom: 10px; }
.footer-copy { font-size: 13px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.footer-contact a { color: var(--paper); text-decoration: none; font-size: 14px; }
.footer-contact a:hover { color: var(--terracota-soft); }
.footer-contact span { font-size: 13px; color: var(--text-muted); }

/* ---- Modal de contacto ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 17, 11, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.modal-overlay[hidden] { display: none; }
.modal-card {
  position: relative;
  background: var(--paper);
  border-radius: 6px;
  padding: 40px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 10px 10px 0 rgba(18, 60, 58, 0.25);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--paper-2);
  color: var(--text-body);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.modal-card h2 { font-size: 25px; font-weight: 600; margin: 0 0 10px; letter-spacing: -0.005em; }
.modal-subtitle { font-size: 15px; line-height: 1.6; color: var(--text-body); margin: 0 0 28px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; font-size: 14px; font-weight: 600; }
.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terracota);
}
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.cf-turnstile { margin-bottom: 18px; }
.modal-submit { width: 100%; padding: 14px 28px; font-size: 15px; margin-top: 4px; }
.modal-submit[disabled] { opacity: 0.6; cursor: default; }
.form-error { color: #A24923; font-size: 14px; margin: 14px 0 0; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .site-header, .hero, .section-before-after, .section-auditoria, .section-logos, .section-features,
  .section-software, .section-casos, .section-testimonios, .section-faq, .section-cta-final, .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-inner { grid-template-columns: 1fr; text-align: left; padding-bottom: 40px; }
  .hero-visual { order: -1; max-width: 280px; margin: 0 0 12px; }
  .software-inner { grid-template-columns: 1fr; }
  .software-visual { order: -1; max-width: 280px; margin: 0 auto 12px; }
  .audit-steps, .features-grid { grid-template-columns: 1fr; }
  .audit-step::before { display: none; }
  .before-after-grid { grid-template-columns: 1fr; gap: 40px; }
  .before-after-col.before { border-right: none; border-bottom: 1px dashed var(--dark-border); padding-bottom: 32px; }
  .before-after-col { padding: 0; }
  .case-panel { padding: 36px 28px; }
  .main-nav { display: none; }
  .hero h1 { font-size: 34px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--small + .testimonial-card--small { margin-top: 24px; }
  .site-footer .container { flex-direction: column; }
  .footer-contact { align-items: flex-start; }
}
