/* ──────────────────────────────────────────────────────────────
   MONTRAQ — MAIN STYLESHEET
   Palette: warm ivory + deep moss green + gold accent.
   Editorial, trustworthy, and approachable.
   ────────────────────────────────────────────────────────────── */

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
  --primary:       #3F5D42;
  --primary-light: #547A57;
  --primary-dark:  #2E4530;
  --primary-50:    #EFF5EF;
  --primary-100:   #D6E6D7;
  --primary-200:   #B0CDB2;
  --accent:        #C99A3E;
  --accent-dark:   #A87E2D;
  --accent-50:     #FBF5E8;
  --amber:         #C99A3E;
  --amber-50:      #FBF5E8;
  --bg:            #FAF6EF;
  --surface:       #FFFFFF;
  --text:          #1E1B16;
  --text-secondary:#5C5647;
  --text-muted:    #8A8577;
  --border:        #E4DFD5;
  --border-light:  #F0ECE4;
  --error:         #C44536;

  --shadow-sm:  0 1px 2px rgba(30,27,22,0.05);
  --shadow:     0 4px 6px -1px rgba(30,27,22,0.07), 0 2px 4px -2px rgba(30,27,22,0.05);
  --shadow-lg:  0 10px 15px -3px rgba(30,27,22,0.08), 0 4px 6px -4px rgba(30,27,22,0.04);
  --shadow-xl:  0 20px 25px -5px rgba(30,27,22,0.08), 0 8px 10px -6px rgba(30,27,22,0.04);

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --nav-height: 72px;
  --max-width:  1200px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; }

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.25s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(63, 93, 66, 0.3);
}
.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 4px 16px rgba(63, 93, 66, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border: 1.5px solid var(--primary-200);
}
.btn-secondary:hover {
  background: var(--primary-50);
  border-color: var(--primary-light);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(201, 154, 62, 0.3);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.3s ease-out, box-shadow 0.3s ease-out;
}

/* Glass-morphism effect when the user scrolls down */
.main-nav.scrolled {
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(30,27,22,0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.logo span {
  color: var(--accent);
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease-out;
}
.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease-out;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--surface);
  padding: 96px 32px 32px;
  transition: right 0.3s ease-out;
  z-index: 999;
  box-shadow: -4px 0 20px rgba(30,27,22,0.1);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 8px; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu .btn {
  display: inline-block;
  width: auto;
  margin-top: 20px;
  padding: 10px 28px;
  font-size: 0.9375rem;
}

/* Overlay behind mobile menu */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,27,22,0.3);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.menu-overlay.open { opacity: 1; }

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .menu-overlay { display: block; }
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 100px;
  overflow: hidden;
  background: linear-gradient(170deg, var(--primary-50) 0%, var(--bg) 50%, var(--accent-50) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { max-width: 540px; }

.hero-content h1 {
  margin-bottom: 20px;
}
.hero-content h1 .highlight {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 520px;
}

/* Ambient floating shapes — calm, slow, premium */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}
.hero-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  top: -60px;
  right: -80px;
  animation: float-1 18s ease-in-out infinite;
}
.hero-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  bottom: -40px;
  left: -60px;
  animation: float-2 22s ease-in-out infinite;
}
.hero-shape-3 {
  width: 120px;
  height: 120px;
  background: var(--accent);
  top: 40%;
  right: 10%;
  animation: float-3 16s ease-in-out infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, 20px) scale(1.05); }
  66%      { transform: translate(-15px, -10px) scale(0.97); }
}
@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(-20px, -25px) scale(1.06); }
  70%      { transform: translate(15px, 10px) scale(0.95); }
}
@keyframes float-3 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-12px, 18px); }
}

@media (max-width: 768px) {
  .hero { padding: calc(var(--nav-height) + 48px) 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-image img { max-width: 400px; }
}

/* ══════════════════════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════════════════════ */
.trust-strip{
    padding:70px 0;
    text-align:center;
}

.trust-title{
    font-size:18px;
    color:#6c6457;
    margin-bottom:40px;
    letter-spacing:.3px;
}

.trust-logos{
    display:flex;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
}

.trust-item{
    width:170px;
    height:72px;
    background:#f7f5ef;
    border:1px solid #e7dfd2;
    border-radius:14px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    transition:.25s ease;
}

.trust-item:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.trust-item span{
    font-size:22px;
    margin-bottom:8px;
}

.trust-item small{
    font-size:14px;
    font-weight:600;
    color:#2F4F3A;
}

/* ══════════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════════ */
.features {
  padding: 100px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}
.features-header .section-subtitle {
  margin: 12px auto 0;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.feature-icon-purple { background: var(--primary-100); color: var(--primary); }
.feature-icon-green  { background: var(--primary-50);  color: var(--primary-light); }
.feature-icon-amber  { background: var(--accent-50);   color: var(--accent); }

.feature-card h3 { margin-bottom: 10px; }
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.feature-card img {
  margin-top: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--primary-50);
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-header .section-subtitle {
  margin: 12px auto 0;
}

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

.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* The "Pro" tier gets a highlighted border */
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tier {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.pricing-price {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.pricing-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  padding: 6px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--primary-50);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233F5D42' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

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

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: left;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-top: 36px;
}
.testimonial-quote::before {
  content: '\201C';
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--primary-200);
  position: absolute;
  top: -8px;
  left: 0;
  line-height: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary-100);
  flex-shrink: 0;
}
.testimonial-info {
  display: flex;
  flex-direction: column;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
}
.testimonial-role {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

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

/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.faq {
  padding: 100px 0;
  background: var(--surface);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease-out;
}
.faq-question:hover {
  color: var(--primary);
}

/* Plus/minus icon */
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  border-radius: 1px;
  transition: transform 0.3s ease-out;
}
.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
}
.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════════ */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  color: #fff;
  margin-bottom: 16px;
}
.final-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .btn-accent {
  padding: 14px 36px;
  font-size: 1rem;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  padding: 64px 0 32px;
  background: var(--text);
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand .logo span {
  color: var(--accent);
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 0.875rem;
  transition: color 0.2s ease-out;
}
.footer-col a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease-out;
}
.footer-social a:hover {
  background: var(--primary-light);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8125rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   SCROLL-REVEAL ANIMATIONS
   Elements start invisible and 20px below their final position.
   They fade in and rise when they enter the viewport.
   ══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children — each card appears slightly after the previous one */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Respect reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-shape { animation: none; }
}

/* ── Dark Mode ──────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:            #1A1A1A;
  --surface:       #242424;
  --text:          #E8E4DC;
  --text-secondary:#A9A49A;
  --text-muted:    #7A7568;
  --border:        #3A3630;
  --border-light:  #2E2B26;
  --primary-50:    #1E2E1F;
  --primary-100:   #2A3F2B;
  --accent-50:     #2E2718;
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.2);
  --shadow:     0 4px 6px -1px rgba(0,0,0,0.3);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,0.3);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,0.3);
}
[data-theme="dark"] .nav { background: rgba(26,26,26,0.95); }
[data-theme="dark"] .feature-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .testimonial-card { background: var(--surface); }
[data-theme="dark"] .pricing-card.featured { background: var(--primary-dark); }
[data-theme="dark"] .hero { background: linear-gradient(135deg, #1A1A1A 0%, #242424 100%); }
[data-theme="dark"] .footer { background: #111; }
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: #2E2B26;
  border-color: var(--border);
  color: var(--text);
}
[data-theme="dark"] .btn-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
[data-theme="dark"] .btn-outline {
  border-color: var(--border);
  color: var(--text);
}
