/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --primary-light: #fef3c7;
  --accent: #10b981;
  --accent-light: #d1fae5;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --text: #475569;
  --text-light: #94a3b8;
  --text-dark: #0f172a;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--bg);
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-brand span {
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-3);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-login {
  font-weight: 600 !important;
}
.nav-cta-btn {
  background: var(--dark);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.2s !important;
}
.nav-cta-btn:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f0f7ff 100%);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}
.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}
.shape-3 {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  top: 50%;
  left: 50%;
  animation: float 18s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-pill {
  display: inline-block;
  background: var(--accent-light);
  color: #065f46;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 540px;
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}
.btn-hero-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 15px 28px;
  background: var(--bg);
  color: var(--dark);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-hero-secondary:hover {
  border-color: var(--dark-3);
  background: var(--bg-alt);
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--text-light);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.cta-section .hero-trust {
  color: rgba(255, 255, 255, 0.6);
  justify-content: center;
}
.cta-section .hero-trust span {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
}
.trust-dot {
  opacity: 0.3;
  font-size: 0.6rem;
  padding: 0 !important;
  background: none !important;
}

/* ===== DASHBOARD PREVIEW ===== */
.hero-visual {
  perspective: 1000px;
}
.dashboard-preview {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s;
}
.dashboard-preview:hover {
  transform: rotateY(0) rotateX(0);
}
.preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.preview-dots {
  display: flex;
  gap: 6px;
}
.preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.preview-dots span:nth-child(1) {
  background: #ef4444;
}
.preview-dots span:nth-child(2) {
  background: #f59e0b;
}
.preview-dots span:nth-child(3) {
  background: #10b981;
}
.preview-title {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}
.preview-body {
  padding: 20px;
}
.preview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.p-stat {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  border-left: 3px solid #3b82f6;
}
.p-stat.green {
  border-color: var(--accent);
}
.p-stat.orange {
  border-color: var(--primary);
}
.p-stat.purple {
  border-color: #8b5cf6;
}
.p-stat-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}
.p-stat-lbl {
  font-size: 0.65rem;
  color: var(--text-light);
  margin-top: 2px;
}
.preview-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.chart-bar-mini {
  flex: 1;
  background: linear-gradient(180deg, #dbeafe, #93c5fd);
  border-radius: 4px 4px 0 0;
  transition: height 0.5s;
}
.chart-bar-mini.active {
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
}

/* ===== PROOF BAR ===== */
.proof-bar {
  padding: 40px 0;
  background: var(--dark);
  color: #fff;
}
.proof-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-item {
  text-align: center;
}
.proof-num {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proof-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.pill {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-head p {
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card > p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-list li {
  font-size: 0.83rem;
  color: var(--dark-3);
  padding-left: 20px;
  position: relative;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.features-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.extra-item {
  padding: 10px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-3);
  transition: all 0.2s;
}
.extra-item:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-light);
}

/* ===== STEPS ===== */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  transition: all 0.3s;
  position: relative;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}
.step-arrow {
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ===== PRICING ===== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
  cursor: pointer;
}
.toggle-label.active {
  color: var(--dark);
  font-weight: 700;
}
.save-badge {
  background: var(--accent-light);
  color: #065f46;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}
.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--border);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.toggle-switch.active {
  background: var(--accent);
}
.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.toggle-switch.active .toggle-knob {
  transform: translateX(22px);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card.popular {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.15);
  transform: scale(1.03);
}
.price-card.popular:hover {
  transform: scale(1.03) translateY(-4px);
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #ea580c);
  color: #fff;
  padding: 4px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}
.price-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}
.currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}
.amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.period {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-left: 2px;
}
.price-yearly-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.price-features {
  text-align: left;
  margin-bottom: 24px;
}
.pf-item {
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--dark-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pf-item.disabled {
  color: var(--text-light);
  opacity: 0.5;
}
.pf-val {
  font-weight: 700;
  color: var(--dark);
}
.pf-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.price-cta {
  display: block;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  border: 1.5px solid var(--border);
  color: var(--dark);
  transition: all 0.2s;
}
.price-cta:hover {
  border-color: var(--dark);
  background: var(--bg-alt);
}
.price-cta.primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.price-cta.primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.t-stars {
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.t-text {
  font-size: 0.92rem;
  color: var(--dark-3);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.t-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.t-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--primary);
}
.faq-q {
  width: 100%;
  padding: 18px 22px;
  background: var(--bg);
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: background 0.2s;
}
.faq-q:hover {
  background: var(--bg-alt);
}
.faq-q span {
  font-size: 1.3rem;
  transition: transform 0.3s;
  color: var(--text-light);
}
.faq-item.open .faq-q span {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s,
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 18px;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.1) 0%,
    transparent 70%
  );
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-inner p {
  font-size: 1.05rem;
  opacity: 0.75;
  max-width: 550px;
  margin: 0 auto 30px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.6;
  line-height: 1.6;
}
.footer-social {
  margin-top: 15px;
  font-size: 0.82rem;
  opacity: 0.5;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  opacity: 0.6;
  padding: 4px 0;
  transition: opacity 0.2s;
}
.footer-col a:hover {
  opacity: 1;
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ===== ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-in:nth-child(2) {
  transition-delay: 0.1s;
}
.animate-in:nth-child(3) {
  transition-delay: 0.2s;
}
.animate-in:nth-child(4) {
  transition-delay: 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    transition: transform 0.3s;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    flex-direction: column;
  }
  .step-arrow {
    transform: rotate(90deg);
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-card.popular {
    transform: scale(1);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .proof-items {
    gap: 24px;
  }
  .proof-divider {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding: 120px 0 60px;
  }
  .preview-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .proof-items {
    flex-direction: column;
    gap: 20px;
  }
}
