/* =========================================
   SALEZY — styles.css
   Brand: #81007f purple | #9ec23f green | #d7bfdc lavender
   Fonts: Outfit (headings) + Inter (body)
   ========================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #1a1f1a;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #81007f;
  background: #f0e6f0;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1a1f1a;
  margin-bottom: 16px;
}

.section-subtext {
  font-size: 1.0625rem;
  color: #556054;
  max-width: 560px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: #81007f;
  color: #ffffff;
}
.btn-primary:hover {
  background: #6a0069;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(129, 0, 127, 0.3);
}

.btn-outline {
  background: transparent;
  color: #81007f;
  border: 2px solid #81007f;
}
.btn-outline:hover {
  background: #81007f;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-white {
  background: #ffffff;
  color: #81007f;
}
.btn-white:hover {
  background: #f0e6f0;
  transform: translateY(-1px);
}

.btn-green {
  background: #9ec23f;
  color: #ffffff;
}
.btn-green:hover {
  background: #88a835;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(158, 194, 63, 0.35);
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(215, 191, 220, 0.3);
  transition: box-shadow 0.2s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: #81007f;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.nav-logo-mark svg {
  width: 100%;
  height: 100%;
}

.nav-wordmark {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #81007f;
  letter-spacing: -0.02em;
}

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

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #556054;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #81007f;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-actions .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1f1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(215, 191, 220, 0.4);
  padding: 20px 24px 28px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.25s ease;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  margin-bottom: 20px;
}

.mobile-menu ul li {
  border-bottom: 1px solid #f5f6f5;
}

.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1f1a;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

/* =========================================
   HERO
   ========================================= */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(160deg, #faf7fa 0%, #f5f6f5 60%, #edf5e0 100%);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(129, 0, 127, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0e6f0;
  border: 1px solid #d7bfdc;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #81007f;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #9ec23f;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #1a1f1a;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1 span.highlight {
  color: #81007f;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: #556054;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-fine-print {
  font-size: 0.8125rem;
  color: #8fa38e;
  margin-top: 12px;
}

.hero-fine-print span {
  margin: 0 6px;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
  padding: 100px 0;
  background: #ffffff;
}

.how-it-works .section-intro {
  text-align: center;
  margin-bottom: 56px;
}

.how-it-works .section-subtext {
  margin: 0 auto;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hiw-card {
  background: #f5f6f5;
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hiw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.hiw-icon {
  width: 52px;
  height: 52px;
  background: #81007f;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hiw-icon svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
}

.hiw-step {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ec23f;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.hiw-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1f1a;
  margin-bottom: 10px;
}

.hiw-card p {
  font-size: 0.9375rem;
  color: #556054;
  line-height: 1.65;
}

/* =========================================
   FEATURES
   ========================================= */
.features {
  padding: 100px 0;
  background: #f5f6f5;
}

.features .section-intro {
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.feat-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
}

.feat-card.span-2 {
  grid-column: span 2;
}

.feat-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.feat-icon {
  width: 42px;
  height: 42px;
  background: #f0e6f0;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-icon svg {
  width: 22px;
  height: 22px;
  color: #81007f;
}

.feat-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1f1a;
}

.feat-card p {
  font-size: 0.9375rem;
  color: #556054;
  line-height: 1.65;
}

/* Mock UI inside span-2 card */
.feat-mock-ui {
  margin-top: 20px;
  background: #f5f6f5;
  border-radius: 12px;
  padding: 20px;
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dot-red { background: #ff5f57; }
.mock-dot-yellow { background: #ffbd2e; }
.mock-dot-green { background: #28ca41; }

.mock-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8fa38e;
  margin-left: 6px;
}

.mock-task-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-task {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 14px;
}

.mock-task-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d7bfdc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-task-check.done {
  background: #9ec23f;
  border-color: #9ec23f;
}

.mock-task-check.done::after {
  content: '';
  display: block;
  width: 6px;
  height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}

.mock-task-text {
  font-size: 0.8125rem;
  color: #1a1f1a;
  flex: 1;
}

.mock-task-text.done {
  text-decoration: line-through;
  color: #8fa38e;
}

.mock-task-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}

.tag-call { background: #edf5e0; color: #5a7a1a; }
.tag-email { background: #f0e6f0; color: #81007f; }
.tag-follow { background: #fff3e0; color: #9a5f00; }

/* =========================================
   PRICING
   ========================================= */
.pricing {
  padding: 100px 0;
  background: #ffffff;
}

.pricing .section-intro {
  text-align: center;
  margin-bottom: 56px;
}

.pricing .section-subtext {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: #f5f6f5;
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
}

.pricing-card.featured {
  background: #81007f;
  color: #ffffff;
  transform: translateY(-16px);
  box-shadow: 0 20px 60px rgba(129, 0, 127, 0.3);
}

.pricing-card.featured:hover {
  transform: translateY(-20px);
  box-shadow: 0 24px 70px rgba(129, 0, 127, 0.35);
}

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #9ec23f;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ec23f;
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-tier-label {
  color: #d7bfdc;
}

.pricing-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1f1a;
}

.pricing-card.featured h3 {
  color: #ffffff;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: #556054;
}

.pricing-card.featured .price-currency {
  color: #d7bfdc;
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #1a1f1a;
  line-height: 1;
}

.pricing-card.featured .price-amount {
  color: #ffffff;
}

.price-period {
  font-size: 0.9rem;
  color: #8fa38e;
}

.pricing-card.featured .price-period {
  color: #d7bfdc;
}

.pricing-desc {
  font-size: 0.875rem;
  color: #556054;
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-card.featured .pricing-desc {
  color: #d7bfdc;
}

.pricing-divider {
  height: 1px;
  background: rgba(215, 191, 220, 0.3);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-divider {
  background: rgba(255, 255, 255, 0.15);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: #556054;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-check {
  width: 20px;
  height: 20px;
  background: #edf5e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card.featured .pricing-check {
  background: rgba(158, 194, 63, 0.25);
}

.pricing-check svg {
  width: 11px;
  height: 11px;
  color: #9ec23f;
}

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

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: 100px 0;
  background: #f5f6f5;
}

.testimonials .section-intro {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials .section-subtext {
  margin: 0 auto;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.testi-stars {
  display: flex;
  gap: 3px;
}

.testi-stars svg {
  width: 18px;
  height: 18px;
  color: #9ec23f;
  fill: #9ec23f;
}

.testi-quote {
  font-size: 1rem;
  color: #1a1f1a;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7bfdc, #81007f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1a1f1a;
}

.testi-role {
  font-size: 0.8125rem;
  color: #8fa38e;
}

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  padding: 90px 0;
  background: #81007f;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(158, 194, 63, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(215, 191, 220, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.cta-band p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  padding: 60px 0 32px;
  background: #1a1f1a;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand .nav-wordmark {
  color: #ffffff;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #8fa38e;
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: #8fa38e;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: #d7bfdc;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #556054;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.875rem;
  color: #556054;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #d7bfdc;
}

/* =========================================
   MODALS
   ========================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 31, 26, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 24px;
  padding: 44px;
  width: 100%;
  max-width: 480px;
  position: relative;
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #f5f6f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: #e8e8e8;
}

.modal-close svg {
  width: 16px;
  height: 16px;
  color: #556054;
}

.modal h2 {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal p.modal-sub {
  font-size: 0.9375rem;
  color: #556054;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1f1a;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d7bfdc;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #1a1f1a;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #81007f;
  box-shadow: 0 0 0 3px rgba(129, 0, 127, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
}

.form-error-msg {
  display: none;
  font-size: 0.8125rem;
  color: #e53e3e;
  margin-top: 4px;
}

.form-error-msg.visible {
  display: block;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: #edf5e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  color: #9ec23f;
}

.form-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.9375rem;
  color: #556054;
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 380px;
  background: #1a1f1a;
  color: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  font-size: 0.8125rem;
  color: #d7bfdc;
  line-height: 1.5;
  flex: 1;
}

.cookie-text a {
  color: #9ec23f;
  text-decoration: underline;
}

.cookie-dismiss {
  background: #9ec23f;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.cookie-dismiss:hover {
  background: #88a835;
}

/* =========================================
   PAGE STYLES (privacy / terms)
   ========================================= */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(160deg, #faf7fa 0%, #f5f6f5 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a1f1a;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  color: #8fa38e;
}

.page-content {
  padding: 72px 0 100px;
  max-width: 760px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1f1a;
  margin-top: 40px;
  margin-bottom: 12px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p,
.page-content li {
  font-size: 0.9375rem;
  color: #556054;
  line-height: 1.8;
  margin-bottom: 12px;
}

.page-content ul,
.page-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-content a {
  color: #81007f;
  text-decoration: underline;
}

/* =========================================
   RESPONSIVE — TABLET (768px–1023px)
   ========================================= */
@media (max-width: 1023px) {
  .nav-links {
    gap: 20px;
  }

  .nav-actions .btn:not(:last-child) {
    display: none;
  }

  .hiw-grid {
    gap: 16px;
  }

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

  .feat-card.span-2 {
    grid-column: span 2;
  }

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

  .pricing-card.featured {
    transform: none;
    grid-column: span 2;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* =========================================
   RESPONSIVE — MOBILE (up to 767px)
   ========================================= */
@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 110px 0 72px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-fine-print {
    font-size: 0.75rem;
  }

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

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

  .feat-card.span-2 {
    grid-column: span 1;
  }

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

  .pricing-card.featured {
    transform: none;
    box-shadow: 0 8px 30px rgba(129, 0, 127, 0.25);
  }

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

  .cta-band {
    padding: 64px 0;
  }

  .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .modal {
    padding: 32px 24px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 12px;
  }
}

/* =========================================
   RESPONSIVE — SMALL MOBILE (up to 430px)
   ========================================= */
@media (max-width: 430px) {
  .container {
    padding: 0 16px;
  }

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

  .how-it-works,
  .features,
  .pricing,
  .testimonials {
    padding: 72px 0;
  }

  .hiw-card,
  .feat-card,
  .pricing-card,
  .testi-card {
    padding: 24px 20px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .modal {
    padding: 28px 20px;
    border-radius: 20px;
  }
}
