
:root {
  --green: #18d312;
  --green-strong: #0e9a0a;
  --green-dark: #0b5d08;
  --green-soft: #ecfaeb;
  --green-soft-2: #d8f5d5;
  --black: #101010;
  --white: #ffffff;
  --text: #1b1f1b;
  --muted: #556155;
  --line: #d7ead2;
  --line-strong: #bfdab8;
  --shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.06);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --section-gap: 72px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbf8 0%, #ffffff 28%, #f7faf7 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  z-index: 9999;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
}
.topbar {
  background: linear-gradient(90deg, var(--black) 0%, #1f251f 100%);
  color: var(--white);
  font-size: .95rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}
.topbar-summary { font-weight: 700; }
.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar a {
  color: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.site-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #22dd1d 0%, #17c414 54%, #eefbec 100%);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(247,250,247,1) 100%);
}

.header-rio-banner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
}
.header-banner-main {
  flex: 1 1 auto;
  max-width: 860px;
}
.header-banner-main img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  background: var(--green);
}
.header-side-logo {
  flex: 0 0 clamp(84px, 11vw, 148px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-side-logo-image {
  display: block;
  width: 100%;
  max-width: 148px;
  height: auto;
  border-radius: 24px;
  padding: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
}
.header-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-items: center;
  align-items: center;
  padding: 10px 0 24px;
  text-align: center;
}
.branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.branding p { margin: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 12px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(255,255,255,.32);
  backdrop-filter: blur(6px);
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: center;
}
.branding .title {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  font-weight: 800;
  color: #0c260b;
  text-align: center;
}
.branding .subtitle {
  max-width: 720px;
  margin-top: 12px;
  font-size: 1.1rem;
  line-height: 1.45;
  color: #11340f;
  text-align: center;
  text-wrap: balance;
}
.header-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  max-width: 860px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(11,93,8,.12);
  color: #11340f;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}
.breadcrumbs {
  background: #f3f8f2;
  border-bottom: 1px solid var(--line);
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  font-size: .95rem;
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--green-dark);
  font-weight: 700;
}
.breadcrumbs [aria-current="page"] {
  color: var(--text);
  font-weight: 800;
}
.contact-note {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #f8fcf7;
}
.contact-note p { margin: 0; }

.main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.nav-brand-mobile {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
}
.nav-brand-mobile img {
  width: 42px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 700;
  color: var(--text);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line-strong);
}
.main-nav a.active,
.main-nav a.cta-link,
.button,
.button-outline:hover {
  background: linear-gradient(180deg, var(--green-strong) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-color: var(--green-dark);
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(14,154,10,.22);
}
.nav-toggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
}
main { display: block; }
.section,
.hero,
.page-header { padding: var(--section-gap) 0; }
.hero { padding-top: 44px; }
.hero-grid,
.split-grid,
.contact-grid,
.footer-grid,
.grid-2,
.grid-3 {
  display: grid;
  gap: 22px;
}
.hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); align-items: stretch; }
.grid-2,
.contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.section-header,
.page-header-copy { max-width: 840px; }
.section-header { margin-bottom: 22px; }
.section-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  font-size: .92rem;
}
.section-header h2,
.page-header h1,
.hero-copy h1 {
  margin: 0 0 12px;
  line-height: 1.06;
  letter-spacing: -.02em;
}
.hero-copy h1,
.page-header h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); }
.section-header p,
.page-header .lead,
.hero-copy p,
.info-box p,
.notice p,
.card p { color: var(--muted); }
.page-header {
  padding-top: 40px;
  padding-bottom: 28px;
}
.page-header-shell,
.hero-copy,
.hero-visual,
.card,
.info-box,
.notice,
.gallery-item,
.product-item,
.map-card,
.cta-card,
.metric-card,
.quick-card,
.timeline-step,
.local-strip,
.highlight-strip {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.page-header-shell,
.hero-copy,
.card,
.info-box,
.notice,
.cta-card,
.metric-card,
.quick-card,
.timeline-step,
.local-strip { padding: 28px; }
.hero-copy {
  position: relative;
  overflow: hidden;
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,211,18,.12) 0%, rgba(24,211,18,0) 70%);
  transform: translate(-25%, -25%);
}
.hero-text { position: relative; z-index: 1; }
.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.button,
.button-outline,
.button-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--green-dark);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover,
.button-outline:hover,
.button-soft:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.button-outline {
  background: transparent;
  color: var(--green-dark);
}
.button-soft {
  background: var(--green-soft);
  color: var(--green-dark);
  border-color: var(--line-strong);
}
.hero-list,
.checklist,
.inline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.hero-list li,
.checklist li,
.inline-list li {
  position: relative;
  padding-left: 28px;
}
.hero-list li::before,
.checklist li::before,
.inline-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-dark);
  font-weight: 900;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.metric-card {
  padding: 18px 16px;
  text-align: center;
}
.metric-card strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--green-dark);
}
.metric-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .95rem;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: grid;
  gap: 10px;
}
.overlay-card {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(16,16,16,.75);
  backdrop-filter: blur(8px);
  color: var(--white);
}
.overlay-card strong { display: block; }
.overlay-card span { color: rgba(255,255,255,.84); font-size: .95rem; }
.quick-grid,
.cta-grid,
.metrics-grid,
.timeline-grid,
.gallery-preview,
.gallery-grid,
.product-grid {
  display: grid;
  gap: 16px;
}
.quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cta-grid,
.metrics-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.timeline-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-preview,
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.quick-card,
.cta-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick-card h3,
.cta-card h3,
.card h3,
.info-box h3,
.notice h3,
.timeline-step h3 {
  margin: 0;
  line-height: 1.2;
  font-size: 1.22rem;
}
.card p,
.info-box p,
.notice p,
.quick-card p,
.cta-card p,
.timeline-step p { margin: 0; }
.quick-link {
  margin-top: auto;
  font-weight: 800;
}
.card,
.info-box,
.notice,
.quick-card,
.cta-card,
.gallery-item,
.product-item,
.timeline-step,
.metric-card,
.local-strip {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover,
.info-box:hover,
.notice:hover,
.quick-card:hover,
.cta-card:hover,
.gallery-item:hover,
.product-item:hover,
.timeline-step:hover,
.metric-card:hover,
.local-strip:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  border-color: var(--line-strong);
}
.gallery-item,
.product-item,
.map-card {
  overflow: hidden;
}
.gallery-item img,
.product-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.gallery-item figcaption,
.product-item figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: .95rem;
}

.gallery-page .gallery-grid-cars {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.gallery-page .gallery-grid-cars .gallery-item img {
  transform: scale(1.15);
  transform-origin: center;
}
.gallery-page .gallery-item figcaption {
  text-align: center;
}
@media (max-width: 1100px) {
  .gallery-page .gallery-grid-cars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .gallery-page .gallery-grid-cars {
    grid-template-columns: 1fr;
  }
}
.local-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.local-strip h3,
.local-strip p { margin: 0; }
.local-strip p { color: var(--muted); }
.contact-grid { align-items: stretch; }
.contact-card .contact-list,
.footer-list {
  display: grid;
  gap: 12px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--green-soft);
  border: 1px solid var(--line);
}
.contact-item span {
  color: var(--muted);
  font-size: .92rem;
}
.contact-item strong,
.contact-item a { word-break: break-word; }
.map-card iframe {
  width: 100%;
  min-height: 100%;
  border: 0;
  display: block;
  min-height: 420px;
}
.timeline-step {
  position: relative;
  padding-top: 26px;
}
.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  top: -14px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(14,154,10,.24);
}
.highlight-strip {
  display: grid;
  gap: 12px;
  padding: 20px 22px;
  margin-top: 20px;
  background: linear-gradient(180deg, #f1fdf0 0%, #ebfaea 100%);
}
.highlight-strip p { margin: 0; }
.highlight-strip strong { color: var(--green-dark); }
.notice-media img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.loyalty-card {
  align-items: stretch;
}
.loyalty-card-figure {
  margin: 4px 0 0;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7fff6 0%, #edf9eb 100%);
  border: 1px solid var(--line);
}
.loyalty-card-figure picture {
  display: block;
}
.loyalty-card-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  background: #1b1b1b;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}
.footer {
  margin-top: 48px;
  padding: 34px 0 110px;
  background: linear-gradient(180deg, #111 0%, #181b18 100%);
  color: var(--white);
}
.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: start;
}
.footer a { color: var(--white); }
.footer p { margin: 0 0 12px; }
.footer-note {
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  font-size: .93rem;
}
.mobile-cta-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 70;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(16,16,16,.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
}
.mobile-cta-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  font-weight: 800;
  font-size: .94rem;
}
.mobile-cta-bar a.primary {
  background: var(--green-strong);
  color: var(--white);
}
.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;
}
@media (max-width: 1100px) {
  :root { --section-gap: 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .quick-grid,
  .cta-grid,
  .metrics-grid,
  .timeline-grid,
  .local-strip,
  .grid-3,
  .grid-2,
  .contact-grid,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  body { padding-bottom: 92px; }
  .topbar .container { flex-direction: column; align-items: stretch; }
  .topbar-links { justify-content: center; }
  .header-rio-banner {
    padding-top: 14px;
    gap: 10px;
  }
  .header-banner-main img {
    border-radius: 18px;
  }
  .header-side-logo {
    flex-basis: clamp(58px, 16vw, 96px);
  }
  .header-side-logo-image {
    border-radius: 18px;
    padding: 6px;
  }
  .header-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .header-badges { justify-content: center; }
  .nav-brand-mobile { display: inline-flex; }
  .nav-toggle { display: inline-flex; }
  .nav-wrap { min-height: 68px; }
  .nav-links {
    position: fixed;
    inset: 72px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(0,0,0,.14);
  }
  .nav-links.open { display: flex; }
  .main-nav a { width: 100%; justify-content: center; }
  .hero-list,
  .hero-metrics,
  .quick-grid,
  .cta-grid,
  .metrics-grid,
  .timeline-grid,
  .local-strip,
  .grid-3,
  .grid-2,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-cta-bar { display: grid; }
}
@media (max-width: 560px) {
  :root { --section-gap: 48px; }
  .container { width: min(var(--container), calc(100% - 24px)); }
  .hero-copy,
  .page-header-shell,
  .card,
  .info-box,
  .notice,
  .cta-card,
  .metric-card,
  .quick-card,
  .timeline-step,
  .local-strip { padding: 22px; }
  .branding .subtitle,
  .section-header p,
  .page-header .lead,
  .hero-copy p { font-size: 1rem; }
  .hero-actions { gap: 10px; }
  .button,
  .button-outline,
  .button-soft { width: 100%; }
  .hero-overlay { inset: auto 12px 12px 12px; }
  .overlay-card { padding: 12px 14px; }
  .mobile-cta-bar a { font-size: .9rem; }
  .breadcrumbs .container { flex-wrap: wrap; min-height: 44px; padding: 10px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .eyebrow { width: 100%; max-width: 360px; }
  .header-rio-banner {
    width: min(100%, calc(100% - 20px));
    gap: 8px;
  }
  .header-side-logo {
    flex-basis: 56px;
  }
  .header-side-logo-image {
    max-width: 56px;
    padding: 4px;
    border-radius: 14px;
  }
}


.section-soft {
  background: linear-gradient(180deg, #f3fbf1 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-overview-grid { align-items: stretch; }
.featured-visual {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.featured-visual picture {
  display: block;
  width: 100%;
}
.featured-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
}
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-card-grid.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-detail-card, .faq-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.service-detail-card h3, .faq-card h3 { margin-top: 0; }
.service-tag {
  color: var(--muted);
  font-weight: 700;
}
.checklist.compact li { margin-bottom: 8px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-note {
  margin-top: 16px;
  padding: 16px 18px;
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}
@media (max-width: 980px) {
  .service-card-grid,
  .service-card-grid.two-cols,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
