/* ===== Untapped FS — Main Stylesheet ===== */
/* Walcott Marketing & Investments LLC */
/* Design: Dark navy + forest green + orange accent */

:root {
  /* Colors */
  --primary: #1A3A5C;
  --primary-dark: #0F2440;
  --primary-light: #2A5A8C;
  --secondary: #2E8B57;
  --secondary-light: #3DAF6E;
  --accent: #F57C00;
  --accent-light: #FF9A33;
  --bg: #F8F9FA;
  --bg-dark: #1A1A2E;
  --card: #FFFFFF;
  --text: #1A1A2E;
  --text-light: #6C757D;
  --text-white: #F8F9FA;
  --border: #E0E4E8;
  --success: #28A745;
  --danger: #DC3545;
  --warning: #FFC107;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  /* Transitions */
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); margin-bottom: var(--space-lg); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.2rem; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-md); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 14px rgba(245, 124, 0, 0.35);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.45);
  color: white;
}

.btn-secondary {
  background: var(--primary);
  color: white;
}
.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 58, 92, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar .logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.navbar .logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: white; }

.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-light) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.5rem 0; }
  .nav-cta { text-align: center; }
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: white;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(46, 139, 87, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(46, 139, 87, 0.2);
  color: var(--secondary-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(46, 139, 87, 0.3);
}

.hero h1 {
  color: white;
  margin-bottom: var(--space-md);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.hero-trust span {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.hero-trust strong { color: white; }

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 380px;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: var(--space-lg) var(--space-md) var(--space-md);
  color: white;
}

.hero-img-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.hero-img-badge span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .hero-visual { 
    display: flex; 
    margin-top: var(--space-lg);
  }
  .hero-img { height: 300px; }
  .hero-image-card { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-img { height: 260px; }
}

/* Score Card (used on results page) */
.score-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 380px;
}

.score-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.score-card-header span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.score-number {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.score-number .before {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--danger);
}

.score-number .arrow {
  font-size: 1.5rem;
  color: var(--success);
  margin: 0 var(--space-md);
}

.score-number .after {
  font-size: 3rem;
  font-weight: 700;
  color: var(--success);
}

.score-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--danger), var(--warning), var(--success));
  border-radius: 4px;
  width: 72%;
  transition: width 1s ease;
}

.score-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
}

.score-items-removed {
  display: flex;
  justify-content: space-between;
  background: var(--bg);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  margin-top: var(--space-md);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p { margin: 0 auto var(--space-lg); }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
}

/* ===== Sections ===== */
.section {
  padding: var(--space-2xl) 0;
}

.section-alt {
  background: white;
}

.section-dark {
  background: var(--bg-dark);
  color: white;
}
.section-dark h2 { color: white; }

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ===== How It Works ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

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

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto var(--space-md);
}

.step-card h3 { margin-bottom: var(--space-sm); }

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steps-connector {
  display: none;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ===== Problem/Solution Grid ===== */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.issue-card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.issue-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-light);
}

.issue-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.issue-card h4 {
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}

.issue-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .issues-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .issues-grid { grid-template-columns: 1fr; }
}

/* ===== Pricing Preview ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  text-align: center;
}

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

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.pricing-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features .check { color: var(--success); font-weight: 700; }
.pricing-features .cross { color: var(--danger); font-weight: 700; }

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

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

/* ===== Results / Social Proof ===== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.result-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.result-card .before-after {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.result-card .before-after .before-num { color: var(--danger); }
.result-card .before-after .after-num { color: var(--success); }
.result-card .before-after .arrow { color: var(--text-light); margin: 0 var(--space-sm); }

.result-card .details {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.result-card .stars { color: var(--warning); font-size: 1.1rem; }

@media (max-width: 768px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* ===== Business Funding Tease ===== */
.funding-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 768px) {
  .funding-split { grid-template-columns: 1fr; }
}

.funding-split p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.funding-visual {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  color: white;
  text-align: center;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.funding-visual .icon { font-size: 3rem; margin-bottom: var(--space-md); }
.funding-visual .stat {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .funding-split { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  background: white;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { background: var(--bg); }

.faq-question .icon {
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--primary);
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ===== Final CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  text-align: center;
  padding: var(--space-2xl) 0;
}

.cta-section h2 { color: white; }
.cta-section p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto var(--space-lg);
}

.cta-section .btn-primary {
  font-size: 1.15rem;
  padding: 1.1rem 2.5rem;
}

.fine-print {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-md);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  margin-bottom: var(--space-sm);
  display: block;
}
.footer-brand .logo span { color: var(--accent); }

.footer-brand p { font-size: 0.9rem; margin-bottom: var(--space-md); }

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  transition: var(--transition);
}
.footer-social a:hover { color: white; }

.footer h4 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.footer-links li { margin-bottom: var(--space-sm); }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.footer-legal a:hover { color: white; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== Page Header (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 120px 0 60px;
  text-align: center;
}

.page-header h1 { color: white; margin-bottom: var(--space-sm); }
.page-header p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Form Styles ===== */
.form-group { margin-bottom: var(--space-md); }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #B0B8C4;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

@media (max-width: 480px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.checkbox-label:hover {
  border-color: var(--primary-light);
  background: rgba(26, 58, 92, 0.03);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 2px solid #B0B8C4;
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}

/* ===== Features Checklist ===== */
.features-list {
  max-width: 600px;
  margin: 0 auto;
}

.features-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.features-list .check-icon {
  color: var(--success);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== Comparison Table ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th {
  background: var(--primary);
  color: white;
  padding: var(--space-md);
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg); }

/* ===== One-Time Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-light);
}

.service-card h4 { margin-bottom: var(--space-xs); }
.service-card .price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.service-card p { font-size: 0.85rem; color: var(--text-light); }

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ===== Responsive Review Grid ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ===== Email Popup ===== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  backdrop-filter: blur(4px);
}
.popup-overlay.active {
  display: flex;
}
.popup-modal {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 460px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  animation: popupIn 0.4s ease;
}
@keyframes popupIn {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: var(--transition);
}
.popup-close:hover {
  color: white;
}
.popup-discount-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  line-height: 1;
  letter-spacing: -1px;
}
.popup-modal h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}
.popup-modal p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.popup-form input[type="email"] {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(255,255,255,0.08);
  color: white;
  text-align: center;
  transition: var(--transition);
}
.popup-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.35);
}
.popup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}
.popup-form button {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
}
.popup-form button:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}
.popup-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.popup-footer {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  margin-top: var(--space-md);
}
.popup-success {
  display: none;
  padding: var(--space-md) 0;
}
.popup-success.show {
  display: block;
}
.popup-success .emoji {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}
.popup-success h4 {
  color: white;
  margin-bottom: var(--space-xs);
}
.popup-success p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* ===== Discount Banner ===== */
.discount-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #E65100 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  color: white;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.discount-banner .badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.discount-banner h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: var(--space-xs);
}
.discount-banner .code {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: var(--space-sm) 0;
  border: 1px dashed rgba(255,255,255,0.3);
}
.discount-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}
.discount-banner .btn {
  background: white;
  color: var(--primary-dark);
  font-weight: 700;
}
.discount-banner .btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* ===== Onboarding Section ===== */
.onboarding-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.onboarding-step {
  text-align: center;
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.onboarding-step .step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto var(--space-md);
}
.onboarding-step h5 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--text);
}
.onboarding-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

