/* ─────────────────────────────────────────────────────────────
   WishCreate — Professional Stylesheet
   ───────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #7c3aed;
  --primary-light: #a855f7;
  --primary-glow:  rgba(124,58,237,.15);
  --pink:          #ec4899;
  --dark:          #0a0a14;
  --dark-2:        #111827;
  --text:          #111827;
  --text-2:        #374151;
  --muted:         #6b7280;
  --border:        #e5e7eb;
  --bg:            #ffffff;
  --bg-soft:       #f9fafb;
  --radius-sm:     8px;
  --radius:        16px;
  --radius-lg:     24px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:        0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.06);
  --shadow-xl:     0 32px 80px rgba(124,58,237,.22);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY HELPERS ── */
.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 52px;
  max-width: 540px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,.35);
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(124,58,237,.4); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--text-2); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; box-shadow: var(--shadow); }
.btn-white:hover { background: #f5f3ff; transform: translateY(-1px); }
.btn-xl { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.09); }
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 36px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.4px;
  flex-shrink: 0;
}
.logo strong { color: var(--primary); }
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all .18s;
}
.nav-links a:hover { color: var(--primary); background: var(--primary-glow); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}
.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 {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: white;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.mobile-menu a:hover { background: var(--bg-soft); }
.mobile-menu .btn { margin-top: 8px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fdf4ff 0%, #f5f3ff 35%, #eff6ff 70%, #f0fdf4 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #c084fc 0%, transparent 70%);
  top: -200px; right: -200px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #818cf8 0%, transparent 70%);
  bottom: -150px; left: -150px;
}
.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 24px 80px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124,58,237,.1);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(124,58,237,.2);
  margin-bottom: 24px;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 60%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.hero-text > p {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; align-items: center; gap: 12px; }
.trust-avatars {
  display: flex;
  font-size: 1.5rem;
}
.trust-avatars span + span { margin-left: -6px; }
.hero-trust p { font-size: .85rem; color: var(--muted); }
.hero-trust strong { color: var(--text); }

/* Card Mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.card-mockup {
  width: 300px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #ff6b9d, #c026d3, #7c3aed);
  box-shadow: var(--shadow-xl);
}
.card-mockup-inner { padding: 32px 28px; text-align: center; color: white; }
.cm-confetti { font-size: 1.5rem; letter-spacing: 5px; margin-bottom: 12px; }
.cm-label { font-size: .7rem; text-transform: uppercase; letter-spacing: 3px; opacity: .65; font-weight: 700; margin-bottom: 10px; }
.cm-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; line-height: 1.25; margin-bottom: 16px; }
.cm-msg { font-size: .88rem; font-style: italic; opacity: .9; line-height: 1.65; margin-bottom: 18px; }
.cm-from { font-size: .82rem; font-weight: 600; opacity: .7; margin-bottom: 20px; }
.cm-hearts { display: flex; justify-content: center; gap: 10px; font-size: 1.3rem; }
.pulse-heart { animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.25)} }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
.floating { animation: float 4s ease-in-out infinite; }

.card-badge {
  position: absolute;
  background: white;
  border-radius: 100px;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  color: var(--text);
  animation: float 4s ease-in-out infinite;
}
.badge-1 { bottom: 60px; left: -20px; animation-delay: .5s; }
.badge-2 { top: 40px; right: -20px; animation-delay: 1s; }

.hero-scroll-hint {
  text-align: center;
  padding: 24px 0 32px;
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: bounce 1.4s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark-2);
  padding: 28px 0;
  border-top: 1px solid #1f2937;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  gap: 2px;
}
.stat-item strong {
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item span { font-size: .8rem; color: #9ca3af; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: #374151; }

/* ── OCCASIONS ── */
.occasions { padding: 100px 0; background: var(--bg); }
.occ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.occ-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.occ-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c, #7c3aed) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
}
.occ-tile:hover::before { opacity: .08; }
.occ-tile:hover {
  border-color: var(--c);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.occ-icon { font-size: 2.4rem; position: relative; z-index: 1; }
.occ-name { font-weight: 600; font-size: .88rem; color: var(--c); position: relative; z-index: 1; }

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 0;
  background: linear-gradient(160deg, #0a0a14 0%, #111827 50%, #0f172a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,.2) 0%, transparent 70%);
  pointer-events: none;
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-card {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: background .3s;
}
.step-card:hover { background: rgba(255,255,255,.07); }
.step-number {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #a78bfa;
  margin-bottom: 16px;
}
.step-icon-wrap { font-size: 2.2rem; margin-bottom: 14px; }
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.step-connector {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}
.connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(167,139,250,.5), rgba(244,114,182,.5));
  position: relative;
}
.connector-line::after {
  content: '›';
  position: absolute;
  right: -6px;
  top: -10px;
  font-size: 1.2rem;
  color: #a78bfa;
  line-height: 1;
}

/* ── WISH CREATOR ── */
.creator {
  padding: 100px 0;
  background: linear-gradient(160deg, #f5f3ff 0%, #fdf4ff 50%, #fff 100%);
}
.creator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.creator-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 16px; }
.form-row.two-col .field { flex: 1; }
.field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--text-2); letter-spacing: .2px; }

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,.1);
}
.field input::placeholder,
.field textarea::placeholder { color: #9ca3af; }

.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  padding: 13px 40px 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: white;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.select-wrap select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,.1); }
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--muted);
  pointer-events: none;
}

/* theme swatches */
.theme-picker { display: flex; gap: 10px; flex-wrap: wrap; }
.theme-swatch {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  outline: none;
  transition: all .2s;
  box-shadow: var(--shadow-sm);
}
.theme-swatch:hover { transform: scale(1.15); }
.theme-swatch.active {
  border-color: var(--text);
  box-shadow: 0 0 0 2px white, 0 0 0 4px var(--text);
  transform: scale(1.1);
}

/* wish card */
.preview-panel { position: sticky; top: 88px; }
.preview-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 12px; }
.wish-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.wish-card[data-theme="pink"]   { background: linear-gradient(145deg, #ff6b9d, #ff8fab, #ffc8dd); }
.wish-card[data-theme="purple"] { background: linear-gradient(145deg, #7209b7, #b5179e, #f72585); }
.wish-card[data-theme="blue"]   { background: linear-gradient(145deg, #4361ee, #4cc9f0); }
.wish-card[data-theme="gold"]   { background: linear-gradient(145deg, #f77f00, #ffd166); }
.wish-card[data-theme="green"]  { background: linear-gradient(145deg, #1b9aaa, #06d6a0); }
.wish-card[data-theme="dark"]   { background: linear-gradient(145deg, #1a1a2e, #3a0ca3, #16213e); }
.wc-confetti { text-align: center; font-size: 1.3rem; padding: 24px 20px 0; letter-spacing: 4px; }
.wc-body { flex: 1; padding: 16px 28px 28px; text-align: center; color: white; }
.wc-occ { font-size: .68rem; text-transform: uppercase; letter-spacing: 3px; font-weight: 700; opacity: .65; margin-bottom: 10px; }
.wc-to { font-size: 1rem; font-weight: 600; margin-bottom: 12px; }
.wc-msg { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.02rem; line-height: 1.72; opacity: .94; margin-bottom: 16px; }
.wc-from { font-size: .82rem; font-weight: 600; opacity: .68; }
.wc-footer-hearts { text-align: center; font-size: 1.2rem; padding: 12px 0 20px; letter-spacing: 6px; opacity: .7; }

.preview-actions { display: flex; gap: 12px; margin-top: 16px; }
.preview-actions .btn { flex: 1; font-size: .84rem; padding: 11px 12px; }
.copy-toast {
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: #059669;
  padding: 10px 0 0;
  min-height: 24px;
  opacity: 0;
  transition: opacity .3s;
  word-break: break-all;
}
.copy-toast.show { opacity: 1; }

/* ── GALLERY ── */
.gallery { padding: 100px 0; background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.g-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: white;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.g-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.15) 0%, transparent 50%);
}
.g-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,.22); }
.g-card[data-theme="pink"]   { background: linear-gradient(145deg, #ff6b9d, #ff8fab); }
.g-card[data-theme="gold"]   { background: linear-gradient(145deg, #f77f00, #ffd166); }
.g-card[data-theme="purple"] { background: linear-gradient(145deg, #7209b7, #b5179e); }
.g-card[data-theme="blue"]   { background: linear-gradient(145deg, #4361ee, #4cc9f0); }
.g-card[data-theme="green"]  { background: linear-gradient(145deg, #1b9aaa, #06d6a0); }
.g-card[data-theme="dark"]   { background: linear-gradient(145deg, #1a1a2e, #3a0ca3); }
.g-card > * { position: relative; z-index: 1; }
.g-emoji { font-size: 2.4rem; margin-bottom: 12px; }
.g-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.g-card p  { font-size: .85rem; font-style: italic; opacity: .88; line-height: 1.55; margin-bottom: 14px; }
.g-from    { font-size: .76rem; font-weight: 600; opacity: .6; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(160deg, #0a0a14 0%, #111827 100%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(236,72,153,.15));
  border: 1px solid rgba(167,139,250,.25);
  border-radius: 28px;
  padding: 52px 56px;
}
.cta-left { display: flex; align-items: center; gap: 24px; }
.cta-emoji { font-size: 3.5rem; }
.cta-inner h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: white; margin-bottom: 6px; line-height: 1.2; }
.cta-inner p  { font-size: .95rem; color: rgba(255,255,255,.55); }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid #1f2937;
  padding: 52px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand p { color: rgba(255,255,255,.38); font-size: .84rem; }
.footer-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.footer-nav a {
  text-decoration: none;
  color: rgba(255,255,255,.45);
  font-size: .84rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all .18s;
}
.footer-nav a:hover { color: white; background: rgba(255,255,255,.06); }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 20px 24px;
  text-align: center;
  color: rgba(255,255,255,.22);
  font-size: .76rem;
}

/* ── SCROLL ANIMATIONS ── */
[data-anim] { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
[data-anim="fade-left"] { transform: translateX(28px); }
[data-anim].visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-inner { gap: 0; }
  .stat-item { padding: 0 24px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 56px 24px 64px; text-align: center; }
  .hero-text > p, .chip { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-card-wrap { order: -1; }
  .creator-layout { grid-template-columns: 1fr; }
  .preview-panel { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .occ-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { flex-direction: column; }
  .step-connector { width: auto; height: 36px; transform: rotate(90deg); }
  .cta-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .cta-left { flex-direction: column; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-inner { gap: 12px; }
  .stat-divider { display: none; }
  .stat-item { padding: 8px 16px; }
}

@media (max-width: 540px) {
  .occ-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row.two-col { flex-direction: column; }
  .hero-text h1 { font-size: 2.2rem; }
  .card-mockup { width: 260px; }
  .badge-1, .badge-2 { display: none; }
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
