:root {
  --green: #7dc226;
  --green-dark: #2f6b18;
  --green-deep: #183d16;
  --green-soft: #f5faef;
  --red: #f25262;
  --red-deep: #c83549;
  --violet: #7d3fc7;
  --gold: #f2a900;
  --text: #2e2e2e;
  --muted: #667064;
  --line: #e2eadc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(24, 61, 22, .13);
  --shadow-soft: 0 10px 30px rgba(24, 61, 22, .08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --header-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 10px); }
body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
p { margin: 0; }

.container {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  background: var(--green-deep);
}
.skip-link:focus { top: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(47,107,24,.12);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(24,61,22,.09); }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  height: 100%;
}
.brand-logo {
  width: auto;
  height: 54px;
  max-width: 86px;
  object-fit: contain;
  object-position: center;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width .2s ease;
}
.main-nav a:hover::after,
.main-nav a.is-active::after { width: 100%; }
.nav-cta {
  padding: 9px 15px;
  border-radius: 999px;
  color: white;
  background: var(--green-deep);
  box-shadow: 0 8px 20px rgba(24,61,22,.18);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--green-deep);
}

/* Type */
h1, h2, h3 {
  margin: 0;
  color: var(--green-deep);
  font-family: "Montserrat", system-ui, sans-serif;
  line-height: 1.12;
}
h2 { font-size: clamp(30px, 3.5vw, 48px); letter-spacing: -.035em; }
h3 { font-size: 19px; letter-spacing: -.015em; }
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--green);
}
.light-kicker { color: rgba(255,255,255,.84); }
.light-kicker::before { background: var(--gold); }
.red-kicker { color: var(--red-deep); }
.red-kicker::before { background: var(--red); }

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(660px, calc(100svh - var(--header-h)));
  padding: 24px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 15%, rgba(125,194,38,.22), transparent 34%),
    radial-gradient(circle at 12% 22%, rgba(125,63,199,.09), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f8fbf5 52%, #edf7e7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -220px;
  width: 460px;
  height: 460px;
  border: 58px solid rgba(125,194,38,.13);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 36px;
}
.hero-copy { max-width: 690px; }
.hero-logo {
  width: clamp(235px, 25vw, 330px);
  height: auto;
  max-height: 225px;
  margin-bottom: 10px;
  object-fit: contain;
}
.hero-subtitle {
  max-width: 690px;
  margin-top: 14px;
  color: #3e4a3b;
  font-size: clamp(18px, 1.75vw, 23px);
  font-weight: 600;
  line-height: 1.42;
}
.hero-subtitle span { color: var(--violet); font-weight: 800; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--green-deep);
  background: var(--green);
  box-shadow: 0 13px 28px rgba(125,194,38,.27);
}
.btn-ghost {
  color: var(--green-deep);
  background: rgba(255,255,255,.9);
  border-color: rgba(47,107,24,.18);
}
.hero-card {
  padding: 18px;
  border: 1px solid rgba(47,107,24,.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 11px;
}
.metric-grid article,
.metric-link {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  border: 1px solid rgba(47,107,24,.1);
  border-radius: 16px;
  background: var(--green-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.metric-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.metric-link-red {
  border-color: rgba(200,53,73,.22);
  background: rgba(242,82,98,.10);
}
.metric-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.metric-grid .metric-text { font-size: 19px; line-height: 1.18; letter-spacing: -.02em; }
.metric-grid span {
  display: block;
  margin-top: 7px;
  color: #4d5b49;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

/* Shared sections */
.section-pad { padding: 52px 0; }
.section-heading { margin-bottom: 22px; }
.section-heading h2 { margin-top: 7px; }
.section-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
}
.section-heading.centered {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-heading.centered p { margin-top: 10px; }
.section-heading.narrow { max-width: 760px; }
.section-heading.split {
  display: grid;
  grid-template-columns: 1fr .72fr;
  align-items: end;
  gap: 42px;
}
.section-heading.split p { padding-bottom: 4px; }

/* Value */
.value { background: var(--green-soft); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.pain-card {
  padding: 21px;
  border: 1px solid rgba(47,107,24,.11);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-soft);
}
.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 12px;
  background: rgba(125,194,38,.16);
}
.icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--green-dark);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pain-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}

/* Video */
.video-section {
  color: white;
  background: linear-gradient(135deg, var(--green-deep), #245a15);
}
.video-grid {
  display: grid;
  grid-template-columns: .34fr .66fr;
  align-items: center;
  gap: 42px;
}
.video-copy h2 { margin-top: 9px; color: white; }
.video-copy p {
  margin-top: 14px;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  text-align: justify;
}
.video-frame {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: #0c0c0c;
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}
.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0c0c0c;
}

/* Main services */
.services { background: white; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.service-card {
  position: relative;
  min-height: 148px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-soft);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
}
.service-card h3 { padding-top: 5px; }
.service-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}

/* New services */
.new-services {
  background: linear-gradient(145deg, #fff5f6, #ffe9ec);
}
.new-services-heading h2 { color: #86293a; }
.new-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.new-service-grid article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(200,53,73,.18);
  border-top: 5px solid var(--red);
  border-radius: 15px;
  background: white;
  box-shadow: 0 9px 25px rgba(200,53,73,.08);
}
.new-service-grid h3 { color: #86293a; font-size: 17px; }
.new-service-grid p {
  margin-top: 8px;
  color: #6e565a;
  font-size: 12.5px;
  text-align: left;
}

/* Evidence and cases */
.evidence { background: var(--green-soft); }
.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 58px;
}
.two-col h2 { margin-top: 9px; }
.copy-stack { display: grid; gap: 15px; }
.copy-stack p {
  color: #4d594b;
  font-size: 16px;
  line-height: 1.72;
  text-align: justify;
  text-justify: inter-word;
}
.cases-wrap { margin-top: 38px; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.case-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(47,107,24,.12);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-soft);
}
.case-highlight { background: linear-gradient(145deg, #f5faef, #eaf6df); }
.case-logo-row {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.case-logo-row img {
  width: 108px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}
.petstable-case .case-logo-row img {
  padding: 5px;
  border-radius: 10px;
  background: #000;
}
.guesos-case .case-logo-row img { width: 120px; }
.tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green-deep);
  background: rgba(125,194,38,.18);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.case-card > .tag { margin-bottom: 16px; }
.case-card p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}
dl {
  display: grid;
  gap: 9px;
  margin: 18px 0;
}
dl div { padding-top: 9px; border-top: 1px solid var(--line); }
dt { color: var(--green-deep); font-size: 11px; font-weight: 900; }
dd { margin: 2px 0 0; color: var(--muted); font-size: 12px; }
.case-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 10px 14px;
  border: 1px solid rgba(47,107,24,.22);
  border-radius: 999px;
  color: var(--green-dark);
  background: white;
  box-shadow: 0 7px 18px rgba(24,61,22,.08);
  font-size: 12px;
  font-weight: 900;
}
.case-link:hover { border-color: var(--green); }

/* Method */
.method { background: linear-gradient(180deg, white, var(--green-soft)); }
.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 13px;
}
.timeline article {
  position: relative;
  padding: 19px;
  border: 1px solid rgba(47,107,24,.12);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-soft);
}
.timeline article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -13px;
  width: 13px;
  height: 2px;
  background: var(--line);
}
.timeline span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 13px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-deep);
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}
.timeline h3 { font-size: 16px; }
.timeline p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  text-align: left;
}

/* Team */
.about { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 48px;
}
.about h2 { margin-top: 9px; }
.about-copy > p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 15px;
  text-align: justify;
}
.team-card {
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--green-deep);
  box-shadow: var(--shadow);
}
.person { padding: 13px 0; border-top: 1px solid rgba(255,255,255,.17); }
.person:first-child { border-top: 0; padding-top: 0; }
.person:last-child { padding-bottom: 0; }
.person strong { display: block; font-size: 14px; }
.person span { display: block; margin-top: 3px; color: rgba(255,255,255,.72); font-size: 12px; }
.photo-mosaic {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 190px 190px;
  gap: 10px;
}
.photo-mosaic img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.photo-mosaic img:first-child { grid-row: 1 / 3; }

/* Contact */
.contact { color: white; background: var(--green-deep); }
.contact-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 50px;
}
.contact h2 { margin-top: 9px; color: white; }
.contact p {
  margin-top: 14px;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  text-align: justify;
}
.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.07);
}
.contact-item {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 17px;
  border-left: 1px solid rgba(255,255,255,.13);
}
.contact-item:first-child { border-left: 0; }
.contact-label {
  color: rgba(255,255,255,.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.contact-item strong { color: white; font-size: 13px; overflow-wrap: anywhere; }
.contact-item-with-action { gap: 9px; }
.contact-item-with-action > a:first-child { display: grid; gap: 5px; }
.mini-whatsapp {
  display: inline-flex;
  width: fit-content;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--green);
  font-size: 9.5px;
  font-weight: 900;
}
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  background: #25d366;
  box-shadow: 0 14px 32px rgba(0,0,0,.24);
}
.floating-whatsapp svg { width: 30px; height: 30px; fill: currentColor; }
.floating-whatsapp:hover { transform: translateY(-2px); }

/* Footer */
.site-footer {
  padding: 45px 0 22px;
  color: rgba(255,255,255,.73);
  background: #10290f;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .6fr .8fr;
  gap: 48px;
}
.site-footer h2 {
  margin-bottom: 14px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer p { max-width: 520px; font-size: 13px; }
.site-footer a,
.site-footer span { display: block; margin-top: 8px; font-size: 12px; }
.site-footer a:hover { color: white; }
.footer-bottom {
  margin-top: 28px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom.single-line span { margin-top: 0; white-space: nowrap; }

/* Privacy */
.privacy-main {
  min-height: calc(100vh - var(--header-h));
  padding: 60px 0;
  background: var(--green-soft);
}
.privacy-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-soft);
}
.privacy-card h1 { margin: 10px 0 22px; font-size: clamp(36px,5vw,58px); color: var(--green-deep); }
.privacy-card h2 { margin: 30px 0 10px; font-size: 24px; }
.privacy-card p { color: var(--muted); text-align: justify; }
.privacy-card a { color: var(--green-dark); font-weight: 700; }

@media (max-width: 1160px) {
  .main-nav { gap: 10px; font-size: 11px; }
  .nav-cta { padding-inline: 12px; }
  .hero-grid { gap: 28px; }
  .brand-logo { height: 50px; max-width: 80px; }
}

@media (max-width: 980px) {
  :root { --header-h: 66px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: calc(var(--header-h) + 8px);
    right: 18px;
    left: 18px;
    display: none;
    max-height: calc(100vh - var(--header-h) - 28px);
    padding: 11px;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 11px 13px; border-radius: 10px; font-size: 13px; }
  .main-nav a:hover { background: var(--green-soft); }
  .main-nav a::after { display: none; }
  .nav-cta { margin-top: 6px; text-align: center; }
  .hero { min-height: auto; padding: 42px 0; }
  .hero-grid,
  .video-grid,
  .two-col,
  .about-grid,
  .contact-grid,
  .section-heading.split { grid-template-columns: 1fr; }
  .hero-grid { gap: 24px; }
  .hero-logo { width: 270px; }
  .pain-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-grid,
  .new-service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .case-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .timeline article:not(:last-child)::after { display: none; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-item { min-height: 92px; border-top: 1px solid rgba(255,255,255,.13); border-left: 0; }
  .contact-item:first-child { border-top: 0; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 26px, 1240px); }
  .section-pad { padding: 42px 0; }
  h2 { font-size: 31px; }
  .hero { padding: 30px 0; }
  .hero-logo { width: 230px; max-height: 178px; }
  .hero-subtitle { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .metric-grid,
  .pain-grid,
  .service-grid,
  .new-service-grid,
  .timeline { grid-template-columns: 1fr; }
  .metric-grid article,
  .metric-link { min-height: 96px; }
  .photo-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(3, 230px); }
  .photo-mosaic img:first-child { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom.single-line span { white-space: normal; }
  .privacy-card { padding: 28px 20px; }
}


/* Mobile density and card consistency — 2026.07.12 */
.case-highlight,
.petstable-case,
.guesos-case,
.case-card {
  background: #fff;
}

@media (max-width: 650px) {
  :root {
    --header-h: 64px;
    --radius-lg: 18px;
    --radius-md: 14px;
  }

  .container { width: min(100% - 24px, 1240px); }
  .section-pad { padding: 30px 0; }
  h2 { font-size: clamp(26px, 7.6vw, 31px); line-height: 1.08; }
  h3 { font-size: 16px; }

  .section-heading { margin-bottom: 16px; }
  .section-heading h2 { margin-top: 5px; }
  .section-heading.split { gap: 12px; }
  .section-heading.centered p { margin-top: 8px; }
  .section-heading p,
  .copy-stack p,
  .about-copy > p,
  .contact p,
  .video-copy p {
    text-align: left;
    text-justify: auto;
    letter-spacing: normal;
  }
  .section-heading p,
  .copy-stack p { font-size: 13.5px; line-height: 1.55; }
  .section-kicker,
  .eyebrow { font-size: 9.5px; letter-spacing: .055em; }

  .hero { padding: 20px 0 24px; }
  .hero-grid { gap: 16px; }
  .hero-logo {
    width: 190px;
    max-height: 132px;
    margin-bottom: 6px;
  }
  .hero-subtitle {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.36;
  }
  .hero-actions { gap: 8px; margin-top: 16px; }
  .btn { min-height: 42px; padding: 9px 14px; }
  .hero-card { padding: 10px; border-radius: 18px; }
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .metric-grid article,
  .metric-link {
    min-height: 92px;
    padding: 11px;
    border-radius: 13px;
  }
  .metric-grid strong { font-size: 24px; }
  .metric-grid .metric-text { font-size: 15px; line-height: 1.16; }
  .metric-grid span { margin-top: 5px; font-size: 10px; line-height: 1.27; }

  .pain-grid { grid-template-columns: 1fr; gap: 10px; }
  .pain-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    padding: 14px 15px;
  }
  .pain-card .icon {
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 11px;
  }
  .pain-card .icon svg { width: 20px; height: 20px; }
  .pain-card h3 { align-self: end; font-size: 16px; line-height: 1.2; }
  .pain-card p {
    grid-column: 2;
    margin-top: 3px;
    font-size: 11.5px;
    line-height: 1.45;
  }

  .video-grid { gap: 16px; }
  .video-copy h2 { margin-top: 5px; }
  .video-copy p { margin-top: 8px; font-size: 13px; line-height: 1.5; }
  .video-frame { border-radius: 14px; }

  .service-grid,
  .new-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .service-card {
    min-height: 126px;
    padding: 13px;
    border-radius: 13px;
  }
  .service-card::before { height: 4px; }
  .service-card h3 {
    padding-top: 3px;
    font-size: 14px;
    line-height: 1.22;
  }
  .service-card p {
    margin-top: 7px;
    font-size: 10.5px;
    line-height: 1.45;
  }
  .new-service-grid article {
    min-height: 118px;
    padding: 12px;
    border-top-width: 4px;
    border-radius: 13px;
  }
  .new-service-grid h3 { font-size: 13.5px; line-height: 1.22; }
  .new-service-grid p { margin-top: 6px; font-size: 10.3px; line-height: 1.42; }
  .new-service-grid article:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .two-col { gap: 14px; }
  .copy-stack { gap: 10px; }
  .cases-wrap { margin-top: 26px; }
  .case-grid { gap: 12px; }
  .case-card {
    padding: 16px;
    border-radius: 18px;
    background: #fff;
  }
  .case-logo-row { min-height: 50px; gap: 8px; margin-bottom: 10px; }
  .case-logo-row img { width: 92px; height: 50px; }
  .guesos-case .case-logo-row img { width: 104px; }
  .case-card h3 { font-size: 18px; line-height: 1.2; }
  .case-card p { margin-top: 8px; font-size: 11.5px; line-height: 1.5; }
  .tag { padding: 6px 8px; font-size: 8.5px; }
  dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 13px 0;
  }
  dl div { padding-top: 7px; }
  dt { font-size: 9.5px; }
  dd { font-size: 10px; line-height: 1.4; }
  .case-link { padding: 9px 12px; font-size: 10.5px; }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .timeline article { padding: 13px; border-radius: 13px; }
  .timeline article:last-child { grid-column: 1 / -1; }
  .timeline span {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
    font-size: 11px;
  }
  .timeline h3 { font-size: 14px; line-height: 1.2; }
  .timeline p { margin-top: 6px; font-size: 10.5px; line-height: 1.42; }

  .about-grid { gap: 20px; }
  .about-copy > p { margin-top: 10px; font-size: 13px; line-height: 1.55; }
  .team-card { margin-top: 16px; padding: 16px; border-radius: 16px; }
  .person { padding: 10px 0; }
  .person strong { font-size: 12.5px; }
  .person span { font-size: 10.5px; }
  .photo-mosaic {
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: 145px 145px;
    gap: 8px;
  }
  .photo-mosaic img { border-radius: 14px; }
  .photo-mosaic img:first-child { grid-row: 1 / 3; }

  .contact-grid { gap: 18px; }
  .contact p { margin-top: 9px; font-size: 13px; line-height: 1.5; }
  .contact-item { min-height: 82px; padding: 14px; }
  .contact-item strong { font-size: 12px; }

  .site-footer { padding: 32px 0 18px; }
  .footer-grid { gap: 20px; }
  .footer-bottom { margin-top: 20px; padding-top: 14px; }

  .floating-whatsapp {
    right: 14px;
    bottom: max(14px, calc(env(safe-area-inset-bottom) + 8px));
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg { width: 28px; height: 28px; }
}

@media (max-width: 360px) {
  .service-grid,
  .new-service-grid { grid-template-columns: 1fr; }
  .new-service-grid article:last-child { grid-column: auto; }
}
