@import url("../fonts/fonts.css");

:root {
  --navy: #0c3754;
  --purple: #7e3bd0;
  --teal: #29c4a9;
  --green: #009640;
  --orange: #ff9232;
  --orange-deep: #f39200;
  --blue: #2b87da;
  --cyan: #009fe3;
  --bg: #ffffff;
  --surface: #eef6fc;
  --text: #0c3754;
  --muted: #5a6f7d;
  --line: #e2e8ee;
  --max: 1140px;
  --header-h: 88px;
  --font: "Open Sans", "Roboto", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0 0 0.75rem; line-height: 1.25; color: var(--navy); font-weight: 700; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-green { background: var(--green); color: #fff !important; border-color: var(--green); }
.btn-green:hover { background: #008036; }
.btn-orange { background: var(--orange-deep); color: #fff !important; border-color: var(--orange-deep); }
.btn-orange:hover { background: #d97f00; }
.btn-outline {
  background: transparent;
  color: var(--navy) !important;
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff !important; }
.btn-purple { background: var(--purple); color: #fff !important; border-color: var(--purple); }
.btn-mini {
  min-height: 34px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  border-radius: 5px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(12, 55, 84, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.65rem 0;
}
.logo img { width: 180px; height: auto; }
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  flex: 1;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none !important;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1rem;
  justify-content: flex-end;
}
.main-nav a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a:focus-visible { color: var(--purple); text-decoration: none; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.lang-switch img {
  width: 28px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(12, 55, 84, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 11rem;
  background: #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  margin-bottom: 1rem;
  max-width: 18ch;
}
.hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 1.6rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
}
.hero-link {
  color: var(--navy) !important;
  font-weight: 700;
  text-decoration: none !important;
  font-size: 1rem;
}
.hero-link:hover { color: var(--purple) !important; }
.hero-media {
  position: relative;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  line-height: 0;
}
.hero-media video,
.hero-media .hero-mobile-still {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}
.hero-media video { display: block; }
.hero-media .hero-mobile-still { display: none; }

/* Wave between hero and benefits (Divi-style bottom divider) */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 100px;
}

/* Sections */
.section { padding: 4.25rem 0; }
.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 2rem;
}
.section-intro {
  text-align: center;
  max-width: 62ch;
  margin: -0.75rem auto 2.25rem;
  color: var(--muted);
}

.benefits {
  position: relative;
  background: linear-gradient(180deg, #eef6fc 0%, #ffffff 120px, #ffffff 100%);
  margin-top: -1px;
  overflow: visible;
}
.benefits .section-title {
  margin-bottom: 2.75rem;
}
.benefit-row {
  --focus: 0;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.05fr);
  gap: 2rem 3rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  opacity: calc(0.14 + (var(--focus) * 0.86));
  filter: saturate(calc(0.22 + (var(--focus) * 0.78)));
  transform: scale(calc(0.985 + (var(--focus) * 0.015)));
  transition: opacity 220ms linear, filter 220ms linear, transform 220ms linear;
}
.benefit-row:last-child { margin-bottom: 0; }
.benefit-row.is-focused { z-index: 1; }
.benefit-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefit-visual img {
  width: min(100%, 429px);
  height: auto;
}
.benefit-copy {
  position: relative;
  max-width: 34rem;
  overflow: visible;
}
.benefit-heading {
  position: relative;
  margin: 0 0 0.75rem;
  /* space for the oversized number sitting above the heading baseline */
  padding-top: clamp(8rem, 14vw, 12.5rem);
  overflow: visible;
}
.benefit-number {
  position: absolute;
  left: -0.05em;
  bottom: 0;
  font-size: clamp(14rem, 22vw, 21rem);
  line-height: 0.8;
  font-weight: 700;
  color: rgba(43, 135, 218, 0.12);
  user-select: none;
  pointer-events: none;
}
.benefit-heading h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--navy);
}
.benefit-copy p {
  position: relative;
  z-index: 1;
  margin: 0 0 0.85rem;
  color: #3f5c6d;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
}
.benefit-copy .punch {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0;
}
@media (prefers-reduced-motion: reduce) {
  .benefit-row {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.services {
  background: #fff;
}
.services .section-title {
  margin-bottom: 2.5rem;
}
.service {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem 3.25rem;
  align-items: center;
  margin-bottom: 4.5rem;
  padding: 2.75rem 3.25rem;
  background: #eef6fc;
  border-radius: 12px;
}
.service:last-child { margin-bottom: 0; }
.service-reverse {
  background: #fff;
}
.service-reverse .service-copy { order: 2; }
.service-reverse .service-media { order: 1; }
.service-copy {
  padding: 0.75rem 1.25rem;
}
.service-copy p {
  color: #3f5c6d;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.service-copy p:last-child { margin-bottom: 0; }
.service-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(12, 55, 84, 0.12);
}
.service-media img {
  width: 100%;
  height: auto;
  display: block;
}
.service h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.service p strong { color: var(--navy); }

.solutions { background: #fff; }
.solutions .section-title { margin-bottom: 1rem; }
.solutions .section-intro {
  max-width: 52ch;
  margin-bottom: 2.75rem;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}
.solution {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem 1.75rem;
  min-height: 180px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(12, 55, 84, 0.1);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.solution:hover,
.solution:focus-within {
  background: rgba(243, 146, 0, 0.1);
  box-shadow: 0 10px 28px rgba(12, 55, 84, 0.12);
}
.solution img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.solution span {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.35;
}
.solutions-cta { text-align: center; }

.references {
  position: relative;
  background: #fff;
  padding-bottom: 3rem;
  overflow: visible;
}
.partners-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem 1.5rem;
  align-items: center;
  margin-bottom: 2.75rem;
}
.partners-row h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--navy);
  white-space: nowrap;
}
.partners {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.partners-note {
  margin: 0;
  color: var(--muted);
  font-style: italic;
  white-space: nowrap;
  text-align: right;
}

.slider {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}
.slider-frame {
  border: 2px solid #f39200;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  min-height: 210px;
}
.slides {
  display: flex;
  transition: transform 0.45s ease;
}
.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 1.75rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  margin: 0;
  text-align: left;
  box-sizing: border-box;
}
.slide img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0;
  border: none;
  box-shadow: none;
}
.slide-body { min-width: 0; }
.slide blockquote {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #7a8b97;
  font-style: italic;
  quotes: none;
}
.slide blockquote::before,
.slide blockquote::after { content: none; }
.slide .name {
  font-weight: 800;
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}
.slide .role {
  margin: 0.1rem 0 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #f39200;
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 1;
  padding: 0;
  z-index: 2;
}
.slider-btn:hover { color: #d97f00; }
.slider-dots { display: none; }

.section-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}
.section-wave svg {
  display: block;
  width: 100%;
  height: 90px;
}

.about {
  position: relative;
  background: #fff;
  color: var(--navy);
  padding: 0;
  overflow: hidden;
}
/* Same approach as skilldriver.cz about-story: full-bleed photo + vw-scaled text */
.about-stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.about-team {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 0;
  margin-top: -100px;
}
.about-team-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px; /* wave raised 100px + solid white under it */
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}
.about-team-wave::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: #fff;
}
.about-team-wave svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  display: block;
  width: 100%;
  height: 100px;
}
.about-team-desktop {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}
.about-team-mobile { display: none; }
.about-copy {
  position: absolute;
  z-index: 4;
  left: 50%;
  /* vw tracks image height growth as width increases (CZ pattern) */
  top: clamp(5rem, 14vw, 10rem);
  transform: translateX(-50%);
  width: min(100% - 2rem, 640px);
  margin: 0;
  text-align: center;
  pointer-events: none;
}
.about-copy .section-title,
.about-copy p {
  pointer-events: auto;
}
@media (max-width: 1449px) {
  .about-copy {
    padding: 1rem 1.25rem 1.15rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(2px);
    box-shadow: 0 8px 24px rgba(12, 55, 84, 0.06);
  }
}
.about .section-title {
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.85rem;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}
.about-copy p {
  color: #3f5c6d;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.about-followup {
  position: relative;
  z-index: 4;
  background: #fff;
  margin-top: -60px;
  padding: 2rem 0 13rem;
  overflow: hidden;
}
.about-followup-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-followup p {
  margin: 0;
  color: #3f5c6d;
  font-size: 0.95rem;
  line-height: 1.7;
}
.contact-entry-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}
.contact-entry-wave svg {
  display: block;
  width: 100%;
  height: 100px;
}

.contact {
  position: relative;
  padding: 3.5rem 0 2.5rem;
  background:
    linear-gradient(180deg, #0c3754 0%, rgba(12, 55, 84, 0.96) 40%),
    url("../images/pozadi-test-paticka-3.png") center / cover no-repeat;
  color: #fff;
  margin-top: -1px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.contact-heading {
  margin-bottom: 0.75rem;
}
.contact-heading h2 {
  margin: 0;
}
.contact-email-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.contact-swallow {
  width: 72px;
  height: auto;
  flex-shrink: 0;
}
.contact h2,
.contact h3,
.contact p,
.contact a { color: #fff; }
.contact h2,
.contact h3 { font-size: 1.45rem; }
.contact .email {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal) !important;
  text-decoration: none;
}
.contact .email:hover { text-decoration: underline; }
.contact-linkedin {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.contact-linkedin span {
  color: #fff;
  font-size: 0.95rem;
}
.contact-cta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.contact-cta img {
  width: 140px;
  height: auto;
}
.site-footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.25rem;
  padding-bottom: 20px;
  font-size: 0.92rem;
}
.site-footer-bar a { color: #fff; }
.footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Legal pages */
.page-hero {
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, var(--surface), #fff);
}
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.legal-content {
  padding: 1rem 0 4rem;
  max-width: 78ch;
}
.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  color: var(--purple);
}
.legal-content ul { padding-left: 1.2rem; }
.legal-content li { margin-bottom: 0.45rem; }

/* Cookie bar */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid #fff;
  box-shadow: 0 -10px 32px rgba(12, 55, 84, 0.2);
  padding: 0.55rem 0;
}
.cookie-bar[hidden] { display: none !important; }
.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-inner p {
  margin: 0;
  flex: 1 1 280px;
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1.35;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.cookie-actions .btn {
  min-height: 30px;
  padding: 0.28rem 0.75rem;
  font-size: 0.75rem;
}
.btn-ghost {
  background: #fff;
  border-color: var(--navy);
  color: var(--navy) !important;
}

/* Focus */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .service,
  .contact-grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service {
    padding: 1.75rem 1.35rem;
    margin-bottom: 3rem;
    gap: 1.5rem;
  }
  .service-media {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .service-copy { padding: 0.25rem 0.35rem; }
  .service-reverse .service-copy,
  .service-reverse .service-media { order: initial; }
  .hero h1 { max-width: none; }

  .benefit-row {
    grid-template-columns: minmax(140px, 0.9fr) minmax(180px, 1.1fr);
    gap: 1.25rem 1.5rem;
    opacity: 1;
    filter: none;
    transform: none;
    margin-bottom: 2.75rem;
  }
  .benefit-visual img {
    width: min(50%, 215px);
  }
  .benefit-heading {
    padding-top: 4.5rem;
  }
  .benefit-number {
    font-size: 8rem;
    color: rgba(43, 135, 218, 0.14);
  }
}

@media (max-width: 820px) {
  :root { --header-h: 52px; }
  .header-inner {
    position: relative;
    min-height: var(--header-h);
    padding: 0.35rem 0;
  }
  .logo img { width: 120px; }
  .nav-toggle { display: inline-block; }
  .header-right {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1rem 1.25rem;
    box-shadow: 0 12px 24px rgba(12, 55, 84, 0.12);
    align-items: stretch;
  }
  .site-header.is-open .header-right { display: flex; }
  .header-tools,
  .main-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav a {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-media {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hero-media video { display: none; }
  .hero-media .hero-mobile-still {
    display: block;
    width: 50%;
    max-width: 50%;
  }
  .hero { padding: 2.5rem 0 8.5rem; }
  .hero-wave { height: 70px; }
  .hero-wave svg { height: 70px; }
  .partners-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.75rem;
  }
  .partners-row h2,
  .partners-note { text-align: center; white-space: normal; }
  .slider {
    grid-template-columns: auto 1fr auto;
    max-width: 100%;
  }
  .slide {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
    gap: 1rem;
  }
  .about-stage {
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  .about-team {
    order: 2;
    margin-top: 0;
  }
  .about-team-wave {
    display: none;
  }
  .about-copy {
    padding: 0;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
  }
  .about-team-desktop { display: none; }
  .about-team-mobile {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0 auto;
  }
  .about-copy {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    order: 1;
    width: min(100% - 2rem, 720px);
    margin: 1.5rem auto 0.5rem;
  }
  .about-followup {
    margin-top: -40px;
    padding-top: 1.5rem;
    padding-bottom: 11rem;
  }
  .contact-entry-wave,
  .contact-entry-wave svg {
    height: 60px;
  }
  .contact-cta { grid-template-columns: 1fr; text-align: center; }
  .contact-cta img { margin: 0 auto; }
}

@media (max-width: 560px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .solution { min-height: 0; padding: 1.75rem 1.25rem; }
  .hero { padding: 2.25rem 0 2.75rem; }
  .section { padding: 3rem 0; }
  .benefit-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .benefit-copy {
    max-width: none;
  }
}
