@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --bg-primary: #050507;
  --bg-secondary: #0a0a0f;
  --bg-tertiary: #111119;
  --accent-lime: #c8f97c;
  --accent-lime-hover: #d7ff96;
  --accent-lime-glow: rgba(200, 249, 124, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(200, 249, 124, 0.2);
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Grids & Ambient Glows */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-lime-glow) 0%, rgba(200, 249, 124, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

.glow-top-right {
  top: -150px;
  right: -150px;
}

.glow-middle-left {
  top: 45%;
  left: -200px;
}

.glow-bottom-right {
  bottom: -150px;
  right: -200px;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* NAV */
nav {
  background: rgba(5, 5, 7, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.nav-brand svg {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-brand:hover svg {
  transform: rotate(10deg) scale(1.05);
}

.nav-brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.nav-brand-name span {
  color: var(--accent-lime);
}

.nav-cta {
  background: var(--accent-lime);
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200, 249, 124, 0.2);
  transition: var(--transition-smooth);
}

.nav-cta-short {
  display: none;
}

.nav-cta:hover {
  background: var(--accent-lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 249, 124, 0.35);
}

/* HERO */
.hero {
  padding: 120px 0 100px;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-lime);
  box-shadow: 0 0 10px var(--accent-lime);
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.hero h1 em {
  color: var(--accent-lime);
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 4px;
  background-color: rgba(200, 249, 124, 0.2);
  border-radius: 2px;
  z-index: -1;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  background: var(--accent-lime);
  color: var(--bg-primary);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 99px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(200, 249, 124, 0.2);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: var(--accent-lime-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200, 249, 124, 0.4);
}

.btn-ghost {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 15px 32px;
  border-radius: 99px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Hero Stats Card */
.hero-card {
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-lime), transparent);
}

.hero-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-card-label::before {
  content: '⚡';
  font-size: 14px;
}

.hero-stat-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.hero-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-lime);
  min-width: 80px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stat-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* SECTION SHARED */
section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 16px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

/* PROBLEM */
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-quote-wrap {
  position: relative;
}

.problem-quote {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  border-left: 4px solid var(--accent-lime);
  padding-left: 28px;
  letter-spacing: -0.02em;
  position: relative;
}

.problem-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 28px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  background: rgba(10, 10, 15, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-color-glow);
  box-shadow: 0 12px 30px rgba(200, 249, 124, 0.05);
}

.service-card-top {
  margin-bottom: 30px;
}

.service-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-green {
  background: rgba(200, 249, 124, 0.1);
  color: var(--accent-lime);
}

.icon-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.15);
}

.service-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.service-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Service Visual Mockups */
.service-mockup {
  background: rgba(5, 5, 7, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  margin-top: auto;
}

/* SMS chat bubbles inside card */
.sms-mockup {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sms-header {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
}

.sms-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.45;
}

.sms-in {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.sms-out {
  background: var(--accent-lime);
  color: var(--bg-primary);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.sms-tag {
  font-size: 10px;
  color: var(--accent-lime);
  align-self: flex-end;
  margin-top: -4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sms-tag::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--accent-lime);
  border-radius: 50%;
}

/* Review responder markup */
.review-mockup {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-user-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-user-info {
  display: flex;
  flex-direction: column;
}

.review-user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  font-size: 12px;
}

.review-user-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
}

.review-reply {
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--accent-lime);
  padding: 10px 14px;
  border-radius: 0 12px 12px 12px;
}

.review-reply-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-lime);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.review-reply-text {
  font-size: 12px;
  color: var(--text-primary);
  line-height: 1.5;
}

.btn-card {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.btn-service {
  composes: btn-primary;
}

/* HOW IT WORKS */
.how-section {
  background: var(--bg-secondary);
}

.how-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.how-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 32px;
}

.how-steps::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-lime), rgba(255, 255, 255, 0.05));
}

.how-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  position: relative;
}

.how-step:first-child {
  padding-top: 0;
}

.how-step:last-child {
  padding-bottom: 0;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-lime);
  color: var(--accent-lime);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(200, 249, 124, 0.15);
  z-index: 1;
}

.step-content strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content span {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  display: block;
}

/* ROI */
.roi-section {
  background: var(--bg-primary);
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.roi-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.roi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.roi-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.4;
  height: 36px; /* keep height consistent for vertical align */
  display: flex;
  align-items: center;
  justify-content: center;
}

.roi-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.roi-card.highlight {
  border-color: var(--accent-lime);
  background: rgba(200, 249, 124, 0.02);
  box-shadow: 0 10px 30px rgba(200, 249, 124, 0.05);
}

.roi-card.highlight .roi-value {
  color: var(--accent-lime);
  text-shadow: 0 0 20px rgba(200, 249, 124, 0.2);
}

.roi-card.highlight .roi-label {
  color: var(--text-primary);
  font-weight: 600;
}

/* PRICING */
.pricing-section {
  background: var(--bg-secondary);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 40px;
}

.pricing-card {
  background: rgba(5, 5, 7, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-lime), #84cc16);
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 72px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-per {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 500;
}

.price-note {
  font-size: 15px;
  color: var(--accent-lime);
  font-weight: 600;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-note::before {
  content: '✓';
  display: inline-block;
  font-weight: 800;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.include-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(200, 249, 124, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check svg {
  width: 12px;
  height: 12px;
  stroke: var(--accent-lime);
  stroke-width: 3;
  fill: none;
}

.pricing-card-btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 36px;
}

.pricing-cta-col {
  padding-left: 20px;
}

.pricing-cta-col h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.pricing-cta-col p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 99px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-dark:hover {
  background: var(--accent-lime);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 249, 124, 0.2);
}

.cta-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-sub a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--transition-smooth);
}

.cta-sub a:hover {
  color: var(--accent-lime);
}

/* FOOTER */
footer {
  background: var(--bg-primary);
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.footer-brand-name span {
  color: var(--accent-lime);
}

.footer-contacts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-item a:hover {
  color: var(--accent-lime);
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-color);
}

/* SCROLL REVEAL ANIMATIONS */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    .scroll-reveal {
      opacity: 1;
      transform: none;
      animation: fade-slide-in auto linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 30%;
    }

    @keyframes fade-slide-in {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-layout, .problem-layout, .how-layout, .pricing-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero h1 {
    font-size: 46px;
  }
  
  .hero-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .pricing-cta-col {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .inner {
    padding: 0 1.5rem;
  }
  
  .nav-inner {
    padding: 0 1.5rem;
  }
  
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .section-title {
    font-size: 32px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 32px;
  }
  
  .roi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .roi-card {
    padding: 20px 16px;
  }
  
  .pricing-card {
    padding: 32px;
  }
  
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 1.5rem;
  }
  
  .footer-contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .footer-dot {
    display: none;
  }
}

@media (max-width: 480px) {
  .inner {
    padding: 0 1rem;
  }
  
  .nav-inner {
    padding: 0 1rem;
  }

  .nav-brand {
    gap: 8px;
  }

  .nav-brand svg {
    width: 28px;
    height: 28px;
  }

  .nav-brand-name {
    font-size: 17px;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 13px;
  }

  .nav-cta-long {
    display: none;
  }

  .nav-cta-short {
    display: inline;
  }

  section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-sub, .hero-sub {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 34px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  
  .btn-primary, .btn-ghost {
    text-align: center;
  }

  .service-card {
    padding: 20px;
  }
  
  .roi-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 24px;
  }
  
  .price-amount {
    font-size: 56px;
  }
}