@font-face {
  font-family: "Degular";
  src: url("assets/fonts/DegularText-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Degular";
  src: url("assets/fonts/DegularText-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Degular";
  src: url("assets/fonts/DegularText-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Degular";
  src: url("assets/fonts/DegularText-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Degular";
  src: url("assets/fonts/DegularText-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Degular";
  src: url("assets/fonts/DegularText-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Degular";
  src: url("assets/fonts/DegularText-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #17ab69;
  --primary-dark: #128a54;
  --secondary: #094746;
  --ink: #1a1818;
  --body: #292929;
  --muted: #8a8787;
  --border: #dcdcdc;
  --bg: #f5f5f5;
  --white: #ffffff;
  --sand: #eef6f1;
  --soon: #ef6205;
  --header-h: 72px;
  --radius: 16px;
  --radius-lg: 40px;
  --shadow: 0 20px 50px rgba(9, 71, 70, 0.12);
  --font: "Degular", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: min(1280px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: var(--secondary);
  color: var(--white);
  border-radius: 999px;
}

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

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.85);
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 500;
}

h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
}

h1 strong {
  font-weight: 700;
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.75rem);
  font-weight: 500;
  color: var(--secondary);
}

h2 strong {
  font-weight: 700;
  color: var(--secondary);
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.section-center {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.section-center h2 {
  margin-top: 0.35rem;
}

.section-center-light h2 {
  color: var(--white);
}

.section-sub {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
    color 0.2s var(--ease), transform 0.2s var(--ease);
}

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

.btn:focus-visible,
.nav-links a:focus-visible,
.nav-login:focus-visible,
.socials a:focus-visible,
.footer-bottom a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.btn-sm {
  min-height: 40px;
  padding-inline: 1rem;
  font-size: 0.9rem;
}

.btn-nav {
  min-height: 40px;
  padding: 0.45rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: #000;
}

.btn-white {
  background: var(--white);
  color: var(--ink);
}

.btn-white:hover {
  background: #f2f2f2;
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.section-sub-light {
  color: rgba(255, 255, 255, 0.65);
}

.btn-link {
  padding: 0;
  min-height: auto;
  color: var(--secondary);
  font-weight: 700;
}

.btn-link:hover {
  color: var(--primary);
  transform: none;
}

.icon-circle {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
}

.icon-circle-dark {
  background: var(--ink);
  color: var(--white);
}

.icon-circle-on-dark {
  background: rgba(255, 255, 255, 0.18);
}

.icon-circle-on-primary {
  background: rgba(255, 255, 255, 0.22);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: #ffffff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    transform 0.3s var(--ease);
  will-change: transform;
}

.navbar.is-scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 18px rgba(26, 24, 24, 0.04);
}

.navbar.is-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.navbar.nav-open {
  transform: none;
  pointer-events: auto;
}

.navbar-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  width: 118px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-links > a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #6b6b6b;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.nav-links > a:hover {
  color: var(--secondary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-actions-mobile {
  display: none;
}

.nav-login {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.nav-login:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  position: relative;
  justify-self: end;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle-bar::before {
  position: absolute;
  transform: translateY(-6px);
}

.nav-toggle-bar::after {
  position: absolute;
  transform: translateY(6px);
}

.navbar.nav-open .nav-toggle-bar {
  background: transparent;
}

.navbar.nav-open .nav-toggle-bar::before {
  transform: rotate(45deg);
}

.navbar.nav-open .nav-toggle-bar::after {
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  padding: 0 0 1rem;
}

.hero-panel {
  position: relative;
  min-height: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  align-items: start;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(12, 18, 14, 0.78) 0%,
      rgba(12, 18, 14, 0.48) 42%,
      rgba(12, 18, 14, 0.22) 100%
    ),
    linear-gradient(180deg, rgba(12, 18, 14, 0.12) 0%, rgba(12, 18, 14, 0.38) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 38.5rem;
  padding: 5rem 3.5rem 3rem;
}

.hero-copy h1 {
  margin: 0 0 1.5rem;
  font-family: "Degular", system-ui, sans-serif;
  font-size: 64px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: 0;
  max-width: 14em;
}

.hero-copy h1 strong {
  font-weight: 600;
}

.hero-copy .btn {
  min-height: 48px;
  padding: 0.65rem 1.15rem 0.65rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 0.55rem;
  width: auto;
}

.hero-copy .icon-circle {
  width: 24px;
  height: 24px;
  font-size: 0.72rem;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-family: "Degular", system-ui, sans-serif;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  max-width: 34rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.hero-video {
  position: absolute;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: 411px;
  max-width: calc(100% - 3.5rem);
  height: 124px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(42, 44, 33, 0.55);
  color: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
  box-sizing: border-box;
}

.hero-video:hover {
  transform: translateY(-2px);
  background: rgba(42, 44, 33, 0.7);
}

.hero-video-thumb {
  flex: 0 0 80px;
  width: 80px;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

.hero-video-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  flex: 1 1 auto;
  width: 283px;
  max-width: 283px;
  min-width: 0;
  height: 92px;
  min-height: 92px;
  max-height: 92px;
}

.hero-video-body strong {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero-video-body > span:not(.hero-video-play) {
  margin: 0;
  flex: 1 1 auto;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  padding-top: 4px;
}

.hero-video-play {
  margin-top: 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  background: transparent;
  color: var(--white);
  padding-left: 1px;
}

.hero-video-play svg {
  width: 9px;
  height: 9px;
}

/* About */
.about {
  position: relative;
  padding: 5.5rem 0 4rem;
}

.about > .shell > .eyebrow {
  margin-bottom: 1.75rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem 4rem;
  align-items: start;
  max-width: 980px;
}

.about-layout h2 {
  max-width: 14ch;
  margin: 0;
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.about-copy .btn {
  margin-top: 0.75rem;
}

/* Partners carousel */
.partners {
  overflow: hidden;
  padding: 1.75rem 0 3rem;
  border-top: 1px solid #eee;
  background: var(--white);
}

.partners-viewport {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: partners-marquee 36s linear infinite;
  padding-block: 0.25rem;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  margin: 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  padding: 0.55rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 1;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.partner-logo:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Product */
.product {
  padding: 4.5rem 0 5.5rem;
  background: #f7f7f7;
}

.product .section-center {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.product .section-center h2 {
  color: var(--secondary);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.25;
}

.product .section-center h2 strong {
  color: var(--secondary);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.module-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 1.85rem 1.75rem 2rem;
  min-height: 220px;
  box-shadow: 0 8px 28px rgba(16, 24, 40, 0.04);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.module-card:hover {
  border-color: rgba(23, 171, 105, 0.28);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
  transform: translateY(-2px);
}

.module-card h3 {
  margin: 0 0 0.65rem;
  color: var(--secondary);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
}

.module-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 1.35rem;
  background: #e8f7ef;
  color: var(--primary);
  display: grid;
  place-items: center;
}

.module-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.module-card p:last-child {
  margin: 0;
  color: #8a8787;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Differentials */
.differentials {
  padding: 5rem 0;
}

.differentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.diff-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

.diff-card h2 {
  margin: 0.35rem 0 1rem;
  max-width: 22ch;
}

.diff-card > p {
  margin: 0 0 1.75rem;
  color: var(--muted);
}

.diff-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.diff-list-grid {
  grid-template-columns: 1fr 1fr;
  column-gap: 1.75rem;
  row-gap: 0.95rem;
}

.diff-list-grid li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  padding: 0;
  border: none;
  color: var(--secondary);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.diff-list-grid li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.diff-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.diff-visual {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.diff-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  position: absolute;
  inset: 0;
}

/* Process slider */
.process {
  padding: 0 0 5rem;
}

.process-slider {
  position: relative;
  height: 520px;
  border-radius: 40px;
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow);
}

.process-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.process-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.28) 42%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.35) 0%,
      transparent 55%
    );
}

.process-layout {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "top top"
    ". slides"
    "footer footer";
  padding: 3rem 3.25rem 2.5rem;
  gap: 1.5rem;
}

.process-top {
  grid-area: top;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-self: start;
}

.process-top .eyebrow-light {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.08em;
}

.process-counter {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 5.25rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
}

.process-slides {
  grid-area: slides;
  align-self: center;
  justify-self: end;
  position: relative;
  max-width: 26rem;
  width: 100%;
  height: 11.5rem;
}

.process-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}

.process-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.process-slide h2 {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
}

.process-slide p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
}

.process-footer {
  grid-area: footer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
}

.process-progress {
  flex: 1;
  max-width: 180px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  overflow: visible;
  position: relative;
}

.process-progress span {
  display: block;
  height: 4px;
  margin-top: -1px;
  width: 16.666%;
  border-radius: 999px;
  background: var(--white);
  transition: width 0.35s var(--ease);
}

.process-nav {
  display: flex;
  gap: 0.75rem;
}

.process-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(20, 20, 20, 0.35);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.process-nav-btn:hover {
  background: rgba(20, 20, 20, 0.55);
  border-color: rgba(255, 255, 255, 0.75);
}

.process-nav-btn-next {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.process-nav-btn-next:hover {
  background: #f3f3f3;
  border-color: #f3f3f3;
  color: var(--ink);
}

.process-nav-btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* Solutions */
.solutions {
  padding: 2rem 0 5rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 2.75rem;
  align-items: stretch;
}

.solutions-media {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg);
  min-height: 280px;
  align-self: stretch;
}

.solutions-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.solutions-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solutions-copy h2 {
  margin: 0.35rem 0 1rem;
  max-width: 22ch;
}

.solutions-copy > p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.check-list li {
  position: relative;
  padding-left: 2.4rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0;
  background: url("assets/check.svg") center / contain no-repeat;
  box-shadow: none;
}

.check-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

/* Plans */
.plans {
  padding: 5rem 0;
  background: #121212;
  color: rgba(255, 255, 255, 0.85);
}

.plans .section-center {
  margin-bottom: 3rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.plan-card {
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.plan-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.plan-card-featured {
  border-color: rgba(23, 171, 105, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.plan-card > p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.58);
}

.plan-price {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 1.5rem !important;
}

.plan-price span {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.plan-card .btn {
  width: 100%;
  justify-content: center;
}

.plan-card ul {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.plan-card li {
  position: relative;
  padding-left: 1.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: rgba(23, 171, 105, 0.18);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.plan-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2.25rem;
  border-radius: 20px;
  background: #0d5c4f;
  border: none;
}

.plan-banner h3 {
  margin-bottom: 0.35rem;
  color: var(--white);
}

.plan-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
}

/* Testimonials */
.testimonials {
  padding: 5.5rem 0 4rem;
  background: var(--white);
}

.testimonials .section-center {
  max-width: 38rem;
  margin-bottom: 3.25rem;
}

.testimonials .section-center h2 {
  max-width: 26ch;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.25;
}

.testimonials .section-center h2 strong {
  color: var(--secondary);
}

.testimonial-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
  border-radius: 32px;
  padding: 2.5rem;
  background: #f5f5f5;
  border: none;
  box-shadow: none;
  min-height: 440px;
}

.testimonial-copy {
  position: relative;
  padding: 1rem 0.75rem 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.testimonial-slides {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-slide {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-logo {
  margin: 0 0 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.testimonial-slide blockquote {
  margin: 0 0 2.5rem;
  padding: 0;
  border: 0;
  color: #4a4a4a;
  font-size: 1.12rem;
  line-height: 1.65;
  font-weight: 400;
}

.testimonial-author {
  margin: auto 7.5rem 0 0;
  display: grid;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial-slide[hidden] {
  display: none;
}

.testimonial-nav {
  position: absolute;
  right: 0.75rem;
  bottom: 0.5rem;
  display: flex;
  gap: 0.75rem;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.testimonial-nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.testimonial-nav-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.testimonial-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 100%;
  background: #ddd;
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

/* Content hub */
.content-hub {
  padding: 2rem 0 5.5rem;
}

.content-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.content-head h2 {
  max-width: 18ch;
  margin-top: 0.35rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.content-card {
  display: grid;
  gap: 0.65rem;
}

.content-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 0.95;
  background: var(--sand);
}

.content-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-thumb-alt {
  background: linear-gradient(160deg, #0d5c4f, #17ab69 55%, #c6e8a0);
}

.content-thumb-dark {
  background: linear-gradient(160deg, #094746, #1a1818 70%, #17ab69);
}

.content-tag {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

.content-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--ink);
}

.content-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer CTA */
.cta-footer {
  background: #121212;
  color: rgba(255, 255, 255, 0.85);
  padding: 5rem 0 2rem;
}

.cta-footer-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: start;
}

.cta-brand p {
  margin: 1.5rem 0;
  max-width: 28rem;
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-action h2 {
  color: var(--white);
  max-width: 18ch;
  margin: 0 0 1.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-action h2 strong {
  color: var(--white);
}

.cta-action .btn {
  display: inline-flex;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

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

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

  .btn,
  .module-card,
  .navbar,
  .partners-track,
  .process-progress span,
  .process-slide {
    transition: none;
    animation: none;
  }

  .navbar.is-hidden {
    transform: none;
    pointer-events: auto;
  }
}

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

  .process-slides {
    margin-left: 0;
    max-width: 100%;
    justify-self: stretch;
    height: 10.5rem;
  }

  .process-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "slides"
      "footer";
    padding: 2rem 1.75rem 1.75rem;
  }

  .process-slider {
    height: 560px;
  }

  .about-layout,
  .differentials-grid,
  .solutions-grid,
  .testimonial-card,
  .cta-footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-layout h2 {
    max-width: none;
  }

  .hero-video {
    right: 1rem;
    bottom: 1rem;
    width: min(411px, calc(100% - 2rem));
    max-width: min(411px, calc(100% - 2rem));
  }

  .diff-visual {
    min-height: 320px;
  }

  .solutions-media {
    min-height: 320px;
    aspect-ratio: 4 / 5;
    max-height: 380px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 64px;
    --shell: min(1280px, calc(100% - 1.5rem));
    --radius-lg: 24px;
  }

  .navbar-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-actions-desktop {
    display: none;
  }

  .nav-actions-mobile {
    display: flex;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    grid-column: 2;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.25rem;
    padding: 1.25rem 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
    z-index: 40;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links > a {
    padding: 0.85rem 0;
    font-size: 1.05rem;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    margin: 1rem 0 0;
    gap: 0.85rem;
  }

  .nav-actions .btn-nav {
    width: 100%;
    justify-content: center;
  }

  .brand img {
    width: 108px;
  }

  .hero-panel {
    min-height: 560px;
  }

  .hero-copy {
    padding: 2.5rem 1.5rem 2rem;
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.8rem, 7vw, 2.75rem);
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-video {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 1.5rem 1.75rem;
    max-width: none;
    width: auto;
    height: 124px;
  }

  .hero-video-thumb {
    flex: 0 0 80px;
    width: 80px;
    height: 92px;
  }

  .hero-video-body {
    width: auto;
    max-width: none;
    height: 92px;
    min-height: 92px;
    max-height: 92px;
  }

  .hero-video-body strong {
    font-size: 15px;
  }

  .hero-video-body > span:not(.hero-video-play) {
    font-size: 12px;
  }

  .hero-image {
    object-position: 35% 50%;
  }

  .plan-grid,
  .module-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .plan-banner,
  .content-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .diff-card,
  .process-slider {
    padding: 0;
  }

  .process-slider {
    border-radius: 28px;
    height: 540px;
  }

  .process-layout {
    height: 100%;
  }

  .process-slides {
    height: 11rem;
  }

  .process-counter {
    font-size: 3.25rem;
  }

  .diff-list-grid {
    grid-template-columns: 1fr;
  }

  .process-footer {
    flex-wrap: wrap;
  }

  .process-progress {
    max-width: none;
    order: 2;
    flex-basis: 100%;
  }

  .testimonial-card {
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .testimonial-copy {
    padding: 0.75rem 0.5rem 3.5rem;
  }

  .testimonial-author {
    margin-right: 0;
  }

  .testimonial-nav {
    right: 0.5rem;
    bottom: 0.25rem;
  }

  .testimonial-media img {
    min-height: 240px;
  }

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

@media (max-width: 480px) {
  .brand img {
    width: 110px;
  }

  .hero-panel {
    border-radius: 20px;
    min-height: 500px;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
  }

  h1 {
    font-size: 1.85rem;
  }

  .process-slider {
    border-radius: 22px;
    height: 520px;
  }

  .process-layout {
    padding: 1.5rem 1.25rem 1.35rem;
  }

  .process-slides {
    height: 12rem;
  }

  .process-nav-btn {
    width: 46px;
    height: 46px;
  }
}
