/* ─── Reset & Tokens ─── */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy-deep: #0A1628;
  --navy-dark: #0E2137;
  --navy-mid: #183554;
  --navy-light: #1E4571;
  --teal: #148073;
  --teal-dark: #0E6A5E;
  --teal-light: #1A9B8A;
  --teal-muted: rgba(20, 128, 115, 0.08);
  --surface-1: #FAFBFD;
  --surface-2: #F3F5F9;
  --surface-3: #E8ECF2;
  --text-1: #0F1923;
  --text-2: #3D5165;
  --text-3: #6B7F91;
  --border: #DDE3ED;
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-w: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-1);
  background: var(--surface-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* ─── Scroll Reveal ─── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── Nav ─── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 251, 253, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 227, 237, 0.6);
  transition: box-shadow 0.3s ease;
}

.nav.nav-scrolled {
  box-shadow: 0 1px 12px rgba(10, 22, 40, 0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--text-1);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
  transition: width 0.25s var(--ease-out);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 20px;
  background: var(--teal);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s var(--ease-out), box-shadow 0.2s ease;
  box-shadow: 0 1px 4px rgba(20, 128, 115, 0.2);
}

.nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(20, 128, 115, 0.25);
}

.lang-toggle {
  padding: 5px 12px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-3);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-toggle:hover {
  background: var(--navy-dark);
  color: #fff;
  border-color: var(--navy-dark);
}

.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.lang-toggle-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-1);
  cursor: pointer;
  padding: 4px;
}

/* ─── Hero ─── */

.hero {
  padding: clamp(120px, 16vw, 160px) 0 clamp(60px, 10vw, 100px);
  background: var(--surface-1);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(20, 128, 115, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--teal-muted);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--navy-dark);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

.hero-proof-sep {
  color: var(--border);
}

.hero-screenshot {
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(10, 22, 40, 0.03),
    0 8px 24px rgba(10, 22, 40, 0.06),
    0 24px 48px rgba(10, 22, 40, 0.08);
  background: var(--surface-3);
  min-height: 380px;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.hero-screenshot:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
  box-shadow:
    0 4px 8px rgba(10, 22, 40, 0.04),
    0 16px 40px rgba(10, 22, 40, 0.1),
    0 32px 64px rgba(10, 22, 40, 0.08);
}

.hero-screenshot img,
.hero-screenshot video {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 1px 3px rgba(20, 128, 115, 0.15), 0 4px 12px rgba(20, 128, 115, 0.2);
}

.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 2px 6px rgba(20, 128, 115, 0.2), 0 8px 24px rgba(20, 128, 115, 0.28);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(20, 128, 115, 0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--navy-mid);
  color: var(--navy-dark);
  background: rgba(14, 33, 55, 0.03);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-full {
  width: 100%;
}

/* ─── Section Headers ─── */

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--navy-dark);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 580px;
}

/* ─── Problem ─── */

.problem {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--surface-1);
}

.problem .container {
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: left;
}

.problem-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(20, 128, 115, 0.25);
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.05);
}

.problem-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-muted);
  border-radius: 11px;
  color: var(--teal);
  margin-bottom: 18px;
}

.problem-card h4 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--navy-dark);
}

.problem-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}

/* ─── Features ─── */

.features {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--surface-2);
}

.features .container {
  text-align: center;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  text-align: left;
  margin-top: clamp(56px, 7vw, 80px);
}

.feature-row-reverse {
  grid-template-columns: 1.2fr 1fr;
}

.feature-row-reverse .feature-text {
  order: 2;
}

.feature-row-reverse .feature-img {
  order: 1;
}

.feature-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--navy-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 6px;
  margin-bottom: 16px;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.feature-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 10px;
  line-height: 1.65;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.feature-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(10, 22, 40, 0.03),
    0 8px 24px rgba(10, 22, 40, 0.06);
  background: var(--surface-3);
  min-height: 280px;
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.feature-img:hover {
  box-shadow:
    0 4px 8px rgba(10, 22, 40, 0.04),
    0 16px 40px rgba(10, 22, 40, 0.1);
  transform: translateY(-4px);
}

.feature-img img,
.feature-img video {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── How It Works ─── */

.how-it-works {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(20, 128, 115, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.how-it-works .container {
  text-align: center;
  position: relative;
}

.how-it-works .section-label {
  color: var(--teal-light);
}

.how-it-works .section-title {
  color: #fff;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
}

.step-number {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  border-radius: 14px;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(20, 128, 115, 0.3);
}

.step h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(181, 212, 228, 0.65);
}

.step-arrow {
  display: flex;
  align-items: center;
  color: rgba(181, 212, 228, 0.2);
  margin-top: 28px;
}

/* ─── Included ─── */

.included {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--surface-1);
}

.included .container {
  text-align: center;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
  text-align: left;
}

.included-item {
  display: flex;
  gap: 14px;
  padding: 24px 22px;
  border-radius: 12px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.included-item:hover {
  border-color: rgba(20, 128, 115, 0.2);
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.04);
}

.included-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-muted);
  border-radius: 10px;
  color: var(--teal);
  flex-shrink: 0;
}

.included-item h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy-dark);
}

.included-item p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-2);
}

/* ─── Pricing ─── */

.pricing {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--surface-2);
}

.pricing .container {
  text-align: center;
}

.pricing .section-sub {
  margin: 0 auto 56px;
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto 56px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.05);
}

.pricing-header {
  padding: 28px 32px 22px;
  background: var(--navy-dark);
  color: #fff;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-desc {
  font-size: 14px;
  color: rgba(181, 212, 228, 0.55);
  margin-top: 4px;
}

.pricing-body {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-setup,
.pricing-monthly {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy-dark);
}

.pricing-period {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 500;
}

.pricing-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.pricing-includes {
  width: 100%;
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  margin-top: -8px;
}

.pricing-features {
  list-style: none;
  padding: 0 32px 28px;
  border-top: 1px solid var(--border);
  margin: 0;
  padding-top: 24px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  padding: 7px 0;
}

.pricing-features svg {
  color: var(--teal);
  flex-shrink: 0;
}

.pricing-card .btn {
  margin: 0 32px 28px;
  width: calc(100% - 64px);
}

/* ─── Compare Table ─── */

.pricing-compare {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.pricing-compare h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-align: center;
  color: var(--navy-dark);
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-table th {
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
  text-align: left;
  background: var(--surface-1);
}

.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  background: var(--surface-1);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-highlight {
  background: rgba(20, 128, 115, 0.04) !important;
  color: var(--navy-dark) !important;
  font-weight: 600;
}

.compare-note {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 400;
}

/* ─── FAQ ─── */

.faq {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--surface-1);
}

.faq .container {
  text-align: center;
  max-width: 720px;
}

.faq-list {
  margin-top: 48px;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-item summary:hover {
  color: var(--teal);
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--text-3);
  transition: transform 0.3s var(--ease-out), color 0.2s ease;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--teal);
  transform: rotate(180deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
}

/* ─── CTA ─── */

.cta {
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--navy-deep);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(20, 128, 115, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta .container {
  position: relative;
}

.cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 18px;
}

.cta p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(181, 212, 228, 0.65);
  max-width: 540px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-primary {
  box-shadow: 0 2px 8px rgba(20, 128, 115, 0.3), 0 8px 24px rgba(20, 128, 115, 0.2);
}

.cta .btn-ghost {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
}

.cta .btn-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.cta-note {
  font-size: 13px;
  color: rgba(181, 212, 228, 0.35) !important;
  margin-top: 20px !important;
}

/* ─── Footer ─── */

.footer {
  padding: 48px 0;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(181, 212, 228, 0.35);
  margin-top: 4px;
}

.footer-brand .nav-logo {
  color: #fff;
  font-size: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: rgba(181, 212, 228, 0.45);
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(181, 212, 228, 0.25);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copy a {
  color: var(--teal-light);
  transition: color 0.2s ease;
}

.footer-copy a:hover {
  color: #fff;
}

/* ─── Mobile ─── */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(250, 251, 253, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-links-open {
    display: flex;
  }

  .nav-mobile-actions {
    display: flex;
  }

  .nav-toggle,
  .lang-toggle-mobile {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(28px, 7vw, 36px);
  }

  .hero-screenshot {
    transform: none;
  }

  .hero-screenshot:hover {
    transform: none;
  }

  .hero-proof {
    flex-wrap: wrap;
    gap: 6px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section-title {
    font-size: clamp(26px, 6vw, 32px);
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-row-reverse .feature-text {
    order: 1;
  }

  .feature-row-reverse .feature-img {
    order: 2;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .pricing-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pricing-divider {
    width: 100%;
    height: 1px;
  }

  .cta h2 {
    font-size: clamp(26px, 6vw, 32px);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .feature-text h4 {
    font-size: 22px;
  }

  .pricing-card {
    border-radius: 14px;
  }

  .pricing-header {
    padding: 24px;
  }

  .pricing-body {
    padding: 24px;
  }

  .pricing-features {
    padding: 20px 24px 24px;
  }

  .pricing-card .btn {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
  }
}
