@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  --purple: #96468E;
  --purple-dark: #6e2e68;
  --purple-deep: #4a1a46;
  --purple-light: #b86ab0;
  --purple-pale: #f5eaf4;
  --purple-faint: #faf3fa;
  --gold: #e8b86d;
  --gold-light: #f5d49a;
  --white: #ffffff;
  --off-white: #fdfbfd;
  --ink: #1a0e19;
  --ink-mid: #3d2239;
  --ink-soft: #7a5876;
  --border: rgba(150, 70, 142, 0.15);
  --shadow-sm: 0 2px 8px rgba(150, 70, 142, 0.12);
  --shadow-md: 0 8px 32px rgba(150, 70, 142, 0.18);
  --shadow-lg: 0 24px 64px rgba(150, 70, 142, 0.22);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(253, 251, 253, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 900;
  color: var(--purple);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--ink-mid); text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--purple);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--purple); color: var(--white) !important;
  padding: 0.55rem 1.4rem; border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--purple-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--purple); border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE WRAPPER ────────────────────────────────── */
.page { padding-top: 72px; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 6rem 5% 4rem;
  background: linear-gradient(135deg, var(--purple-faint) 0%, var(--purple-pale) 60%, rgba(232,184,109,0.08) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(ellipse, rgba(150,70,142,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute; bottom: -15%; left: -5%;
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  background: radial-gradient(ellipse, rgba(232,184,109,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-content { max-width: 700px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--border);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--purple);
  margin-bottom: 2rem; box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  color: var(--ink); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--purple); }

.hero p {
  font-size: 1.1rem; color: var(--ink-soft); line-height: 1.75;
  max-width: 560px; margin-bottom: 2.5rem; font-weight: 300;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--purple); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(150,70,142,0.35);
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(150,70,142,0.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--purple);
  padding: 0.9rem 2rem; border-radius: 50px;
  border: 1.5px solid var(--purple); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: var(--transition);
}
.btn-secondary:hover { background: var(--purple-pale); transform: translateY(-2px); }

.btn-ghost {
  font-size: 0.85rem; color: var(--ink-soft); text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── SECTION BASE ────────────────────────────────── */
section { padding: 6rem 5%; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2; color: var(--ink);
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1rem; color: var(--ink-soft);
  max-width: 580px; line-height: 1.75;
}
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ── CARDS GRID ──────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  background: var(--purple-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.card h3 { font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }

/* ── HOW IT WORKS ────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin-top: 3rem; }
.step {
  padding: 2rem 1.5rem; text-align: center; position: relative;
}
.step:not(:last-child)::after {
  content: '→'; position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%); color: var(--purple-light); font-size: 1.5rem;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--purple); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--ink-soft); }

/* ── PRICING ─────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.pricing-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  position: relative; transition: var(--transition);
}
.pricing-card.featured {
  background: var(--purple); border-color: var(--purple);
  color: var(--white);
}
.pricing-card.featured .plan-name,
.pricing-card.featured .plan-price,
.pricing-card.featured .plan-period,
.pricing-card.featured ul li { color: var(--white) !important; }
.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.75) !important; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 1rem; border-radius: 50px; white-space: nowrap;
}
.plan-name { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple); margin-bottom: 0.5rem; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--ink); line-height: 1; }
.plan-period { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.75rem; }
.plan-desc { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.pricing-card ul li { font-size: 0.88rem; color: var(--ink-mid); display: flex; align-items: center; gap: 0.5rem; }
.pricing-card ul li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── TESTIMONIALS / HIGHLIGHT BAND ──────────────── */
.highlight-band {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%);
  color: var(--white); text-align: center; padding: 5rem 5%;
}
.highlight-band .section-title { color: var(--white); }
.highlight-band .section-sub { color: rgba(255,255,255,0.75); margin: 0 auto; }
.highlight-band .btn-primary { background: var(--white); color: var(--purple); box-shadow: none; }
.highlight-band .btn-primary:hover { background: var(--gold-light); }

/* ── STATS ROW ───────────────────────────────────── */
.stats { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin-top: 3rem; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--purple); }
.stat-label { font-size: 0.85rem; color: var(--ink-soft); }

/* ── FEATURE ROW ─────────────────────────────────── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; margin-top: 4rem;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-visual {
  /* background: linear-gradient(135deg, var(--purple-pale), rgba(232,184,109,0.12)); */
  border-radius: var(--radius-lg); padding: 3rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 300px; font-size: 5rem;
  /* box-shadow: var(--shadow-md); */
}
.feature-text h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
.feature-text p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.5rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-mid); }
.feature-list li::before { content: '◆'; color: var(--purple); font-size: 0.6rem; margin-top: 0.35rem; flex-shrink: 0; }

/* ── FORM ────────────────────────────────────────── */
.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 3rem;
  box-shadow: var(--shadow-md); max-width: 640px; margin: 3rem auto 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--ink-mid); }
.form-group input, .form-group textarea, .form-group select {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.75rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--ink); background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--purple); background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%; padding: 1rem; background: var(--purple); color: var(--white);
  border: none; border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover { background: var(--purple-dark); transform: translateY(-1px); }

/* ── ABOUT ───────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  border-left: 3px solid var(--purple); padding: 1.5rem;
  background: var(--white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.value-card h4 { font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.value-card p { font-size: 0.85rem; color: var(--ink-soft); }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 2rem 5% 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { color: var(--white); }
.footer-brand p { font-size: 0.85rem; margin-top: 1rem; line-height: 1.7; max-width: 260px; }
.footer-col h5 { color: var(--white); font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; margin-bottom: 0.5rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.footer-tagline { color: var(--purple-light); font-style: italic; }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-3 { animation-delay: 0.4s; opacity: 0; }
.fade-up-4 { animation-delay: 0.55s; opacity: 0; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── USER PAGE SPECIFIC ──────────────────────────── */
.persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.persona-chip {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1rem; text-align: center;
  transition: var(--transition);
}
.persona-chip:hover { border-color: var(--purple); background: var(--purple-pale); transform: translateY(-3px); }
.persona-emoji { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.persona-name { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.persona-desc { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.25rem; }

.tier-bar { display: flex; gap: 0; margin-top: 2rem; border-radius: 50px; overflow: hidden; }
.tier { flex: 1; padding: 0.75rem; text-align: center; font-size: 0.8rem; font-weight: 700; }
.tier.bronze { background: #cd7f32; color: white; }
.tier.silver { background: #a8a9ad; color: white; }
.tier.gold { background: var(--gold); color: var(--ink); }
.tier.platinum { background: var(--purple); color: white; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 4%; }
  .nav-links { 
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white); padding: 2rem;
    overflow-y: auto; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 1rem 0; font-size: 1.05rem; }
  .nav-toggle { display: flex; }

  .hero { padding: 5rem 4% 3rem; min-height: auto; }
  section { padding: 4rem 4%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; text-align: center; justify-content: center; }
  .form-card { padding: 1.75rem 1.25rem; }
}

/* ── ACCESSIBILITY ───────────────────────────────── */
:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Skip link */
.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 9999;
  background: var(--purple); color: white; padding: 0.75rem 1.5rem; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── HERO SPLIT (with phone mockup) ─────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  justify-items: start;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  padding: 2rem 1rem 0;
}

/* ── PHONE MOCKUP ────────────────────────────────────── */
.phone-mockup {
  position: relative;
  background: var(--ink);
  border-radius: 38px;
  padding: 12px 8px 16px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.12),
    0 32px 80px rgba(26,14,25,0.45),
    0 8px 20px rgba(150,70,142,0.3);
  width: 270px;
  flex-shrink: 0;
  z-index: 2;
}
.phone-mockup-sm {
  width: 240px;
}
.phone-mockup-back {
  position: absolute;
  right: -60px;
  bottom: -20px;
  z-index: 1;
  opacity: 0.65;
  transform: rotate(6deg) scale(0.88);
  width: 240px;
}
.phone-notch {
  width: 80px; height: 20px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 6px;
  position: relative; z-index: 3;
}
.phone-screen {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
  object-fit: cover;
}

/* ── APP GALLERY ─────────────────────────────────────── */
.gallery-section { background: var(--ink); color: var(--white); }
.gallery-section .section-label { color: var(--gold-light); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-sub { color: rgba(255,255,255,0.65); }

.gallery-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) transparent;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.gallery-grid::-webkit-scrollbar { height: 4px; }
.gallery-grid::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 4px; }

.gallery-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.app-screen-wrap {
  border-radius: 32px;
  overflow: hidden;
  background: var(--ink-mid);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1.5px rgba(255,255,255,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover .app-screen-wrap {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 2px var(--purple);
}
.app-screen {
  display: block;
  width: 200px;
  height: auto;
  border-radius: 30px;
}
.gallery-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── FEATURE VISUAL WITH PHONE ───────────────────────── */
.feature-visual-img {
  background: linear-gradient(135deg, var(--purple-pale), rgba(232,184,109,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  min-height: 420px;
}
.feature-visual-img .phone-mockup {
  width: 220px;
}

/* ── RESPONSIVE: hero split ──────────────────────────── */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 900px) {
  .feature-visual-img { min-height: 300px; padding: 2rem; }
  .feature-visual-img .phone-mockup { width: 180px; }
}
@media (max-width: 768px) {
  .gallery-grid { gap: 1rem; padding: 0.5rem 0 1.5rem; }
  .app-screen { width: 160px; }
}
