:root {
  --green-950: #0b3028;
  --green-900: #123f34;
  --green-800: #195645;
  --green-650: #238458;
  --green-500: #2eb86d;
  --leaf: #91df55;
  --blue-950: #0b3028;
  --blue-500: #2eb86d;
  --paper: #fbfdf8;
  --surface: #f3f8f1;
  --white: #fff;
  --ink: #14231d;
  --muted: #64756c;
  --line: #dde8de;
  --shadow: 0 18px 50px rgba(11, 48, 40, 0.12);
  --shadow-lg: 0 30px 90px rgba(11, 48, 40, 0.2);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.rural-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  padding-block: 22px;
  color: var(--white);
}

.rural-header.is-scrolled {
  position: fixed;
  padding-block: 12px;
  background: rgba(11, 48, 40, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.16);
}

.nav-wrap,
.brand,
.main-nav,
.hero-actions,
.btn {
  display: flex;
  align-items: center;
}

.nav-wrap {
  justify-content: space-between;
  gap: 22px;
}

.brand {
  gap: 0;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 190px;
  height: 64px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.main-nav {
  gap: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.main-nav a,
.header-cta {
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.header-cta {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--leaf);
  font-weight: 700;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #a8ef6a;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  padding-top: 156px;
  padding-bottom: 58px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(8, 35, 29, 0.96) 0%, rgba(11, 48, 40, 0.9) 48%, rgba(20, 83, 57, 0.58) 100%),
    linear-gradient(180deg, rgba(8, 35, 29, 0.18), rgba(8, 35, 29, 0.72)),
    url("../Fundo Hero.png") center right / cover no-repeat,
    var(--green-900);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background: linear-gradient(180deg, transparent 58%, rgba(11, 48, 40, 0.8));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 48px;
  align-items: center;
}

.badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
  font-weight: 700;
}

.badge {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--leaf);
}

.badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  max-width: 780px;
  margin: 24px 0 0;
  font-size: clamp(2.65rem, 5.1vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy > p:not(.badge) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--green-950);
  background: var(--leaf);
  box-shadow: 0 14px 36px rgba(145, 223, 85, 0.22);
}

.btn-primary:hover {
  background: #a8ef6a;
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  padding: 30px 42px;
  border-radius: 24px;
  color: var(--green-950);
  background: linear-gradient(160deg, rgba(232, 255, 220, 0.94), rgba(193, 242, 158, 0.9));
  border: 1px solid rgba(145, 223, 85, 0.42);
  backdrop-filter: blur(18px);
  box-shadow:
    0 32px 64px -22px rgba(11, 48, 40, 0.38),
    0 4px 16px rgba(11, 48, 40, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.hero-stats div {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.hero-stats div:not(:first-child) {
  padding-left: 30px;
}

.hero-stats div:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: rgba(11, 48, 40, 0.16);
}

.hero-stats svg {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  padding: 7px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-650);
  stroke-width: 2.4;
}

.hero-stats strong,
.hero-stats small {
  display: block;
}

.hero-stats strong {
  color: var(--green-950);
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero-stats small {
  margin-top: 5px;
  color: rgba(11, 48, 40, 0.74);
  font-size: 1rem;
  line-height: 1.25;
}

.section {
  padding-block: 112px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 72px;
  align-items: center;
}

.intro-section {
  background: var(--paper);
}

.about-grid {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 88px;
}

.about-media {
  position: relative;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 34px -18px -18px 34px;
  z-index: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(77, 155, 215, 0.14), rgba(145, 223, 85, 0.18));
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-media .media-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(16, 42, 69, 0.34);
  background: var(--white);
  box-shadow:
    0 28px 70px -34px rgba(16, 42, 69, 0.45),
    0 10px 24px rgba(16, 42, 69, 0.08);
}

.about-media .media-frame img {
  aspect-ratio: 4 / 5;
  border-radius: 0;
  box-shadow: none;
}

.crc-card {
  position: absolute;
  right: -26px;
  bottom: -18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(16, 42, 69, 0.08);
  box-shadow:
    0 24px 50px -22px rgba(16, 42, 69, 0.42),
    0 8px 18px rgba(16, 42, 69, 0.1);
}

.crc-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-950);
}

.crc-icon svg {
  width: 22px;
  height: 22px;
}

.crc-card strong,
.crc-card small {
  display: block;
}

.crc-card strong {
  color: var(--blue-950);
  font-size: 0.98rem;
}

.crc-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-copy h2 em {
  color: var(--blue-500);
  font-style: italic;
}

.section-kicker {
  color: var(--blue-500);
}

.section-kicker.light {
  color: var(--leaf);
}

.section h2,
.bureaucracy-band h2,
.final-cta h2 {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.section article > p:not(.section-kicker),
.section-heading > p:not(.section-kicker),
.bureaucracy-band p,
.final-cta p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-heading {
  max-width: 780px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .section-kicker {
  margin-inline: auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.proof-grid div,
.services-grid article,
.reasons-grid article,
.victoria-card,
.testimonials-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(11, 48, 40, 0.07);
}

.proof-grid div {
  padding: 24px 20px;
  border-radius: 22px;
  background: #f2faee;
  border-color: #d6ead2;
  box-shadow: none;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--blue-950);
  font-size: clamp(1.65rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.proof-grid span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.services-section,
.timeline-section,
.faq-section {
  background: var(--surface);
}

.timeline-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(145, 223, 85, 0.14), transparent 26%),
    linear-gradient(180deg, var(--surface), #f9fcf7);
}

.timeline-section > .container {
  position: relative;
  z-index: 1;
}

.services-section {
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(145, 223, 85, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent 42%);
  pointer-events: none;
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

.featured-service {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 34px;
  margin-top: 48px;
  padding: 38px;
  border: 1px solid color-mix(in srgb, var(--green-650) 22%, var(--line));
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 0%, rgba(145, 223, 85, 0.3), transparent 34%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  box-shadow:
    0 30px 70px -36px rgba(11, 48, 40, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.featured-service::before {
  content: "";
  position: absolute;
  inset: auto -10% -46% 42%;
  height: 280px;
  border-radius: 999px;
  background: rgba(145, 223, 85, 0.16);
  filter: blur(2px);
  transform: rotate(-8deg);
  pointer-events: none;
}

.featured-service-copy,
.featured-service-panel {
  position: relative;
  z-index: 1;
}

.featured-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--leaf);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.featured-service h3 {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.featured-lead {
  margin: 18px 0 0;
  color: var(--leaf);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.28;
  font-weight: 800;
}

.featured-service-copy p:not(.featured-label):not(.featured-lead) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.featured-service-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.featured-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--leaf);
}

.featured-icon svg {
  width: 25px;
  height: 25px;
}

.featured-service-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.5;
}

.featured-service-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.featured-service-panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.featured-service-panel li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(145, 223, 85, 0.14);
}

.featured-service-panel .btn {
  width: fit-content;
  margin-top: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.services-grid article {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 318px;
  padding: 30px;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.services-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid transparent;
  background:
    linear-gradient(135deg, rgba(145, 223, 85, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.98));
  opacity: 0;
  transition: opacity 0.24s ease, border-color 0.24s ease;
  pointer-events: none;
}

.services-grid article:hover,
.services-grid article:focus-within {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--green-650) 45%, var(--line));
  box-shadow:
    0 28px 58px -32px rgba(11, 48, 40, 0.42),
    0 10px 26px rgba(11, 48, 40, 0.08);
}

.services-grid article:hover::before,
.services-grid article:focus-within::before {
  border-color: var(--leaf);
  opacity: 1;
}

.service-icon,
.reasons-grid span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: var(--green-950);
  background: color-mix(in srgb, var(--leaf) 48%, white);
}

.reasons-grid span {
  position: relative;
  z-index: 1;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.reasons-grid article:hover span {
  transform: scale(1.06);
}

.service-icon {
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(11, 48, 40, 0.08);
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.services-grid article:hover .service-icon,
.services-grid article:focus-within .service-icon {
  transform: scale(1.06);
  color: var(--white);
  background: var(--green-650);
}

.service-icon svg,
.reasons-grid svg {
  width: 23px;
  height: 23px;
}

.services-grid h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: var(--blue-950);
  font-size: 1.24rem;
  line-height: 1.2;
}

.services-grid p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.services-grid a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--leaf);
  font-size: 0.92rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.services-grid a::after {
  content: "->";
  font-size: 1rem;
  line-height: 1;
}

.services-grid article:hover a,
.services-grid article:focus-within a {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.services-grid a:hover {
  background: #a8ef6a;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.reasons-grid article {
  position: relative;
  overflow: hidden;
  min-height: 252px;
  padding: 30px;
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.reasons-grid article::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.18;
  transform: scaleX(0.55);
  transform-origin: right;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.reasons-grid article:nth-child(odd) {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(35, 132, 88, 0.92), rgba(11, 48, 40, 0.98)),
    var(--green-900);
  border-color: rgba(11, 48, 40, 0.2);
  box-shadow:
    0 24px 52px -30px rgba(11, 48, 40, 0.46),
    0 10px 22px rgba(11, 48, 40, 0.08);
}

.reasons-grid article:nth-child(even) {
  color: var(--blue-950);
  background: var(--white);
}

.reasons-grid article:nth-child(odd) span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.reasons-grid article:nth-child(even) span {
  color: var(--green-950);
  background: color-mix(in srgb, var(--leaf) 54%, white);
}

.reasons-grid article:nth-child(odd):hover {
  color: var(--blue-950);
  background: var(--white);
  border-color: var(--line);
}

.reasons-grid article:nth-child(even):hover {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(35, 132, 88, 0.92), rgba(11, 48, 40, 0.98)),
    var(--green-900);
  border-color: rgba(11, 48, 40, 0.2);
}

.reasons-grid article:nth-child(odd):hover span {
  color: var(--green-950);
  background: color-mix(in srgb, var(--leaf) 54%, white);
  box-shadow: none;
}

.reasons-grid article:nth-child(even):hover span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.reasons-grid article:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 58px -32px rgba(11, 48, 40, 0.44),
    0 10px 26px rgba(11, 48, 40, 0.1);
}

.reasons-grid article:hover::after {
  opacity: 0.32;
  transform: scaleX(1);
}

.reasons-grid strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 20px;
  color: currentColor;
  font-size: 1.08rem;
}

.reasons-grid p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  line-height: 1.64;
}

.reasons-grid article:nth-child(odd) p,
.reasons-grid article:nth-child(even):hover p {
  color: rgba(255, 255, 255, 0.78);
}

.reasons-grid article:nth-child(even) p,
.reasons-grid article:nth-child(odd):hover p {
  color: var(--muted);
}

.bureaucracy-band,
.final-cta {
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 48, 40, 0.98), rgba(18, 63, 52, 0.94)),
    var(--green-900);
}

.bureaucracy-band {
  position: relative;
  overflow: hidden;
  padding-block: 96px;
}

.bureaucracy-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(145, 223, 85, 0.2), transparent 28%),
    linear-gradient(110deg, rgba(145, 223, 85, 0.08), transparent 42%);
  pointer-events: none;
}

.bureaucracy-band::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background: repeating-linear-gradient(104deg, transparent 0 38px, rgba(145, 223, 85, 0.2) 39px 41px);
  pointer-events: none;
}

.band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: 72px;
  align-items: center;
}

.bureaucracy-band h2,
.final-cta h2 {
  color: var(--white);
}

.bureaucracy-band p,
.final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.band-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.band-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  font-weight: 700;
}

.band-benefits li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(145, 223, 85, 0.16);
}

.bureaucracy-band .btn,
.final-cta .btn {
  margin-top: 28px;
}

.bureaucracy-band .btn-primary {
  box-shadow:
    0 18px 42px rgba(145, 223, 85, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.band-media {
  position: relative;
  margin: 0;
}

.band-media::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 24px;
  border-radius: 30px;
  background: rgba(145, 223, 85, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.band-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28),
    0 0 0 10px rgba(255, 255, 255, 0.035);
}

.band-media figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 44px);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  font-weight: 800;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(46, 184, 109, 0.2), rgba(77, 155, 215, 0.34), rgba(46, 184, 109, 0.2));
}

.timeline li {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 28px 24px 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(11, 48, 40, 0.07);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.timeline li::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(145, 223, 85, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.timeline li::after {
  content: "Etapa " counter(list-item);
  position: absolute;
  right: 22px;
  top: 24px;
  color: rgba(16, 42, 69, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline li:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--green-650) 42%, var(--line));
  box-shadow:
    0 30px 60px -34px rgba(11, 48, 40, 0.42),
    0 12px 26px rgba(11, 48, 40, 0.08);
}

.timeline li:hover::before {
  opacity: 1;
}

.timeline li:first-child,
.timeline li:last-child {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(35, 132, 88, 0.96), rgba(11, 48, 40, 0.98)),
    var(--green-900);
  border-color: rgba(11, 48, 40, 0.22);
}

.timeline li:first-child::before,
.timeline li:last-child::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(145, 223, 85, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 52%);
}

.timeline li:first-child::after,
.timeline li:last-child::after {
  color: rgba(255, 255, 255, 0.18);
}

.timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--leaf);
  box-shadow:
    0 0 0 8px var(--surface),
    0 12px 24px rgba(11, 48, 40, 0.12);
  font-weight: 800;
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.timeline li:first-child span,
.timeline li:last-child span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.timeline li:hover span {
  transform: scale(1.06);
}

.timeline strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 24px;
  color: currentColor;
  font-size: 1.05rem;
  line-height: 1.35;
}

.timeline p {
  position: relative;
  z-index: 1;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.timeline li:first-child p,
.timeline li:last-child p {
  color: rgba(255, 255, 255, 0.76);
}

.victoria-card {
  max-width: 420px;
  padding: 18px;
}

.photo-placeholder,
.avatar {
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: color-mix(in srgb, var(--green-950) 42%, white);
  background:
    linear-gradient(135deg, rgba(145, 223, 85, 0.22), rgba(35, 132, 88, 0.1)),
    repeating-linear-gradient(45deg, transparent 0 11px, rgba(11, 48, 40, 0.08) 12px 13px);
  border: 1px dashed color-mix(in srgb, var(--green-950) 35%, white);
  font-weight: 800;
}

.photo-placeholder {
  aspect-ratio: 16 / 10;
}

.victoria-card h3,
.testimonials-grid h3 {
  margin: 18px 0 0;
  color: var(--blue-950);
}

.victoria-card p,
.testimonials-grid p {
  margin: 6px 0 0;
  color: var(--muted);
}

.numbers-section {
  position: relative;
  overflow: hidden;
  padding-block: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 50%, rgba(145, 223, 85, 0.18), transparent 26%),
    linear-gradient(100deg, var(--green-950), var(--green-800) 48%, var(--green-650));
}

.numbers-section::before,
.numbers-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(16vw, 170px);
  pointer-events: none;
}

.numbers-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--green-950), transparent);
}

.numbers-section::after {
  right: 0;
  background: linear-gradient(270deg, var(--green-650), transparent);
}

.numbers-shell {
  width: 100%;
  overflow: hidden;
}

.numbers-grid {
  display: flex;
  width: max-content;
  gap: 52px;
  padding-inline: max(20px, calc((100vw - 1120px) / 2));
  animation: numbers-marquee 28s linear infinite;
}

.numbers-grid:hover {
  animation-play-state: paused;
}

.numbers-grid div {
  position: relative;
  display: grid;
  grid-template-columns: auto;
  align-items: center;
  gap: 6px;
  min-width: auto;
  padding: 0;
}

.numbers-grid strong,
.numbers-grid span {
  display: block;
}

.numbers-grid strong {
  color: var(--white);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.numbers-grid span {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

@keyframes numbers-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.testimonials-grid article {
  padding: 24px;
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 999px;
}

.stars {
  margin-top: 14px;
  color: #d59b12;
  letter-spacing: 0.08em;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(141, 226, 77, 0.16), transparent 32%),
    linear-gradient(180deg, #f5faf2 0%, #eef6ec 100%);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(135deg, transparent 0 16px, rgba(11, 48, 40, 0.035) 17px 18px);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.faq-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 108px;
}

.faq-intro > p:not(.section-kicker) {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.faq-support {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.faq-support span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid color-mix(in srgb, var(--green-950) 12%, white);
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(11, 48, 40, 0.06);
}

.faq-support span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(141, 226, 77, 0.18);
}

.faq-grid .btn {
  margin-top: 28px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  position: relative;
  overflow: hidden;
  padding: 0;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-list details:hover,
.faq-list details:focus-within {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--leaf) 42%, var(--line));
  box-shadow: 0 18px 44px rgba(11, 48, 40, 0.12);
}

.faq-list details[open] {
  border-color: color-mix(in srgb, var(--green-950) 36%, var(--line));
  background: linear-gradient(180deg, var(--white), #f9fcf7);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 18px 66px 18px 22px;
  color: var(--blue-950);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--leaf);
  box-shadow: 0 0 0 7px rgba(141, 226, 77, 0.18);
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: var(--green-950);
  background: #eef8e8;
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
  color: var(--white);
  background: var(--green-950);
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(141, 226, 77, 0.65);
  outline-offset: -4px;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px 46px;
  color: var(--muted);
  line-height: 1.68;
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 96px;
  background:
    linear-gradient(90deg, rgba(7, 35, 29, 0.94) 0%, rgba(7, 35, 29, 0.84) 44%, rgba(7, 35, 29, 0.46) 76%, rgba(7, 35, 29, 0.32) 100%),
    linear-gradient(0deg, rgba(7, 35, 29, 0.35), rgba(7, 35, 29, 0.35)),
    url("../07.webp") center right / cover no-repeat;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 28% 22%, rgba(145, 223, 85, 0.2), transparent 28%),
    repeating-linear-gradient(110deg, transparent 0 36px, rgba(255, 255, 255, 0.045) 37px 38px);
  pointer-events: none;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, rgba(7, 35, 29, 0.72), transparent);
  pointer-events: none;
}

.final-card {
  width: min(100% - 40px, 760px);
  margin-inline: auto;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(7, 35, 29, 0.42);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  text-align: center;
}

.final-card h2 {
  margin-inline: auto;
  max-width: 640px;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.08;
}

.final-card > p {
  margin-inline: auto;
  max-width: 560px;
  font-size: 0.98rem;
  line-height: 1.62;
}

.final-cta .btn-primary {
  min-width: 0;
  width: auto;
  justify-content: center;
  margin-inline: auto;
  padding-inline: 34px;
  min-height: 52px;
  box-shadow:
    0 14px 36px rgba(145, 223, 85, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(145, 223, 85, 0.16), transparent 30%),
    linear-gradient(180deg, #f7fbf4, var(--surface));
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(11, 48, 40, 0.035) 19px 20px);
  mask-image: linear-gradient(180deg, #000, transparent 72%);
}

.contact-section > .container {
  position: relative;
  z-index: 1;
}

.contact-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: 34px;
  align-items: stretch;
}

.contact-info {
  display: grid;
  gap: 22px;
}

.contact-card,
.contact-note,
.contact-map {
  border: 1px solid color-mix(in srgb, var(--green-950) 10%, white);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(11, 48, 40, 0.075);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: 132px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 247, 0.92));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-card > div {
  min-width: 0;
}

.contact-card:hover,
.contact-card:focus-within {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--leaf) 46%, var(--green-950));
  box-shadow: 0 24px 54px rgba(11, 48, 40, 0.13);
}

.contact-card-wide {
  min-height: 172px;
}

.contact-card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-icon,
.contact-note-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
  color: var(--green-950);
  background: linear-gradient(135deg, #eef9e9, #f8fff5);
  border: 1px solid color-mix(in srgb, var(--green-950) 10%, white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.contact-icon svg,
.contact-note-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h3,
.contact-map h3 {
  margin: 0 0 9px;
  color: var(--green-950);
  letter-spacing: 0;
  font-size: 1rem;
}

.contact-card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.contact-card a {
  color: var(--green-800);
  font-weight: 700;
}

.contact-card a:hover {
  color: var(--green-500);
}

.contact-detail {
  max-width: 44ch;
}

.contact-primary {
  display: inline-block;
  color: var(--green-950);
  font-size: clamp(1.02rem, 1vw, 1.13rem);
  line-height: 1.25;
}

.contact-email {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.contact-meta {
  color: color-mix(in srgb, var(--muted) 84%, var(--green-950));
  font-size: 0.94rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-card .contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--green-950) 12%, white);
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.contact-card .contact-action svg {
  width: 15px;
  height: 15px;
}

.contact-card .contact-action:hover {
  transform: translateY(-1px);
  border-color: transparent;
  color: var(--white);
  background: var(--green-800);
}

.contact-card .contact-action-strong {
  color: var(--white);
  border-color: transparent;
  background: var(--green-800);
}

.contact-card .contact-action-strong:hover {
  background: var(--green-950);
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}

.contact-note-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-note p {
  margin: 0;
  display: grid;
  gap: 3px;
}

.contact-note strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}

.contact-note span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.contact-map {
  overflow: hidden;
  min-height: 456px;
  background: rgba(255, 255, 255, 0.88);
}

.contact-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--green-950) 10%, white);
  background: rgba(255, 255, 255, 0.94);
}

.contact-map-head > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-map-head h3 {
  margin: 0;
}

.contact-map-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid color-mix(in srgb, var(--green-950) 14%, white);
  border-radius: 999px;
  color: var(--green-950);
  background: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.contact-map-head a:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: var(--green-800);
}

.contact-map-head a svg {
  width: 17px;
  height: 17px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: calc(100% - 89px);
  min-height: 366px;
  border: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr 1fr;
  gap: 44px;
  padding-block: 64px;
}

.footer-brand {
  color: var(--white);
}

.footer-grid p {
  margin: 16px 0 0;
  line-height: 1.65;
}

.footer-grid h4 {
  margin: 0 0 18px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin-top: 11px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 18px;
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .numbers-grid {
    transform: none !important;
  }
}

@media (hover: none) {
  .services-grid a {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

@media (max-width: 1060px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .band-grid,
  .contact-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-service {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }

  .about-grid {
    gap: 54px;
  }

  .about-media {
    max-width: 620px;
  }

  .band-grid {
    gap: 48px;
  }

  .band-media {
    max-width: 680px;
  }

  .final-card {
    margin-inline: auto;
  }

  .contact-grid {
    gap: 28px;
  }

  .contact-map {
    min-height: 420px;
  }

  .faq-grid {
    gap: 38px;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro > p:not(.section-kicker) {
    max-width: 680px;
  }

  .faq-support {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 6px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    color: var(--green-950);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 14px;
  }

  .hero-stats,
  .proof-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    gap: 22px 18px;
    padding: 26px;
  }

  .hero-stats div:not(:first-child) {
    padding-left: 0;
  }

  .hero-stats div:not(:first-child)::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 150px;
    height: 52px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 42px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.2rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-stats,
  .proof-grid,
  .services-grid,
  .reasons-grid,
  .testimonials-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .numbers-section {
    padding-block: 22px;
  }

  .numbers-section::before,
  .numbers-section::after {
    width: 42px;
  }

  .numbers-grid {
    gap: 32px;
    padding-inline: 14px;
    animation-duration: 32s;
  }

  .numbers-grid div {
    gap: 6px;
  }

  .timeline {
    gap: 14px;
  }

  .timeline li {
    min-height: auto;
    padding: 24px;
  }

  .timeline span {
    width: 48px;
    height: 48px;
    box-shadow:
      0 0 0 6px var(--surface),
      0 10px 20px rgba(11, 48, 40, 0.1);
  }

  .hero-stats {
    margin-top: 40px;
    padding: 24px;
  }

  .hero-stats strong {
    font-size: 1.28rem;
  }

  .hero-stats small {
    font-size: 0.95rem;
  }

  .about-grid {
    gap: 38px;
  }

  .about-media::before {
    inset: 18px -8px -10px 18px;
    border-radius: 22px;
  }

  .about-media .media-frame,
  .about-media .media-frame img {
    border-radius: 22px;
  }

  .crc-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    min-width: 0;
    margin: -28px auto 0;
    padding: 16px 18px;
  }

  .proof-grid div {
    padding: 22px 20px;
  }

  .band-benefits {
    gap: 8px;
  }

  .band-benefits li {
    width: 100%;
    justify-content: flex-start;
  }

  .band-media::before {
    inset: 14px -8px -10px 14px;
    border-radius: 22px;
  }

  .band-media img {
    border-radius: 22px;
    aspect-ratio: 4 / 3;
  }

  .band-media figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    border-radius: 16px;
  }

  .section,
  .bureaucracy-band,
  .final-cta {
    padding-block: 74px;
  }

  .section h2,
  .bureaucracy-band h2,
  .final-cta h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .services-grid article {
    min-height: auto;
    padding: 26px;
  }

  .featured-service {
    margin-top: 36px;
    padding: 26px;
    border-radius: 22px;
  }

  .featured-service-panel {
    padding: 22px;
    border-radius: 20px;
  }

  .featured-service-panel .btn {
    width: 100%;
  }

  .services-grid a {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .final-cta {
    padding-block: 70px;
    background:
      linear-gradient(180deg, rgba(7, 35, 29, 0.92), rgba(7, 35, 29, 0.82)),
      linear-gradient(0deg, rgba(7, 35, 29, 0.24), rgba(7, 35, 29, 0.24)),
      url("../07.webp") center / cover no-repeat;
  }

  .final-card {
    width: min(100% - 28px, 680px);
    padding: 24px 20px;
    border-radius: 22px;
  }

  .final-card > p {
    font-size: 0.94rem;
  }

  .final-cta .btn-primary {
    width: fit-content;
    max-width: 100%;
    min-height: 48px;
    padding-inline: 24px;
    font-size: 0.92rem;
  }

  .contact-heading {
    margin-bottom: 32px;
  }

  .contact-card-row {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-note {
    padding: 22px;
    border-radius: 20px;
  }

  .contact-card {
    min-height: auto;
  }

  .contact-map {
    border-radius: 20px;
  }

  .contact-map-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .contact-map-head a {
    width: 100%;
  }

  .contact-map iframe {
    min-height: 320px;
  }

  .faq-support {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    min-height: 58px;
    padding: 17px 58px 17px 18px;
    font-size: 0.96rem;
  }

  .faq-list summary::before {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 6px rgba(141, 226, 77, 0.16);
  }

  .faq-list summary::after {
    right: 14px;
    width: 32px;
    height: 32px;
  }

  .faq-list p {
    padding: 0 18px 20px 34px;
  }
}
