/* ===== VARIABLES ===== */
:root {
  --indigo: #1E1B4B;
  --purple: #7C3AED;
  --purple-mid: #A78BFA;
  --purple-light: #EDE9FE;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --text: #111827;
  --text-muted: #6B7280;
  --bg: #FFFFFF;
  --bg-alt: #F9FAFB;
  --border: #E5E7EB;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-top: 64px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 22px;
}
.btn--orange {
  background: var(--orange);
  color: #fff;
}
.btn--orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}
.btn--outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn--outline:hover {
  background: var(--purple);
  color: #fff;
}
.btn--lg { font-size: 1rem; padding: 14px 28px; }
.btn--sm { font-size: 0.85rem; padding: 8px 16px; }
.btn--full { width: 100%; }

/* ===== TICK ICON ===== */
.tick {
  color: var(--orange);
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
}
.icon {
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 8px;
}
.icon--bad { color: #EF4444; }
.icon--good { color: #6EE7B7; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav--scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav__logo span { color: var(--orange); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links > a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links > a:not(.btn):hover { color: var(--text); }
.nav__mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}
.nav__mobile-about {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.nav__mobile-about:hover { color: var(--text); }
.nav__mobile-cta { white-space: nowrap; font-size: 0.78rem !important; padding: 8px 13px !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__burger.burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.burger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1E1B4B 0%, #4C1D95 45%, #7C3AED 100%);
  padding: 100px 0 96px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(167, 139, 250, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 800px; margin: 0 auto; }
.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero__headline span { color: var(--orange); }
.hero__sub {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.hero__sub strong { color: #fff; opacity: 1; }
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__trust {
  text-align: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.13);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  box-shadow: 0 0 32px rgba(110, 231, 183, 0.18);
}
.trust-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #6EE7B7;
  color: #064E3B;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ===== SECTION SHARED ===== */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple);
  margin-bottom: 12px;
}
.section__header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--indigo);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section__sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.step--accent {
  background: linear-gradient(145deg, var(--indigo) 0%, var(--purple) 100%);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.3);
}
.step__number {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--purple);
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.step--accent .step__number { color: rgba(255, 255, 255, 0.5); }
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step--accent h3 { color: #fff; }
.step p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }
.step--accent p { color: rgba(255, 255, 255, 0.75); }

/* ===== AUDIENCE GRID ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.audience-card {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
/* Blurred photo layer */
.audience-card::before {
  content: '';
  position: absolute;
  inset: -16px;
  background-size: cover;
  background-position: center;
  filter: blur(1px);
  z-index: 0;
  transition: transform 0.4s ease;
}
.audience-card:hover { transform: translateY(-5px); }
.audience-card:hover::before { transform: scale(1.07); }
/* Content sits above the blurred photo */
.audience-card > * { position: relative; z-index: 1; }
.audience-card__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.audience-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 8px;
}
.audience-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 1 — Cafés & Restaurants */
.audience-grid .audience-card:nth-child(1) { border-color: #FCD99A; }
.audience-grid .audience-card:nth-child(1)::before {
  background-image:
    linear-gradient(140deg, rgba(254,243,226,0.82), rgba(253,232,192,0.82)),
    url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=700&q=60&fit=crop&auto=format');
}
.audience-grid .audience-card:nth-child(1):hover { border-color: #F59E0B; box-shadow: 0 10px 28px rgba(245,158,11,0.2); }

/* 2 — Salons & Barbers */
.audience-grid .audience-card:nth-child(2) { border-color: #F9C8E8; }
.audience-grid .audience-card:nth-child(2)::before {
  background-image:
    linear-gradient(140deg, rgba(253,242,248,0.82), rgba(252,231,243,0.82)),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=700&q=60&fit=crop&auto=format');
}
.audience-grid .audience-card:nth-child(2):hover { border-color: #EC4899; box-shadow: 0 10px 28px rgba(236,72,153,0.2); }

/* 3 — Tradespeople */
.audience-grid .audience-card:nth-child(3) { border-color: #BFDBFE; }
.audience-grid .audience-card:nth-child(3)::before {
  background-image:
    linear-gradient(140deg, rgba(239,246,255,0.82), rgba(219,234,254,0.82)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=700&q=60&fit=crop&auto=format');
}
.audience-grid .audience-card:nth-child(3):hover { border-color: #3B82F6; box-shadow: 0 10px 28px rgba(59,130,246,0.2); }

/* 4 — Photographers */
.audience-grid .audience-card:nth-child(4) { border-color: #374151; }
.audience-grid .audience-card:nth-child(4)::before {
  background-image:
    linear-gradient(140deg, rgba(31,41,55,0.84), rgba(17,24,39,0.84)),
    url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?w=700&q=60&fit=crop&auto=format');
}
.audience-grid .audience-card:nth-child(4) h3 { color: #F9FAFB; }
.audience-grid .audience-card:nth-child(4) p  { color: rgba(255,255,255,0.65); }
.audience-grid .audience-card:nth-child(4):hover { border-color: #6B7280; box-shadow: 0 10px 28px rgba(0,0,0,0.35); }

/* 5 — Local Shops */
.audience-grid .audience-card:nth-child(5) { border-color: #BBF7D0; }
.audience-grid .audience-card:nth-child(5)::before {
  background-image:
    linear-gradient(140deg, rgba(240,253,244,0.82), rgba(220,252,231,0.82)),
    url('https://images.unsplash.com/photo-1472851294608-062f824d29cc?w=700&q=60&fit=crop&auto=format');
}
.audience-grid .audience-card:nth-child(5):hover { border-color: #22C55E; box-shadow: 0 10px 28px rgba(34,197,94,0.2); }

/* 6 — Any Local Business */
.audience-grid .audience-card:nth-child(6) { border-color: #DDD6FE; }
.audience-grid .audience-card:nth-child(6)::before {
  background-image:
    linear-gradient(140deg, rgba(245,243,255,0.82), rgba(237,233,254,0.82)),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=700&q=60&fit=crop&auto=format');
}
.audience-grid .audience-card:nth-child(6):hover { border-color: var(--purple); box-shadow: 0 10px 28px rgba(124,58,237,0.2); }

/* ===== COMPARE ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.compare__col {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.compare__col--them {
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.compare__col--us {
  background: linear-gradient(145deg, var(--indigo) 0%, var(--purple) 100%);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.3);
}
.compare__col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.compare__col--them h3 { color: var(--text-muted); }
.compare__col--us h3 { color: rgba(255, 255, 255, 0.6); }
.compare__col ul { display: flex; flex-direction: column; gap: 14px; }
.compare__col li {
  font-size: 0.93rem;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.45;
}
.compare__col--them li { color: var(--text-muted); }
.compare__col--us li { color: rgba(255, 255, 255, 0.9); }
.compare__col--us .icon--good { color: #6EE7B7; }

/* ===== PRICING TIERS ===== */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-tier {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.pricing-tier:not(.pricing-tier--featured):hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(79, 70, 229, 0.13);
  border-color: var(--purple-mid);
}
.pricing-tier--featured {
  background: linear-gradient(160deg, var(--indigo) 0%, var(--purple) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-tier--featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 28px 72px rgba(124, 58, 237, 0.35);
}
.pricing-tier__badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: -8px;
}
.pricing-tier__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: inherit;
}
.pricing-tier--featured .pricing-tier__name { color: rgba(255,255,255,0.75); }
.pricing-tier__price {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}
.pricing-tier--featured .currency,
.pricing-tier--featured .period { color: #fff; }
.pricing-tier__setup {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--purple-light);
  color: var(--purple);
  border-radius: 100px;
  padding: 5px 14px;
  align-self: flex-start;
}
.pricing-tier--featured .pricing-tier__setup {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.pricing-tier__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-tier__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.pricing-tier--featured .pricing-tier__features li { color: rgba(255,255,255,0.9); }
.pricing-tier--featured .tick { color: #fff; }
.pricing-tier__note {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}
.pricing-tier--featured .pricing-tier__note { color: rgba(255,255,255,0.5); }
.pricing-tier .btn { width: 100%; }
.pricing-tier .btn:active { transform: scale(0.97); }

/* ===== PRICING (legacy single card) ===== */
.pricing-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  overflow: hidden;
  max-width: 840px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.pricing-card__left {
  background: linear-gradient(145deg, var(--indigo) 0%, var(--purple) 100%);
  color: #fff;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 270px;
}
.pricing-card__price {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}
.currency {
  font-size: 1.8rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
  letter-spacing: 0;
}
.period {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.65;
  display: block;
  letter-spacing: 0;
  margin-top: 6px;
}
.pricing-card__setup {
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
}
.pricing-card__note {
  font-size: 0.78rem;
  opacity: 0.6;
  line-height: 1.5;
}
.pricing-card__right {
  padding: 52px 44px;
  flex: 1;
  display: flex;
  align-items: center;
}
.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.pricing-includes li {
  color: var(--text);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}

/* ===== PORTFOLIO ===== */
.portfolio-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.portfolio-card__image {
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.portfolio-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  min-height: 360px;
}
.browser-mockup {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 1px solid #E5E7EB;
}
.browser-bar {
  background: #F3F4F6;
  border-bottom: 1px solid #E5E7EB;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.browser-dots { display: flex; gap: 5px; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot--red { background: #FC605B; }
.dot--yellow { background: #FDBC40; }
.dot--green { background: #34C84A; }
.browser-url {
  flex: 1;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: monospace;
}
.browser-content { padding: 0; }
.site-preview__nav {
  background: #2D6A4F;
  padding: 8px 16px;
  display: flex;
  gap: 16px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.site-preview__hero {
  background: linear-gradient(160deg, #1B4332, #2D6A4F);
  padding: 32px 20px;
  text-align: center;
  color: #fff;
}
.site-preview__leaf { font-size: 2rem; margin-bottom: 8px; }
.site-preview__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.site-preview__type {
  font-size: 0.68rem;
  opacity: 0.75;
  margin-bottom: 16px;
}
.site-preview__btns { display: flex; gap: 8px; justify-content: center; }
.preview-btn {
  background: #40916C;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 5px;
}
.preview-btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.portfolio-card__info {
  padding: 48px 44px;
}
.portfolio-tag {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.portfolio-card__info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--indigo);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.portfolio-card__info > p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.portfolio-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 32px;
}
.portfolio-features li {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item--open { border-color: var(--purple-mid); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--purple);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-item--open .faq-q::after { transform: rotate(45deg); }
.faq-item--open .faq-q { color: var(--purple); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-item--open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ===== CTA / CONTACT SECTION ===== */
.cta-section { background: var(--bg); }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.cta-left .section__label { text-align: left; }
.cta-left h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-left > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 0.97rem;
}
.cta-reassurance {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--indigo);
}
.cta-reassurance > div {
  display: flex;
  align-items: center;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -4px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 72px 0 56px;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--indigo);
  letter-spacing: -1px;
  margin: 8px 0 12px;
}
.about-hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
}
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 72px;
  align-items: start;
}
.about-photo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 84px;
}
.about-photo__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--purple-light);
}
.about-photo__img svg,
.about-photo__img img {
  width: 100%;
  height: auto;
  display: block;
}
.about-photo__caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.about-photo__caption strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--indigo);
}
.about-photo__caption span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.about-content h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--indigo);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.about-lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.philosophy-quote blockquote {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--indigo);
  font-style: italic;
  border-left: 4px solid var(--purple);
  padding-left: 24px;
  margin-bottom: 16px;
}
.philosophy-quote cite {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: normal;
  padding-left: 24px;
}
.philosophy-text h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--indigo);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.philosophy-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-today {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-today__text h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--indigo);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.about-today__text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.about-value:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(79, 70, 229, 0.1);
}
.about-value__icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-value h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 4px;
}
.about-value p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.about-cta {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.about-cta h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--indigo);
  letter-spacing: -0.5px;
}
.about-cta p {
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { flex-direction: row; align-items: center; position: static; }
  .about-photo__img { width: 130px; flex-shrink: 0; }
  .about-photo__caption { text-align: left; }
  .about-philosophy { grid-template-columns: 1fr; gap: 40px; }
  .about-today { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .about-photo { flex-direction: column; }
  .about-photo__img { width: 160px; margin: 0 auto; }
  .about-photo__caption { text-align: center; }
}

/* ===== WHATSAPP WIDGET ===== */
@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wa-menu {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 240px;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  transform-origin: bottom right;
}
.wa-menu.wa-menu--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.wa-menu__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 4px;
}
.wa-menu__item {
  display: block;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  line-height: 1.4;
}
.wa-menu__item:hover {
  background: #dcfce7;
  transform: translateX(-2px);
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 13px 20px 13px 16px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
  animation: none;
}
.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .wa-widget { bottom: 20px; right: 20px; }
  .whatsapp-btn { padding: 14px; border-radius: 50%; }
  .whatsapp-btn__label { display: none; }
  .wa-menu { min-width: 210px; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== ACTIVE NAV LINK ===== */
.nav__link--active {
  color: var(--purple) !important;
  font-weight: 600;
}

/* ===== FORM SUCCESS ===== */
.form-success {
  text-align: center;
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.form-success h3 {
  font-size: 1.4rem;
  color: var(--indigo);
  margin: 0;
}
.form-success p {
  color: var(--text-muted);
  margin: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--indigo);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 36px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__logo {
  display: block;
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #fff;
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer__links a:hover { color: #fff; }
.footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  font-size: 0.8rem;
}

/* ===== TEMPLATES SECTION ===== */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.template-card {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
/* Blurred photo layer */
.template-card::before {
  content: '';
  position: absolute;
  inset: -16px;
  background-size: cover;
  background-position: center;
  filter: blur(1px);
  z-index: 0;
  transition: transform 0.4s ease;
}
.template-card:hover { transform: translateY(-4px); }
.template-card:hover::before { transform: scale(1.07); }
/* Content sits above blurred photo */
.template-card > * { position: relative; z-index: 1; }

/* 1 — Classic */
.templates-grid .template-card:nth-child(1) { border-color: #BFDBFE; }
.templates-grid .template-card:nth-child(1)::before {
  background-image:
    linear-gradient(140deg, rgba(239,246,255,0.85), rgba(219,234,254,0.85)),
    url('https://images.unsplash.com/photo-1497215842964-222b430dc094?w=700&q=60&fit=crop&auto=format');
}
.templates-grid .template-card:nth-child(1):hover { border-color: #3B82F6; box-shadow: 0 10px 28px rgba(59,130,246,0.2); }

/* 2 — Bold */
.templates-grid .template-card:nth-child(2) { border-color: #374151; }
.templates-grid .template-card:nth-child(2)::before {
  background-image:
    linear-gradient(140deg, rgba(17,24,39,0.86), rgba(31,41,55,0.86)),
    url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=700&q=60&fit=crop&auto=format');
}
.templates-grid .template-card:nth-child(2) .template-card__name { color: #F9FAFB; }
.templates-grid .template-card:nth-child(2) .template-card__info p,
.templates-grid .template-card:nth-child(2) .template-card__tag { color: rgba(255,255,255,0.65); }
.templates-grid .template-card:nth-child(2):hover { border-color: #6B7280; box-shadow: 0 10px 28px rgba(0,0,0,0.35); }

/* 3 — Warm */
.templates-grid .template-card:nth-child(3) { border-color: #FCD99A; }
.templates-grid .template-card:nth-child(3)::before {
  background-image:
    linear-gradient(140deg, rgba(254,243,226,0.85), rgba(253,232,192,0.85)),
    url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=700&q=60&fit=crop&auto=format');
}
.templates-grid .template-card:nth-child(3):hover { border-color: #F59E0B; box-shadow: 0 10px 28px rgba(245,158,11,0.2); }

/* 4 — Minimal */
.templates-grid .template-card:nth-child(4) { border-color: #DDD6FE; }
.templates-grid .template-card:nth-child(4)::before {
  background-image:
    linear-gradient(140deg, rgba(249,250,251,0.85), rgba(243,244,246,0.85)),
    url('https://images.unsplash.com/photo-1513519245088-0e12902e35ca?w=700&q=60&fit=crop&auto=format');
}
.templates-grid .template-card:nth-child(4):hover { border-color: var(--purple); box-shadow: 0 10px 28px rgba(124,58,237,0.2); }

/* 5 — Fresh */
.templates-grid .template-card:nth-child(5) { border-color: #BBF7D0; }
.templates-grid .template-card:nth-child(5)::before {
  background-image:
    linear-gradient(140deg, rgba(236,253,245,0.85), rgba(209,250,229,0.85)),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=700&q=60&fit=crop&auto=format');
}
.templates-grid .template-card:nth-child(5):hover { border-color: #22C55E; box-shadow: 0 10px 28px rgba(34,197,94,0.2); }

/* Mockup preview images */
.tmpl-preview { overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.tmpl-img { width: 100%; display: block; }

/* Template card info */
.template-card__info { padding: 14px 14px 16px; }
.template-card__palette { display: flex; gap: 5px; margin-bottom: 9px; }
.swatch {
  width: 14px; height: 14px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.template-card__badges {
  display: flex; align-items: center; gap: 7px; margin-bottom: 6px; flex-wrap: wrap;
}
.template-card__name { font-size: 0.88rem; font-weight: 700; color: var(--indigo); }
.template-card__popular {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  background: var(--orange); color: #fff; border-radius: 100px; padding: 2px 7px;
}
.template-card__info p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 7px; }
.template-card__tag { font-size: 0.7rem; font-weight: 600; color: var(--purple); line-height: 1.5; }
.templates-note {
  text-align: center; font-size: 0.88rem; color: var(--text-muted);
  max-width: 540px; margin: 0 auto; line-height: 1.65;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--indigo);
  padding: 64px 0;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.stats-grid .stat:nth-child(1),
.stats-grid .stat:nth-child(2) { transform: translateX(-80px); }
.stats-grid .stat:nth-child(3),
.stats-grid .stat:nth-child(4) { transform: translateX(80px); }

.stats-strip.stats-visible .stat         { opacity: 1; transform: translateX(0); }
.stats-strip.stats-visible .stat:nth-child(2) { transition-delay: 120ms; }
.stats-strip.stats-visible .stat:nth-child(3) { transition-delay: 120ms; }

@media (prefers-reduced-motion: reduce) {
  .stat { opacity: 1; transform: none; transition: none; }
}
.stat__value {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ===== WHAT'S INCLUDED ===== */
#included { padding: 56px 0; }
#included .section__header { margin-bottom: 40px; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.included-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.included-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(79,70,229,0.1);
  border-color: var(--purple-mid);
}
.included-item__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.included-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 6px;
}
.included-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .included-grid { grid-template-columns: 1fr; }
}

/* ===== PERSONAL GUARANTEE ===== */
.personal-guarantee {
  background: var(--indigo);
  color: #fff;
  padding: 22px 0;
  text-align: center;
}
.personal-guarantee p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 680px;
  margin: 0 auto;
}

/* ===== PRICING NOTE ===== */
.pricing-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 28px;
}
.pricing-note a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
}
.pricing-note a:hover { text-decoration: underline; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  left: 36px;
  font-size: 5rem;
  line-height: 1;
  color: var(--purple-light);
  font-family: Georgia, serif;
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  padding-left: 8px;
  border: none;
}
.testimonial-author__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--indigo);
}
.testimonial-author__role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.trustpilot-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}
.tp-stars {
  color: #00B67A;
  font-size: 1.3rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.tp-text {
  flex: 1;
  min-width: 200px;
}
.tp-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
}
.tp-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== TEMPLATE PICKER (form) ===== */
.label-note { font-weight: 400; color: var(--text-muted); font-size: 0.78rem; margin-left: 4px; }
.tpick-row { display: flex; gap: 8px; }
.tpick { cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; }
.tpick input { display: none; }
.tpick__card {
  width: 100%;
  height: 80px;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.tpick__card::before {
  content: '';
  position: absolute;
  inset: -10px;
  background-size: cover;
  background-position: center;
  filter: blur(1px);
  z-index: 0;
  transition: transform 0.3s ease;
}
.tpick:hover .tpick__card::before { transform: scale(1.07); }
.tpick input:checked + .tpick__card {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.tpick > span { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.tpick:has(input:checked) > span { color: var(--purple); }

/* SVG sits above the blurred photo */
.tpick__svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

/* Classic */
.tpick--classic::before {
  background-image:
    linear-gradient(140deg, rgba(239,246,255,0.85), rgba(219,234,254,0.85)),
    url('https://images.unsplash.com/photo-1497215842964-222b430dc094?w=400&q=60&fit=crop&auto=format');
}
/* Bold */
.tpick--bold::before {
  background-image:
    linear-gradient(140deg, rgba(17,24,39,0.86), rgba(31,41,55,0.86)),
    url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=400&q=60&fit=crop&auto=format');
}
/* Warm */
.tpick--warm::before {
  background-image:
    linear-gradient(140deg, rgba(254,243,226,0.85), rgba(253,232,192,0.85)),
    url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=400&q=60&fit=crop&auto=format');
}
/* Minimal */
.tpick--minimal::before {
  background-image:
    linear-gradient(140deg, rgba(249,250,251,0.85), rgba(243,244,246,0.85)),
    url('https://images.unsplash.com/photo-1513519245088-0e12902e35ca?w=400&q=60&fit=crop&auto=format');
}
/* Fresh */
.tpick--fresh::before {
  background-image:
    linear-gradient(140deg, rgba(236,253,245,0.85), rgba(209,250,229,0.85)),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=400&q=60&fit=crop&auto=format');
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .templates-grid { grid-template-columns: repeat(3, 1fr); }
  .compare { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-tiers { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-tier--featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto 48px; }
  .pricing-card { flex-direction: column; }
  .pricing-card__left {
    min-width: unset;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 36px 40px;
    gap: 16px 24px;
  }
  .pricing-card__right { padding: 36px 40px; }
  .portfolio-card { grid-template-columns: 1fr; }
  .portfolio-card__image { min-height: 280px; }
  .portfolio-card__info { padding: 36px; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  body { padding-top: 64px; }

  .nav__links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  .nav__links > a:not(.btn) {
    padding: 13px 24px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav__links .btn {
    margin: 12px 24px 0;
    justify-content: center;
  }
  .nav__links--open { display: flex; }
  .nav__mobile-actions { display: flex; }
  .nav__burger { display: flex; }

  .hero { padding: 80px 0 72px; }
  .hero__headline { letter-spacing: -1.5px; }

  .section { padding: 72px 0; }
  .section__header { margin-bottom: 48px; }

  .audience-grid { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
  .tpick-row { flex-wrap: wrap; }
  .tpick { min-width: calc(33% - 6px); }

  .compare { max-width: 100%; }
  .compare__col { padding: 32px 24px; }

  .pricing-card__left {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
  }
  .pricing-card__right { padding: 32px; }

  .portfolio-card__info { padding: 28px 24px; }

  .form-row { grid-template-columns: 1fr; }

  .footer__top { flex-direction: column; gap: 28px; }
  .footer__links { gap: 10px 20px; }
}
