:root {
  --green: #15936f;
  --green-2: #0f7e64;
  --green-dark: #073f36;
  --green-ink: #052e2a;
  --orange: #ff6a21;
  --orange-soft: #ff9b63;
  --ink: #071827;
  --muted: #53635f;
  --paper: #f4efe5;
  --sand: #e9dfcd;
  --white: #ffffff;
  --surface: #f8f3ea;
  --line: rgba(7, 24, 39, 0.14);
  --max: 1180px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 40px);
  color: var(--white);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    border-radius 0.2s ease,
    transform 0.2s ease;
}

.site-header.is-scrolled {
  color: var(--green-ink);
  background: rgba(244, 239, 229, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 38px rgba(5, 46, 42, 0.08);
  border-radius: 0 0 24px 24px;
}

.brand,
.site-nav a,
.menu-button {
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}

.brand-mark {
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 5vw, 70px);
}

.site-nav a {
  opacity: 0.94;
}

.site-nav a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav-dropdown a:hover {
  text-decoration: none;
}

.menu-button {
  display: none;
  border: 0;
  color: inherit;
  background: transparent;
  padding: 0;
}

/* Desktop subnav */
.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-parent::after {
  content: "⌄";
  font-size: 0.85em;
  line-height: 1;
  transform: translateY(-0.05rem);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 11.5rem;
  max-height: calc(100dvh - 5.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: grid;
  gap: 0.15rem;
  padding: 0.65rem;
  background: #fff8ed;
  border: 1px solid rgba(7, 41, 34, 0.14);
  border-radius: 0.9rem;
  box-shadow: 0 18px 50px rgba(7, 41, 34, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.25rem);
  transition:
    opacity 140ms ease,
    transform 140ms ease,
    visibility 140ms ease;
}

.nav-dropdown a {
  display: block;
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.55rem;
  color: #072922;
  opacity: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(9, 92, 73, 0.09);
  color: #072922;
  opacity: 1;
  text-decoration: none;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(76px, 11vw, 140px) clamp(20px, 4vw, 40px);
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  max-width: none;
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 72% 38%, rgba(255, 154, 99, 0.22), rgba(255, 154, 99, 0) 34%),
    linear-gradient(135deg, var(--green) 0%, var(--green-2) 58%, #0b6c58 100%);
  color: var(--white);
  padding-top: 110px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 88, 72, 0.98) 0%, rgba(13, 111, 87, 0.88) 31%, rgba(13, 111, 87, 0.38) 58%, rgba(13, 111, 87, 0.10) 100%),
    linear-gradient(180deg, rgba(5, 46, 42, 0.12) 0%, rgba(5, 46, 42, 0) 38%, rgba(5, 46, 42, 0.2) 100%);
}

.hero::after {
  z-index: 3;
  inset: auto 0 0 0;
  height: 24%;
  background: linear-gradient(180deg, rgba(244, 239, 229, 0), var(--paper) 88%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(660px, 100%);
  margin-left: max(clamp(20px, 4vw, 40px), calc((100vw - var(--max)) / 2 + 40px));
  padding-right: 20px;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.96;
}

.hero-art picture,
.hero-art img {
  width: 100%;
  height: 100%;
}

.hero-art img {
  object-fit: cover;
  object-position: 67% center;
  transform: scale(1.06);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(45px, 8.5vw, 108px);
  line-height: 0.97;
  letter-spacing: -0.065em;
  font-weight: 450;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 5.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 460;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.15;
}

p {
  font-size: 18px;
  line-height: 1.55;
}

.lead {
  max-width: 570px;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 23px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-weight: 850;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.text-link {
  font-weight: 850;
  font-size: 14px;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(40px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}

.service-section,
.future-section,
.company-section,
.contact,
.compact-grid {
  background: var(--paper);
}

.content-list {
  display: grid;
  gap: 28px;
}

.content-list article {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.content-list article:last-child {
  border-bottom: 0;
}

.content-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.status-label {
  width: fit-content;
  margin: 0 0 10px;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(21, 147, 111, 0.24);
  border-radius: 8px;
  color: var(--green-2);
  background: rgba(21, 147, 111, 0.08);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.statement {
  color: var(--surface);
  background: var(--green-dark);
  max-width: none;
  padding-left: max(clamp(20px, 4vw, 40px), calc((100vw - var(--max)) / 2 + 40px));
  padding-right: max(clamp(20px, 4vw, 40px), calc((100vw - var(--max)) / 2 + 40px));
}

.statement h2 {
  max-width: 1050px;
}

.statement p:not(.eyebrow) {
  max-width: 850px;
  color: rgba(248, 243, 234, 0.78);
}

.compact-grid {
  display: grid;
  gap: 44px;
  border-bottom: 1px solid var(--line);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.32);
  padding: 26px;
}

.card-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.card-grid .text-link {
  display: inline-block;
  margin-top: 16px;
}

.compact {
  padding-top: 96px;
  padding-bottom: 96px;
}

.company-card {
  align-self: start;
  border-left: 3px solid var(--orange);
  padding-left: 22px;
  font-style: normal;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.company-card strong {
  color: var(--ink);
}

.pricing-section {
  background: #f4efe6;
}

.pricing-card {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.pricing-card h2 {
  max-width: 14ch;
}

.pricing-lead {
  max-width: 46rem;
  color: rgba(7, 41, 34, 0.74);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(7, 41, 34, 0.14);
  border: 1px solid rgba(7, 41, 34, 0.14);
}

.pricing-grid article {
  background: #f8f3ea;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.pricing-grid h3 {
  margin-bottom: 0.75rem;
}

.pricing-grid p {
  color: rgba(7, 41, 34, 0.72);
}

.pricing-note {
  display: grid;
  gap: 0.75rem;
  align-items: start;
  max-width: 44rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 1.25rem;
  background: rgba(9, 92, 73, 0.09);
  border: 1px solid rgba(9, 92, 73, 0.16);
}

.pricing-note p {
  margin-bottom: 0.5rem;
  color: rgba(7, 41, 34, 0.72);
}

.pricing-note .button {
  width: fit-content;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.section-lead {
  max-width: 42rem;
  color: var(--muted);
}

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

.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 0.45rem;
  border: 1px solid rgba(7, 41, 34, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 18px 60px rgba(5, 46, 42, 0.06);
  scrollbar-width: thin;
  scrollbar-color: rgba(7, 41, 34, 0.42) rgba(7, 41, 34, 0.08);
}

.comparison-table-wrap:focus-visible {
  outline: 3px solid rgba(255, 106, 33, 0.52);
  outline-offset: 4px;
}

.comparison-table-wrap::-webkit-scrollbar {
  height: 0.65rem;
}

.comparison-table-wrap::-webkit-scrollbar-track {
  background: rgba(7, 41, 34, 0.08);
  border-radius: 999px;
}

.comparison-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(7, 41, 34, 0.42);
  border-radius: 999px;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: clamp(0.75rem, 1.8vw, 1rem);
  border-bottom: 1px solid rgba(7, 41, 34, 0.12);
  border-right: 1px solid rgba(7, 41, 34, 0.10);
  text-align: left;
  vertical-align: top;
  font-size: 0.96rem;
  line-height: 1.35;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff8ed;
  color: var(--green-ink);
  font-weight: 900;
}

.comparison-table thead th:first-child {
  left: 0;
  z-index: 4;
}

.comparison-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 28%;
  background: #f8f3ea;
  color: var(--green-ink);
  font-weight: 850;
}

.comparison-table td {
  color: rgba(7, 41, 34, 0.74);
}

.role-module-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plus-media-section p:not(.eyebrow) {
  color: var(--muted);
}

.feature-image-card {
  align-self: start;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 18px 60px rgba(5, 46, 42, 0.08);
}

.feature-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.plus-statement p + p {
  margin-top: 1rem;
}

.app-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 106, 31, 0.12), transparent 34rem),
    linear-gradient(135deg, #0d6f55 0%, #0a5f4b 52%, #084b3d 100%);
  color: #fff7ed;
}

.app-card {
  min-height: 22rem;
  display: grid;
  align-items: end;
  gap: 2rem;
  border-radius: 2rem;
}

.app-card h2 {
  max-width: 12ch;
  color: inherit;
}

.app-card p {
  max-width: 38rem;
  color: rgba(255, 247, 237, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.app-card .button {
  width: fit-content;
  background: #ff6a1f;
  color: #fff;
  border-color: #ff6a1f;
}

.app-card .button:hover {
  background: #fff7ed;
  color: #084b3d;
  border-color: #fff7ed;
}

.app-card .secondary-button {
  background: transparent;
  color: #fff7ed;
  border-color: rgba(255, 247, 237, 0.74);
}

.app-card .secondary-button:hover {
  background: #fff7ed;
  color: #084b3d;
  border-color: #fff7ed;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 8vw, 110px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  max-width: 620px;
}

.whatsapp-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: currentColor;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  cursor: pointer;
  padding: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-status {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.form-status-success {
  background: rgba(11, 100, 78, 0.12);
  color: #063f33;
  border: 1px solid rgba(11, 100, 78, 0.22);
}

.form-status-error {
  background: rgba(180, 61, 28, 0.12);
  color: #6e2614;
  border: 1px solid rgba(180, 61, 28, 0.22);
}

.form-status a {
  color: inherit;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 13px 0;
  font: inherit;
  font-size: 18px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--green);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .button {
  justify-self: start;
  color: var(--ink);
  margin-top: 8px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px clamp(20px, 4vw, 40px) 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Constrained desktop / laptop density.
   Avoid global zoom. Reduce only spacing, hero height and oversized typography. */
@media (min-width: 861px) and (max-height: 860px),
  (min-width: 861px) and (max-width: 1440px) and (max-height: 900px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-header.is-scrolled {
    border-radius: 0 0 18px 18px;
  }

  .brand-mark {
    width: 1.55rem;
    height: 1.55rem;
  }

  .site-nav {
    gap: clamp(18px, 3.5vw, 42px);
  }

  .nav-dropdown {
    top: calc(100% + 0.45rem);
    max-height: calc(100dvh - 5.5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .hero {
    min-height: min(760px, 100svh);
    padding-top: 86px;
  }

  .hero-copy {
    width: min(600px, 100%);
  }

  .hero-art img {
    transform: scale(1.02);
    object-position: 70% center;
  }

  h1 {
    max-width: 720px;
    margin-bottom: 16px;
    font-size: clamp(40px, 6.2vw, 76px);
    line-height: 0.98;
  }

  h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4.6vw, 56px);
  }

  .lead {
    max-width: 540px;
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.36;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 14px;
  }

  .section {
    padding-top: clamp(56px, 7vw, 88px);
    padding-bottom: clamp(56px, 7vw, 88px);
  }

  p {
    font-size: 16px;
    line-height: 1.5;
  }

  .content-list {
    gap: 20px;
  }

  .content-list article {
    padding-bottom: 18px;
  }

  .card-grid article {
    border-radius: 20px;
    padding: 20px;
  }
}

@media (min-width: 800px) {
  .app-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}

@media (max-width: 980px) {
  .card-grid,
  .role-module-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .site-header.is-scrolled {
    left: 12px;
    right: 12px;
    width: auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .brand-mark {
    width: 1.65rem;
    height: 1.65rem;
  }
  
  .site-nav {
    position: absolute;
    right: 20px;
    top: 54px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    min-width: 13rem;
    padding: 20px;
    max-height: calc(100dvh - 4.75rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 20px;
    color: var(--green-ink);
    background: #f4efe5;
    border: 1px solid rgba(7, 24, 39, 0.12);
    box-shadow: 0 18px 50px rgba(7, 24, 39, 0.16);
  }

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

  .site-nav a {
    color: var(--green-ink);
    opacity: 1;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--green-ink);
    opacity: 1;
    text-decoration: none;
  }

  .nav-group {
    display: grid;
    gap: 0.35rem;
    position: static;
  }

  .nav-parent {
    width: fit-content;
  }

  .nav-parent::after {
    content: "";
  }

  .nav-dropdown {
    position: static;
    display: grid;
    min-width: 0;
    max-height: none;
    overflow-y: visible;
    overscroll-behavior: auto;
    gap: 0.25rem;
    padding: 0.15rem 0 0.2rem 1rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .nav-dropdown a {
    display: block;
    width: 100%;
    padding: 0.25rem 0;
    color: var(--green-ink);
    opacity: 1;
    font-size: 12px;
    line-height: 1;
    white-space: normal;
    text-decoration: none;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus-visible {
    background: transparent;
    color: var(--green-ink);
    opacity: 1;
    text-decoration: none;
  }

  .hero {
    min-height: 780px;
    align-items: start;
    padding-top: 104px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(11, 110, 88, 0.99) 0%, rgba(11, 110, 88, 0.91) 38%, rgba(11, 110, 88, 0.38) 72%, rgba(11, 110, 88, 0.08) 100%),
      linear-gradient(90deg, rgba(8, 85, 70, 0.92) 0%, rgba(8, 85, 70, 0.52) 54%, rgba(8, 85, 70, 0.12) 100%);
  }

  .hero::after {
    height: 30%;
  }

  .hero-copy {
    margin-left: 0;
    padding: 0 clamp(20px, 4vw, 40px);
  }

  .hero-art img {
    object-position: 53% 60%;
    transform: scale(1.18);
  }

  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 70px);
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 820px;
  }

  .hero-art img {
    object-position: 51% 72%;
    transform: scale(1.3);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-table {
    min-width: 680px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.65rem 0.7rem;
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button:hover {
    transform: none;
  }

  .site-header {
    transition: none;
  }
}

/* FAQ / objection carousel */
.objections-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.objections-heading {
  max-width: 820px;
  margin-bottom: clamp(28px, 6vw, 56px);
}

.objections-heading p:not(.eyebrow) {
  color: var(--muted);
}

.static-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(34px, 6vw, 64px);
}

.static-faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
  padding: clamp(20px, 3vw, 28px);
}

.static-faq-grid h3 {
  margin-bottom: 10px;
}

.static-faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.objection-carousel {
  position: relative;
  max-width: 940px;
}

.objection-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  height: clamp(440px, 46vw, 520px);
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(7, 24, 39, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 106, 33, 0.10), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.24));
  box-shadow: 0 24px 70px rgba(5, 46, 42, 0.08);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.objection-card.is-slide-next {
  animation: objectionSlideInNext 620ms ease-in-out both;
}

.objection-card.is-slide-prev {
  animation: objectionSlideInPrev 620ms ease-in-out both;
}

.objection-category {
  margin: 0;
  color: var(--green-2);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.objection-card blockquote {
  margin: 0;
  max-width: 16ch;
  color: var(--green-ink);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 480;
}

.objection-answer {
  max-width: 660px;
  margin: 0;
  color: rgba(7, 24, 39, 0.76);
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.45;
}

.objection-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.objection-control {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--green-ink);
  border-radius: 999px;
  background: transparent;
  color: var(--green-ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.objection-control:hover {
  background: var(--green-ink);
  color: var(--paper);
}

.objection-counter {
  min-width: 4.6rem;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.objections-note {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.objections-note code {
  color: var(--green-ink);
  font-weight: 800;
}

@keyframes objectionSlideInNext {
  0% {
    opacity: 0;
    transform: translateX(64px) rotate(1.2deg) scale(0.985);
  }

  62% {
    opacity: 1;
    transform: translateX(-8px) rotate(-0.18deg) scale(1.004);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0) scale(1);
  }
}

@keyframes objectionSlideInPrev {
  0% {
    opacity: 0;
    transform: translateX(-64px) rotate(-1.2deg) scale(0.985);
  }

  62% {
    opacity: 1;
    transform: translateX(8px) rotate(0.18deg) scale(1.004);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0) scale(1);
  }
}

@media (max-width: 860px) {
  .static-faq-grid {
    grid-template-columns: 1fr;
  }

  .objection-card {
    min-height: 470px;
    height: 470px;
  }

  .objection-card blockquote {
    max-width: 13ch;
    font-size: clamp(30px, 9vw, 44px);
  }

  .objection-answer {
    font-size: 17px;
  }
}

@media (max-width: 420px) {
  .objection-card {
    min-height: 520px;
    height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .objection-card.is-slide-next,
  .objection-card.is-slide-prev {
    animation: none;
  }
}
