/* ===================================================
   SmithBook — Daily Club Landing Page
   Standalone single-page LP optimized for conversion
   =================================================== */

/* Tokens live in /css/tokens.css — link it before this file. */

/* Base (*, html, body) lives in /css/shell.css — single source of truth. */

/* ===== UTILITIES ===== */
/* .container moved to /css/shell.css (universal width). */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #d4a924);
  color: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(230, 195, 66, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(230, 195, 66, 0.45); }
.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-big {
  padding: 18px 36px;
  font-size: 17px;
  font-weight: 800;
}

/* ===== STICKY NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.2s ease;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.nav-logo {
  width: 32px;
  height: 32px;
  font-size: 24px;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: var(--navy-deep);
  padding: 9px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ===== HERO ===== */
.hero {
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(230, 195, 66, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(168, 85, 247, 0.12), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 110px 0 60px; }
}
.hero-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid rgba(230, 195, 66, 0.3);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero-h1 em {
  background: linear-gradient(135deg, var(--accent), #f2e283);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 580px;
  line-height: 1.55;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-trust-stars { color: var(--accent); font-size: 14px; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mockup {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(230, 195, 66, 0.1);
  padding: 24px;
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-mockup-header {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.hero-mockup-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.hero-mockup-dot:first-child { background: #ff5f57; }
.hero-mockup-dot:nth-child(2) { background: #febc2e; }
.hero-mockup-dot:nth-child(3) { background: #28c840; }
.hero-mockup-content {
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
}
.mockup-day-label {
  background: var(--accent);
  color: var(--navy-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
}
.mockup-task-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}
.mockup-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.mockup-pill {
  background: rgba(255,255,255,0.06);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--text-muted);
}
.mockup-progress {
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
.mockup-progress-fill {
  background: linear-gradient(90deg, var(--accent), #f2e283);
  height: 100%;
  width: 23%;
  border-radius: 999px;
}
.mockup-progress-text { font-size: 12px; color: var(--text-muted); }

/* ===== SECTION HEADERS ===== */
.section { padding: 80px 0; position: relative; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 50px;
  line-height: 1.6;
}
.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

/* ===== PROBLEM (PAS) ===== */
.problem-section {
  background: linear-gradient(180deg, transparent, rgba(255, 107, 157, 0.05));
}
.problem-stat {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--social), #ff8db5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 40px 0 24px;
}
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 24px;
  text-align: left;
}
.quote-stars { color: var(--accent); font-size: 16px; margin-bottom: 10px; }
.quote-text { color: var(--text); font-size: 16px; font-style: italic; line-height: 1.5; margin: 0 0 12px 0; }
.quote-author { color: var(--text-muted); font-size: 13px; font-weight: 600; }

.solution-skills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.skill-item {
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
}
.skill-item strong { color: var(--text); }
.skill-item-more {
  background: rgba(230, 195, 66, 0.08);
  border-left: 3px solid var(--accent);
  color: var(--text);
  text-align: center;
  font-style: italic;
}
.skill-item-more strong { color: var(--accent); }

.hero-secondary-line {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-secondary-line a {
  color: var(--accent);
  text-decoration: underline;
}

.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: rgba(0, 178, 79, 0.08);
  border: 1px solid rgba(0, 178, 79, 0.4);
  border-radius: 100px;
  margin: 16px auto 32px;
  font-size: 14px;
  color: var(--text);
  flex-wrap: wrap;
  justify-content: center;
}
.trustpilot-stars { color: #00b24f; font-size: 16px; letter-spacing: 1px; }
.trustpilot-badge a { color: var(--accent); font-weight: 600; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
}
.problem-card-emoji { font-size: 32px; margin-bottom: 12px; }
.problem-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.problem-card p { color: var(--text-muted); font-size: 14px; }

/* ===== SOLUTION REVEAL — 4 STEPS ===== */
.solution-section { background: var(--bg); }
.solution-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}
@media (max-width: 880px) { .solution-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .solution-steps { grid-template-columns: 1fr; } }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 22px;
  position: relative;
  transition: all 0.25s;
}
.step-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.step-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1;
}
.step-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 13px; line-height: 1.5; }

/* ===== FEATURE SHOWCASE — 6 CARDS ===== */
.features-section {
  background: linear-gradient(180deg, transparent, rgba(230, 195, 66, 0.03));
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
@media (max-width: 880px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 24px;
  transition: all 0.25s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(230, 195, 66, 0.12); }
.feature-emoji { font-size: 32px; margin-bottom: 12px; }
.feature-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 13px; line-height: 1.55; }

/* ===== COMPARISON — RICH FEATURE BOXES ===== */
.comparison-section { background: var(--bg); }
.features-rich-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 18px;
  margin-top: 48px;
  text-align: left;
}
.feature-rich-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-rich-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  border-left-color: var(--accent-hover);
}
.feature-rich-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.feature-rich-icon { font-size: 28px; }
.feature-rich-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  font-family: var(--font-display);
}
.feature-rich-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.compare-table-wrap {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.compare-table-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 24px;
  color: var(--text);
}
@media (max-width: 720px) {
  .features-rich-grid { grid-template-columns: 1fr; }
}

/* ===== COMPARISON TABLE (legacy) ===== */
.comparison-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 40px;
}
.comparison-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row.header {
  background: rgba(255,255,255,0.04);
  font-weight: 800;
  font-family: var(--font-display);
}
.comparison-row.header .comparison-cell-smithbook { color: var(--accent); }
.comparison-cell {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.comparison-cell:first-child {
  justify-content: flex-start;
  font-weight: 600;
}
.comparison-cell-smithbook {
  background: rgba(230, 195, 66, 0.06);
}
.check-yes { color: var(--success); font-size: 18px; }
.check-no { color: var(--text-muted); opacity: 0.4; font-size: 18px; }

/* ===== PRICING ===== */
.pricing-section {
  background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.04));
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
  align-items: stretch;
}
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .pricing-grid-2 { grid-template-columns: 1fr; max-width: 460px; }
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s;
}
.pricing-card:hover { border-color: var(--accent); }
.pricing-card-recommended {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, rgba(230, 195, 66, 0.08), rgba(230, 195, 66, 0.02));
  box-shadow: 0 24px 64px rgba(230, 195, 66, 0.18);
  transform: scale(1.03);
}
@media (max-width: 880px) { .pricing-card-recommended { transform: none; } }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #d4a924);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(230, 195, 66, 0.4);
}
.pricing-tier-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.pricing-tier-tagline {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 22px;
  min-height: 36px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--text);
}
.pricing-price small { font-size: 16px; font-weight: 600; color: var(--text-muted); margin-left: 4px; }
.pricing-price-note { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; min-height: 18px; }
.pricing-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  flex: 1;
}
.pricing-features li {
  padding: 9px 0;
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
  flex-shrink: 0;
}
.pricing-card-recommended .pricing-features li:before { color: var(--accent); }
.pricing-cta { width: 100%; }
.pricing-guarantee {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
}
.pricing-guarantee strong { color: var(--text); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
@media (max-width: 880px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  position: relative;
}
.testimonial-stars { color: var(--accent); font-size: 14px; margin-bottom: 12px; }
.testimonial-quote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #d4a924);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}
.testimonial-meta {
  font-size: 12px;
  color: var(--text-muted);
}
.country-flags-ribbon {
  text-align: center;
  margin-top: 50px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border);
}
.country-flags-ribbon-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.country-flags-ribbon-flags {
  font-size: 28px;
  letter-spacing: 6px;
}

/* ===== FAQ ===== */
.faq-section { background: linear-gradient(180deg, transparent, rgba(74, 158, 255, 0.04)); }
.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover { border-color: rgba(230, 195, 66, 0.4); }
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  user-select: none;
  font-family: var(--font-display);
}
.faq-question::after {
  content: "+";
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item.faq-open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}
.faq-item.faq-open .faq-answer {
  padding: 0 24px 22px;
  max-height: 500px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #d4a924 50%, #b08c1c 100%);
  color: var(--navy-deep);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.25), transparent 60%);
  pointer-events: none;
}
.final-cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.final-cta-h {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--navy-deep);
}
.final-cta-sub {
  font-size: 17px;
  margin-bottom: 32px;
  opacity: 0.85;
}
.final-cta-btn {
  background: var(--navy-deep);
  color: var(--accent);
  padding: 22px 48px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s;
  box-shadow: 0 12px 36px rgba(20, 23, 42, 0.4);
}
.final-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(20, 23, 42, 0.55); }
.final-cta-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 13px;
}

/* ===== FOOTER (minimal) ===== */
.footer-minimal {
  background: var(--navy-deep);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-minimal .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-min-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
}
.footer-min-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
}
.footer-min-links a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 10px;
  transition: color 0.2s ease;
}
.footer-min-links a:hover { color: var(--accent); }
.footer-min-links .dot {
  color: var(--text-muted);
  opacity: 0.4;
  font-size: 11px;
}
.footer-min-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.7;
  letter-spacing: 0.3px;
}

/* ===== FOOTER (legacy) ===== */
.footer {
  background: var(--navy-deep);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand-block {
  max-width: 320px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}
.footer-brand-tag {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}
.footer-col-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
  color: var(--text);
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== EMAIL CAPTURE MODAL ===== */
.email-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.email-modal-overlay.active { display: flex; }
.email-modal {
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.email-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
}
.email-modal-close:hover { color: var(--text); }
.email-modal-emoji { font-size: 56px; text-align: center; margin-bottom: 16px; }
.email-modal-h {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}
.email-modal-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 26px;
  line-height: 1.55;
}
.email-modal-form { display: flex; flex-direction: column; gap: 12px; }
.email-modal-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(20, 23, 42, 0.5);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-primary);
  outline: none;
  transition: border-color 0.2s;
}
.email-modal-input:focus { border-color: var(--accent); }
.email-modal-trust {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}
.email-modal-whats-note {
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(19, 198, 44, 0.08);
  border: 1px solid rgba(19, 198, 44, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: left;
  line-height: 1.5;
  margin-top: -4px;
}
.email-modal-whats-note strong { color: var(--success); }

.phone-input-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.phone-country-select {
  flex-shrink: 0;
  width: 110px;
  padding: 14px 10px;
  background: rgba(20, 23, 42, 0.5);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-primary);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23a8b0c4' d='M2 4l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  transition: border-color 0.2s;
}
.phone-country-select:focus { border-color: var(--accent); }
.phone-country-select option {
  background: var(--bg-card-solid);
  color: var(--text);
  padding: 8px;
}
.phone-number-input {
  flex: 1;
  margin: 0;
}
@media (max-width: 480px) {
  .phone-input-row { flex-direction: column; gap: 8px; }
  .phone-country-select { width: 100%; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Scroll-trigger gradient on nav when scrolled */
.nav.scrolled {
  padding-top: 6px;
  padding-bottom: 6px;
  background: rgba(20, 23, 42, 0.95);
}

/* =====================================================================
   Done-for-you services CTA section (upsell discovery from landing)
   ===================================================================== */
.services-cta-section {
  padding-top: 32px;
}
.services-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 32px auto 0;
}
@media (max-width: 720px) {
  .services-cta-grid { grid-template-columns: 1fr; max-width: 460px; }
}
.services-cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: var(--bg-card-solid, #14171f);
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}
.services-cta-card:hover {
  border-color: var(--accent, #ff6a3d);
  transform: translateY(-2px);
}
.services-cta-card h3 {
  margin: 0;
  font-family: var(--font-display, system-ui);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.services-cta-card p {
  margin: 0;
  color: var(--text-muted, #b4b8c2);
  line-height: 1.5;
  font-size: 15px;
}
.services-cta-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #ff6a3d);
  border: 1px solid rgba(230, 195, 66, 0.35);
  padding: 4px 10px;
  border-radius: 100px;
}
.services-cta-foot {
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted, #b4b8c2);
}
.services-cta-card:hover .services-cta-foot { color: var(--accent, #ff6a3d); }
.services-cta-card-premium {
  border-color: rgba(230, 195, 66, 0.35);
  background:
    linear-gradient(180deg, rgba(230, 195, 66, 0.06), rgba(230, 195, 66, 0.0)),
    var(--bg-card-solid, #14171f);
}
