﻿:root {
  --bg-main: #f4f3ef;
  --bg-soft: #ece9e2;
  --surface: #ffffff;
  --surface-alt: #f2efe7;
  --text-main: #1f1f1d;
  --text-soft: #787872;
  --line: #dddad1;
  --brand: #ff4a1f;
  --brand-hover: #e23f18;
  --brand-soft: #ffd4c7;
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 12px 30px rgba(33, 27, 17, 0.08);
  --shadow-card: 0 18px 40px rgba(35, 25, 10, 0.12);
  --section-gap: 128px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at 8% -4%, #ffffff 0%, var(--bg-main) 34%, var(--bg-soft) 100%);
  color: var(--text-main);
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.8px);
  opacity: 0.4;
  animation: drift 16s ease-in-out infinite;
}

.orb-a {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 35% 30%, #ffd8be 0%, rgba(255, 216, 190, 0) 72%);
  top: -110px;
  left: -70px;
}

.orb-b {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at 55% 42%, #d9ecf0 0%, rgba(217, 236, 240, 0) 72%);
  right: -140px;
  top: 260px;
  animation-delay: -5s;
}

.orb-c {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 50% 45%, #f0dfc8 0%, rgba(240, 223, 200, 0) 72%);
  left: 24%;
  bottom: -130px;
  animation-delay: -9s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -16px, 0) scale(1.04);
  }
}

.page {
  width: min(1240px, 94vw);
  margin: 0 auto;
  padding: 22px 0 46px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nav {
  position: sticky;
  top: 14px;
  z-index: 25;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(221, 218, 209, 0.74);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(39, 30, 19, 0.08);
  padding: 10px 16px 10px 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 25% 28%, #ffffff 0 16%, transparent 17%),
    linear-gradient(145deg, #1f1f1f 0%, #4d4d4d 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 3px;
  margin: 4px auto;
  background: #252525;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #55544f;
  font-size: 0.93rem;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--text-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.text-link {
  text-decoration: none;
  color: #4f4f4a;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--text-main);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(255, 74, 31, 0.35);
}

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

.btn-soft {
  background: #e4e4e1;
  color: #2f2f2c;
}

.hero {
  text-align: center;
  padding: 112px 0 0;
}

.hero h1 {
  margin: 0 auto;
  max-width: 960px;
  font-size: clamp(2.2rem, 6.4vw, 4rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 14px auto 0;
  max-width: 860px;
  color: var(--text-soft);
  font-size: clamp(1.25rem, 3.5vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-ctas {
  margin-top: 38px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.social-proof {
  margin-top: 76px;
}

.proof-line {
  color: #9b9a95;
  font-size: 0.92rem;
}

.logo-row {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
  align-items: center;
}

.logo-chip {
  border-radius: 999px;
  color: #a9a8a5;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  min-height: 40px;
  display: grid;
  place-items: center;
}

.stats-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 218, 209, 0.85);
  backdrop-filter: blur(4px);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.stat-number {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
}

.stat-card p {
  margin-top: 4px;
  color: #71716f;
  font-size: 0.91rem;
}

.showcase {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

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

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.08));
}

.card-a .card-media {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.05)),
    linear-gradient(125deg, #8d6f4f 0%, #17314f 58%, #456c66 100%);
}

.card-b .card-media {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.02)),
    linear-gradient(125deg, #e5c6ad 0%, #f2e8dc 48%, #aac5c7 100%);
}

.media-frame {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.89);
  color: #686865;
  border: 1px dashed #c6c6c2;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.8rem;
}

.media-frame img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 16px;
  color: #ffffff;
}

.card-tag {
  font-size: 0.82rem;
  opacity: 0.86;
}

.card-title {
  margin-top: 6px;
  font-size: 1.16rem;
  font-weight: 500;
}

.card-sub {
  margin-top: 3px;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.78);
}

.card-plus {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #f6f6f5;
}

.section {
  margin-top: var(--section-gap);
}

.section-head {
  max-width: 780px;
  text-align: center;
  margin: 0 auto 32px;
}

.section-head.align-left {
  text-align: left;
  margin-inline: 0;
}

.eyebrow {
  color: #7f7e79;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.section-head h2,
.final-cta h2 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.section-copy {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

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

.feature-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff 0%, #f7f4ed 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.2s ease, box-shadow 0.24s ease;
  will-change: transform;
}

.feature-card:hover {
  box-shadow: var(--shadow-card);
}

.feature-kicker {
  color: #7a6b58;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
}

.feature-card h3 {
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin-top: 10px;
  color: #5e5d58;
}

.feature-media {
  margin-top: auto;
  border-radius: 14px;
  border: 1px dashed #d3cfc6;
  overflow: hidden;
  min-height: 146px;
  display: grid;
  place-items: center;
  font-size: 0.84rem;
  color: #8a8882;
  background:
    linear-gradient(145deg, rgba(255, 221, 187, 0.45) 0%, rgba(209, 227, 231, 0.45) 100%),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.4) 8px,
      rgba(240, 238, 233, 0.4) 8px,
      rgba(240, 238, 233, 0.4) 16px
    );
}

.feature-media img,
.carousel-media img,
.flow-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 10px;
}

.workflow-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 14px;
}

.flow-steps {
  display: grid;
  gap: 10px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: #4e4d49;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.flow-step:hover {
  transform: translateX(2px);
}

.flow-step.is-active {
  border-color: rgba(255, 74, 31, 0.5);
  box-shadow: 0 8px 20px rgba(255, 74, 31, 0.15);
}

.flow-step-index {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  background: #f1eee8;
}

.flow-step.is-active .flow-step-index {
  background: var(--brand);
  color: #ffffff;
}

.flow-panel {
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, #ffffff 0%, #f7f4ec 100%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.flow-panel-tag {
  color: #7d6d58;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flow-panel h3 {
  margin-top: 12px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.flow-panel-copy {
  margin-top: 10px;
  color: #696863;
  font-size: 1.02rem;
}

.flow-metrics {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.flow-metrics div {
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e3dfd6;
  padding: 12px;
}

.flow-metrics strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.flow-metrics span {
  color: #7a7974;
  font-size: 0.86rem;
}

.flow-media {
  margin-top: 16px;
  min-height: 198px;
  border-radius: 14px;
  border: 1px dashed #cbc6bc;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #87857f;
  font-size: 0.88rem;
  background:
    linear-gradient(145deg, rgba(255, 227, 196, 0.45) 0%, rgba(203, 232, 234, 0.4) 100%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4) 10px, rgba(244, 241, 236, 0.4) 10px, rgba(244, 241, 236, 0.4) 20px);
}

.carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.carousel-slides {
  position: relative;
  min-height: 360px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.carousel-media {
  border-radius: var(--radius-lg);
  min-height: 260px;
  border: 1px dashed #cec9bf;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #85827a;
  font-size: 0.9rem;
  background:
    linear-gradient(125deg, rgba(255, 206, 175, 0.55) 0%, rgba(166, 206, 214, 0.5) 100%),
    linear-gradient(65deg, rgba(255, 255, 255, 0.3) 0%, rgba(247, 243, 236, 0.3) 100%);
}

.carousel-copy {
  align-self: center;
}

.carousel-kicker {
  color: #7a6a55;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
}

.carousel-copy h3 {
  margin-top: 8px;
  font-size: clamp(1.3rem, 2.7vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.carousel-copy p {
  margin-top: 10px;
  color: #65645f;
}

.carousel-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 30px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: #d7d3ca;
  cursor: pointer;
  transition: width 0.22s ease, background-color 0.22s ease;
}

.carousel-dot.is-active {
  width: 46px;
  background: var(--brand);
}

.pricing .section-head {
  margin-bottom: 24px;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 4px;
  gap: 4px;
}

.billing-btn {
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  background: transparent;
  color: #5e5d58;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.billing-btn.is-active {
  background: #1f1f1f;
  color: #ffffff;
}

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

.price-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.price-card.featured {
  background: linear-gradient(145deg, #fff2ec 0%, #ffffff 46%);
  border-color: rgba(255, 74, 31, 0.45);
}

.plan-tag {
  color: #806b53;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.price-card h3 {
  margin-top: 8px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.plan-copy {
  margin-top: 8px;
  color: #6c6b66;
  font-size: 0.95rem;
}

.price-line {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.currency {
  font-size: 1rem;
  color: #4e4d48;
}

.price-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.05rem;
  letter-spacing: -0.03em;
}

.cycle {
  color: #6d6c67;
  font-size: 0.86rem;
}

.price-card ul {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  color: #575651;
  font-size: 0.92rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-soft);
}

.price-card .btn {
  margin-top: 16px;
  align-self: flex-start;
}

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

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 16px 18px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #2c2b28;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  cursor: pointer;
}

.faq-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #f0ece3;
  color: #67655f;
  font-size: 1rem;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.26s ease;
}

.faq-answer p {
  padding: 0 18px 16px;
  color: #6a6963;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-soft);
  color: #503124;
}

.final-cta {
  text-align: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 207, 176, 0.45) 0%, rgba(255, 207, 176, 0) 38%),
    radial-gradient(circle at 86% 92%, rgba(184, 218, 224, 0.5) 0%, rgba(184, 218, 224, 0) 42%),
    #ffffff;
  padding: clamp(34px, 6vw, 62px);
  box-shadow: var(--shadow-soft);
}

.final-cta p {
  margin: 12px auto 0;
  max-width: 700px;
  color: #6f6e69;
}

.footer {
  margin-top: 48px;
  padding: 18px 0 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer p {
  color: #7a7974;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: #5f5e58;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1160px) {
  .hero {
    padding-top: 92px;
  }

  .workflow-shell {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 920px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
    justify-content: initial;
    align-items: center;
    column-gap: 8px;
    row-gap: 8px;
    border-radius: 18px;
    padding: 10px;
  }

  .brand {
    white-space: nowrap;
    min-width: 0;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    order: 3;
    grid-column: 3;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    justify-self: end;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.25s ease;
    width: 100%;
    margin-top: 2px;
  }

  .nav-links.is-open {
    max-height: 360px;
    opacity: 1;
  }

  .nav-links li {
    border-radius: 10px;
    border: 1px solid #ebe7de;
    background: #fbfaf7;
  }

  .nav-links a {
    display: block;
    padding: 8px 10px;
  }

  .nav-actions {
    order: 2;
    grid-column: 2;
    justify-self: end;
    gap: 8px;
  }

  .nav-actions .text-link {
    display: none;
  }

  .nav-actions .btn {
    font-size: 0.82rem;
    padding: 8px 12px;
    white-space: nowrap;
  }

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

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

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

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

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

  .carousel-btn {
    justify-self: center;
  }

  .carousel-btn#carousel-prev {
    order: 2;
  }

  .carousel-btn#carousel-next {
    order: 3;
  }

  .carousel-slides {
    order: 1;
    min-height: 420px;
  }

  .carousel-slide {
    grid-template-columns: 1fr;
  }

  .carousel-media {
    min-height: 210px;
  }

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

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

@media (max-width: 620px) {
  :root {
    --section-gap: 96px;
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    grid-column: 2;
  }

  .page {
    width: min(1240px, 92vw);
  }

  .hero {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 10.8vw, 2.8rem);
  }

  .hero p {
    font-size: clamp(1.08rem, 7vw, 1.6rem);
  }

  .hero-ctas {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-self: center;
  }

  .social-proof {
    margin-top: 56px;
  }

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

  .card {
    min-height: 340px;
  }

  .card-content {
    padding: 16px 14px;
  }

  .card-title {
    font-size: 1.02rem;
  }

  .card-sub {
    font-size: 0.88rem;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .feature-card {
    min-height: 0;
    padding: 18px;
  }

  .feature-card h3 {
    font-size: 1.15rem;
  }

  .feature-media {
    min-height: 126px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-step {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .flow-metrics {
    grid-template-columns: 1fr;
  }

  .flow-panel {
    padding: 18px;
  }

  .flow-panel h3 {
    font-size: 1.3rem;
  }

  .carousel {
    gap: 10px;
  }

  .carousel-slides {
    min-height: 0;
  }

  .carousel-slide {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 12px;
    border-radius: 18px;
  }

  .carousel-slide.is-active {
    display: grid;
  }

  .carousel-media {
    min-height: 180px;
  }

  .carousel-copy h3 {
    font-size: 1.2rem;
  }

  .carousel-copy p {
    font-size: 0.92rem;
  }

  .pricing-grid {
    gap: 10px;
  }

  .price-card {
    padding: 16px;
  }

  .price-card h3 {
    font-size: 1.16rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 14px;
  }

  .faq-answer p {
    padding: 0 14px 14px;
    font-size: 0.92rem;
  }

  .final-cta {
    padding: 24px 16px;
  }

  .footer {
    gap: 10px;
  }

  .footer-links {
    flex-wrap: wrap;
    row-gap: 6px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-gap: 78px;
  }

  .page {
    width: 93vw;
    padding-bottom: 32px;
  }

  .nav {
    top: 8px;
    gap: 10px;
    padding: 10px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 20px;
    height: 20px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .nav-toggle span {
    width: 17px;
    margin: 3px auto;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 10vw, 2.2rem);
  }

  .hero p {
    font-size: clamp(1rem, 5.8vw, 1.22rem);
  }

  .social-proof {
    margin-top: 42px;
  }

  .proof-line {
    font-size: 0.84rem;
  }

  .logo-chip {
    font-size: 1.18rem;
  }

  .stat-card {
    padding: 14px;
  }

  .card {
    min-height: 300px;
  }

  .media-frame {
    top: 10px;
    right: 10px;
    font-size: 0.72rem;
    padding: 6px 8px;
  }

  .flow-panel {
    padding: 14px;
  }

  .flow-media {
    min-height: 160px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .carousel-media {
    min-height: 150px;
  }

  .billing-toggle {
    width: 100%;
    justify-content: center;
  }

  .billing-btn {
    flex: 1;
    text-align: center;
  }

  .price-value {
    font-size: 1.7rem;
  }

  .final-cta h2 {
    font-size: 1.55rem;
  }
}
