/* ============================================================
   mimisy — shared design system
   Single source of truth for every page (index / gallery /
   pricing / models / blog / contact). All visual language is
   lifted directly from the mimisy app (styles.css).
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --blush: #ff8fa3;
  --blush-soft: #ffb3c1;
  --blush-deep: #e85d75;
  --peach: #ffb4a2;
  --peach-soft: #ffd4c4;
  --peach-deep: #f08080;
  --coral: #ff7f7f;
  --coral-glow: rgba(255, 127, 127, 0.25);
  --rose: #f72585;
  --rose-soft: #ff6b9d;
  --rose-glow: rgba(247, 37, 133, 0.2);
  --lavender: #e8c5f0;
  --lavender-soft: #f3e0f8;
  --berry: #b5179e;
  --honey: #ffd166;

  --bg-base: #fff5f7;
  --bg-card: rgba(255, 255, 255, 0.72);
  --bg-glass: rgba(255, 255, 255, 0.55);
  --bg-input: rgba(255, 255, 255, 0.65);
  --bg-sidebar: rgba(255, 245, 247, 0.88);
  --bg-hover: rgba(255, 143, 163, 0.12);
  --bg-active: rgba(255, 143, 163, 0.18);

  --text-main: #3d2c3a;
  --text-soft: #7a6678;
  --text-muted: #b8a0b4;
  --text-inverse: #fff5f7;

  --border-card: rgba(255, 143, 163, 0.2);
  --border-input: rgba(255, 143, 163, 0.25);
  --border-glass: rgba(255, 255, 255, 0.5);

  --shadow-sm: 0 2px 8px rgba(247, 37, 133, 0.08);
  --shadow-md: 0 6px 24px rgba(247, 37, 133, 0.12);
  --shadow-lg: 0 12px 48px rgba(247, 37, 133, 0.15);
  --shadow-glow: 0 4px 20px var(--coral-glow);
  --shadow-btn: 0 4px 18px rgba(255, 127, 127, 0.35);

  --font-display: 'Quicksand', system-ui, sans-serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;

  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.25rem; --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem;
  --s-12: 3rem; --s-16: 4rem;

  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-full: 999px;

  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms; --dur-norm: 320ms; --dur-slow: 600ms;
}

/* Dark theme — deep berry plum, same playful language */
[data-theme="dark"] {
  --bg-base: #241526;
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-input: rgba(255, 255, 255, 0.07);
  --bg-sidebar: rgba(36, 21, 38, 0.85);
  --bg-hover: rgba(255, 143, 163, 0.16);
  --bg-active: rgba(255, 143, 163, 0.24);

  --text-main: #fdeef3;
  --text-soft: #d3bcd0;
  --text-muted: #9a7f96;
  --text-inverse: #241526;

  --border-card: rgba(255, 143, 163, 0.28);
  --border-input: rgba(255, 143, 163, 0.32);
  --border-glass: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.45);
}

/* ── Base ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-main);
  font-size: var(--text-base);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--dur-norm) var(--ease-smooth), color var(--dur-norm) var(--ease-smooth);
  position: relative;
}
h1, h2, h3, .brand-name, .eyebrow { font-family: var(--font-display); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--s-5); }

/* ── Background decoration: floating blobs + hearts (same as mimisy) ── */
.bg-blobs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite; animation-direction: alternate;
}
.bg-blob:nth-child(1) { width: 520px; height: 520px; background: var(--blush-soft); top: -12%; left: -6%; animation: blob1 16s infinite alternate; }
.bg-blob:nth-child(2) { width: 440px; height: 440px; background: var(--peach-soft); top: 48%; right: -10%; animation: blob2 14s infinite alternate; }
.bg-blob:nth-child(3) { width: 380px; height: 380px; background: var(--lavender-soft); bottom: -12%; left: 28%; animation: blob3 18s infinite alternate; }
.bg-blob:nth-child(4) { width: 320px; height: 320px; background: var(--honey); opacity: 0.32; top: 18%; right: 22%; animation: blob4 20s infinite alternate; }
[data-theme="dark"] .bg-blob { opacity: 0.22; }
@keyframes blob1 { 0% { transform: translate(0,0) scale(1);} 100% { transform: translate(8%,7%) scale(1.15);} }
@keyframes blob2 { 0% { transform: translate(0,0) scale(1);} 100% { transform: translate(-7%,-10%) scale(1.12);} }
@keyframes blob3 { 0% { transform: translate(0,0) scale(1);} 100% { transform: translate(-5%,-9%) scale(1.1);} }
@keyframes blob4 { 0% { transform: translate(0,0) scale(1);} 100% { transform: translate(11%,-6%) scale(1.2);} }
.floating-hearts { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
@keyframes heartRise {
  0% { opacity: 0; transform: translateY(0) translateX(0) scale(.4) rotate(0); }
  15% { opacity: .5; }
  50% { opacity: .32; }
  85% { opacity: .08; }
  100% { opacity: 0; transform: translateY(-100vh) translateX(var(--drift,40px)) scale(1.1) rotate(var(--spin,15deg)); }
}

/* ── Reusable bits ── */
.brand-logo {
  width: 38px; height: 38px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--rose), var(--blush), var(--peach));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff;
  box-shadow: 0 4px 12px rgba(247, 37, 133, 0.3);
}
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); letter-spacing: -0.01em; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  font-family: var(--font-display); font-weight: 700; cursor: pointer;
  border: none; border-radius: var(--r-full);
  transition: all var(--dur-fast) var(--ease-bounce);
  text-decoration: none; white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--rose); outline-offset: 2px; }
.btn-primary {
  padding: var(--s-3) var(--s-6);
  background: linear-gradient(135deg, var(--rose), var(--blush), var(--coral));
  color: #fff; font-size: var(--text-base); letter-spacing: 0.02em;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 28px rgba(255, 127, 127, 0.45); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  padding: var(--s-3) var(--s-6);
  background: var(--bg-card); color: var(--text-main);
  border: 2px solid var(--border-card); font-size: var(--text-base);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--bg-hover); transform: translateY(-2px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.04em;
  color: var(--blush-deep);
  padding: var(--s-1) var(--s-4); border-radius: var(--r-full);
  background: var(--bg-hover); border: 1px solid var(--border-card);
}
.section { position: relative; z-index: 1; padding: var(--s-16) 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--s-10); }
.section-head h2 { font-size: var(--text-3xl); font-weight: 700; margin: var(--s-3) 0 var(--s-2); letter-spacing: -0.02em; }
.section-head p { color: var(--text-soft); font-size: var(--text-lg); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-slow) var(--ease-smooth), transform var(--dur-slow) var(--ease-smooth); }
.reveal.in { opacity: 1; transform: none; }

/* ── Nav ── */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); background: var(--bg-glass); border-bottom: 1px solid var(--border-glass); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); height: 68px; position: relative; }
.brand-row { display: flex; align-items: center; gap: var(--s-2); min-width: 0; flex: 0 0 auto; }
.brand-name { white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: var(--s-6); }
.nav-links a { font-weight: 600; color: var(--text-soft); font-size: var(--text-sm); transition: color var(--dur-fast); }
.nav-links a:hover { color: var(--blush-deep); }
.nav-links a.active { color: var(--blush-deep); }
.nav-links a.active::after { content: ""; display: block; height: 2px; background: linear-gradient(135deg, var(--rose), var(--blush), var(--coral)); border-radius: 2px; margin-top: 3px; }
.nav-mobile-divider, .nav-mobile-auth { display: none; }
.nav-actions { display: flex; align-items: center; gap: var(--s-3); flex: 0 0 auto; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: var(--r-full); border: 2px solid var(--border-card);
  background: var(--bg-card); cursor: pointer; font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast) var(--ease-bounce);
}
.theme-toggle:hover { background: var(--bg-hover); transform: scale(1.08) rotate(-12deg); }
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  border: 2px solid var(--border-card);
  background: var(--bg-card);
  cursor: pointer;
  color: var(--text-main);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: all var(--dur-fast) var(--ease-bounce);
}
.nav-burger span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--dur-fast) var(--ease-smooth), opacity var(--dur-fast) var(--ease-smooth);
}
.nav-burger.open { background: var(--bg-hover); color: var(--blush-deep); }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Inner-page hero (compact) ── */
.page-hero { position: relative; z-index: 1; padding: var(--s-12) 0 var(--s-6); text-align: center; }
.page-hero .eyebrow { margin-bottom: var(--s-4); }
.page-hero h1 { font-size: var(--text-4xl); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: var(--s-3); }
.page-hero h1 .grad { background: linear-gradient(135deg, var(--rose), var(--blush), var(--coral)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { color: var(--text-soft); font-size: var(--text-lg); max-width: 36em; margin: 0 auto; }

/* ── Hero (home) ── */
.hero { position: relative; z-index: 1; padding: var(--s-16) 0 var(--s-12); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--s-12); align-items: center; }
.hero h1 { font-size: var(--text-4xl); font-weight: 700; line-height: 1.12; letter-spacing: -0.03em; margin: var(--s-4) 0; }
.hero h1 .grad { background: linear-gradient(135deg, var(--rose), var(--blush), var(--coral)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: var(--text-lg); color: var(--text-soft); max-width: 32em; margin-bottom: var(--s-6); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-6); }
.hero-stats { display: flex; gap: var(--s-8); flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--blush-deep); display: block; line-height: 1.1; }
.hero-stats .stat span { font-size: var(--text-xs); color: var(--text-muted); font-weight: 600; }
.hero-visual { position: relative; }
.preview-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--r-xl); padding: var(--s-4); box-shadow: var(--shadow-lg); backdrop-filter: blur(10px); position: relative; }
.preview-card .media-pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.preview-card figure { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/5; margin: 0; }
.preview-card figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.preview-card .tag-pill { position: absolute; bottom: var(--s-2); left: var(--s-2); background: rgba(0,0,0,0.45); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: var(--r-full); backdrop-filter: blur(4px); }
.play-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--blush)); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-btn); animation: pulse 2.4s var(--ease-smooth) infinite; }
.play-dot::after { content: ""; border-left: 13px solid #fff; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 3px; }
@keyframes pulse { 0%,100% { transform: translate(-50%,-50%) scale(1);} 50% { transform: translate(-50%,-50%) scale(1.12);} }
.preview-foot { display: flex; align-items: center; justify-content: space-between; padding: var(--s-3) var(--s-2) var(--s-1); }
.preview-foot h3 { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; }
.preview-foot .open { color: var(--blush-deep); font-weight: 700; font-size: var(--text-sm); }
.float-chip { position: absolute; background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--r-full); padding: var(--s-2) var(--s-4); box-shadow: var(--shadow-md); font-size: var(--text-xs); font-weight: 700; display: flex; align-items: center; gap: var(--s-2); backdrop-filter: blur(8px); animation: bob 5s var(--ease-smooth) infinite; }
.float-chip.c1 { top: -18px; left: -22px; color: var(--berry); }
.float-chip.c2 { bottom: 40px; right: -26px; color: var(--peach-deep); animation-delay: 1.2s; }
.float-chip.c3 { bottom: -20px; left: 30px; color: var(--blush-deep); animation-delay: 2.1s; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }

/* ── Features (home) ── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.feature-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--r-lg); padding: var(--s-6); box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); transition: all var(--dur-norm) var(--ease-bounce); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blush-soft); }
.feature-icon { width: 54px; height: 54px; border-radius: var(--r-md); background: linear-gradient(135deg, var(--rose), var(--blush), var(--coral)); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-glow); margin-bottom: var(--s-4); }
.feature-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--s-2); }
.feature-card p { color: var(--text-soft); font-size: var(--text-sm); }
.feature-card .mini { display: inline-block; margin-top: var(--s-3); font-size: var(--text-xs); font-weight: 700; color: var(--blush-deep); }

/* ── Steps (home) ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); position: relative; }
.steps::before { content: ""; position: absolute; top: 30px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, transparent, var(--blush-soft), var(--coral-glow), var(--blush-soft), transparent); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.step-num { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto var(--s-4); background: linear-gradient(135deg, var(--rose), var(--blush), var(--coral)); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-btn); }
.step h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--s-2); }
.step p { color: var(--text-soft); font-size: var(--text-sm); max-width: 22em; margin: 0 auto; }

/* ── Footer CTA + footer ── */
.cta-band { position: relative; z-index: 1; margin: 0 auto var(--s-16); max-width: 1180px; border-radius: var(--r-xl); padding: var(--s-16) var(--s-6); text-align: center; background: linear-gradient(135deg, rgba(247,37,133,0.10), rgba(255,143,163,0.10), rgba(255,180,162,0.10)); border: 1px solid var(--border-card); box-shadow: var(--shadow-lg); overflow: hidden; }
.cta-band h2 { font-size: var(--text-3xl); font-weight: 700; letter-spacing: -0.02em; margin-bottom: var(--s-3); }
.cta-band p { color: var(--text-soft); font-size: var(--text-lg); margin-bottom: var(--s-6); }
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border-glass); padding: var(--s-10) 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s-4); }
.footer-links { display: flex; gap: var(--s-5); flex-wrap: wrap; }
.footer-links a { font-size: var(--text-sm); color: var(--text-soft); font-weight: 600; }
.footer-links a:hover { color: var(--blush-deep); }
.footer-copy { font-size: var(--text-xs); color: var(--text-muted); font-weight: 600; }

/* ════════════════════════════════════════════════════════
   PAGE-SPECIFIC COMPONENTS
   ════════════════════════════════════════════════════════ */

/* ── Gallery ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: center; margin-bottom: var(--s-8); }
.chip { font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); padding: var(--s-2) var(--s-5); border-radius: var(--r-full); border: 2px solid var(--border-card); background: var(--bg-card); color: var(--text-soft); cursor: pointer; transition: all var(--dur-fast) var(--ease-bounce); }
.chip:hover { background: var(--bg-hover); color: var(--blush-deep); }
.chip.active { background: linear-gradient(135deg, var(--rose), var(--blush), var(--coral)); color: #fff; border-color: transparent; box-shadow: var(--shadow-btn); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.gallery-item { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--border-card); box-shadow: var(--shadow-sm); cursor: pointer; transition: all var(--dur-norm) var(--ease-bounce); }
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-slow) var(--ease-smooth); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--s-5); background: linear-gradient(to top, rgba(36,21,38,0.8), transparent 60%); opacity: 0; transition: opacity var(--dur-norm); }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay h3 { color: #fff; font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--s-1); }
.gallery-item .overlay .meta { color: rgba(255,255,255,0.82); font-size: var(--text-xs); font-weight: 600; display: flex; gap: var(--s-3); align-items: center; }
.gallery-item .badge { position: absolute; top: var(--s-3); left: var(--s-3); background: rgba(255,255,255,0.92); color: var(--blush-deep); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: var(--r-full); }

/* ── Pricing ── */
.bill-toggle { display: inline-flex; background: var(--bg-card); border: 2px solid var(--border-card); border-radius: var(--r-full); padding: 4px; margin: 0 auto var(--s-8); gap: 4px; }
.bill-toggle button { font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); border: none; background: transparent; color: var(--text-soft); padding: var(--s-2) var(--s-5); border-radius: var(--r-full); cursor: pointer; transition: all var(--dur-fast); }
.bill-toggle button.active { background: linear-gradient(135deg, var(--rose), var(--blush), var(--coral)); color: #fff; box-shadow: var(--shadow-btn); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); align-items: stretch; }
.price-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--r-lg); padding: var(--s-8); box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); display: flex; flex-direction: column; transition: all var(--dur-norm) var(--ease-bounce); position: relative; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.popular { border: 2px solid transparent; background: linear-gradient(180deg, rgba(247,37,133,0.06), var(--bg-card)); box-shadow: var(--shadow-md); transform: scale(1.04); }
.price-card.popular:hover { transform: scale(1.04) translateY(-6px); }
.price-tag-pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--rose), var(--blush), var(--coral)); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: var(--text-xs); padding: 5px 14px; border-radius: var(--r-full); box-shadow: var(--shadow-btn); white-space: nowrap; }
.price-name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); }
.price-desc { color: var(--text-soft); font-size: var(--text-sm); margin: var(--s-2) 0 var(--s-5); min-height: 2.6em; }
.price-amount { font-family: var(--font-display); font-weight: 700; font-size: var(--text-4xl); line-height: 1; }
.price-amount .cur { font-size: var(--text-xl); vertical-align: super; }
.price-period { color: var(--text-muted); font-size: var(--text-sm); font-weight: 600; }
.price-features { list-style: none; margin: var(--s-6) 0; display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.price-features li { display: flex; gap: var(--s-2); align-items: flex-start; font-size: var(--text-sm); color: var(--text-soft); }
.price-features li svg { width: 18px; height: 18px; flex: none; stroke: var(--blush-deep); fill: none; stroke-width: 2.4; margin-top: 2px; }
.price-card .btn { width: 100%; }

/* ── Models ── */
.model-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
.model-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); transition: all var(--dur-norm) var(--ease-bounce); }
.model-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.model-head { padding: var(--s-6); background: linear-gradient(135deg, rgba(247,37,133,0.10), rgba(255,143,163,0.10), rgba(255,180,162,0.10)); display: flex; align-items: center; gap: var(--s-4); border-bottom: 1px solid var(--border-card); }
.model-avatar { width: 56px; height: 56px; border-radius: var(--r-md); background: linear-gradient(135deg, var(--rose), var(--blush), var(--coral)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); color: #fff; box-shadow: var(--shadow-glow); flex: none; }
.model-head h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; }
.model-head .by { font-size: var(--text-xs); color: var(--text-soft); font-weight: 600; }
.model-body { padding: var(--s-6); }
.model-body p { color: var(--text-soft); font-size: var(--text-sm); margin-bottom: var(--s-5); }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3); margin-bottom: var(--s-5); }
.spec { background: var(--bg-input); border: 1px solid var(--border-input); border-radius: var(--r-md); padding: var(--s-3) var(--s-4); }
.spec .k { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.spec .v { font-family: var(--font-display); font-weight: 700; color: var(--text-main); font-size: var(--text-base); }
.model-tags { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-5); }
.model-tags span { font-size: var(--text-xs); font-weight: 700; color: var(--blush-deep); background: var(--bg-hover); border: 1px solid var(--border-card); padding: 3px 10px; border-radius: var(--r-full); }
.compare-wrap { overflow-x: auto; margin-top: var(--s-8); }
table.compare { width: 100%; border-collapse: collapse; min-width: 520px; background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--r-lg); overflow: hidden; }
table.compare th, table.compare td { padding: var(--s-4) var(--s-5); text-align: left; font-size: var(--text-sm); border-bottom: 1px solid var(--border-card); }
table.compare th { font-family: var(--font-display); font-weight: 700; background: var(--bg-hover); }
table.compare tr:last-child td { border-bottom: none; }
table.compare td.label { font-weight: 700; color: var(--text-main); }

/* ── Blog ── */
.tag { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-xs); font-weight: 700; color: var(--blush-deep); background: var(--bg-hover); border: 1px solid var(--border-card); padding: 3px 12px; border-radius: var(--r-full); width: max-content; margin-bottom: var(--s-3); }
.blog-featured { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s-6); background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: var(--s-10); }
.blog-featured .media { aspect-ratio: 16/10; }
.blog-featured .media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-featured .body { padding: var(--s-8); display: flex; flex-direction: column; justify-content: center; }
.blog-featured h2 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--s-3); }
.blog-featured p { color: var(--text-soft); font-size: var(--text-sm); margin-bottom: var(--s-5); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.blog-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--dur-norm) var(--ease-bounce); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card .media { aspect-ratio: 16/9; overflow: hidden; }
.blog-card .media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-slow) var(--ease-smooth); }
.blog-card:hover .media img { transform: scale(1.05); }
.blog-card .body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.blog-card .date { font-size: var(--text-xs); color: var(--text-muted); font-weight: 600; }
.blog-card h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; }
.blog-card p { color: var(--text-soft); font-size: var(--text-sm); flex: 1; }
.blog-card .more { font-size: var(--text-sm); font-weight: 700; color: var(--blush-deep); }
.newsletter { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; justify-content: center; margin-top: var(--s-10); }
.newsletter input { flex: 1; min-width: 220px; max-width: 340px; font-family: var(--font-body); font-size: var(--text-base); background: var(--bg-input); border: 1px solid var(--border-input); border-radius: var(--r-full); padding: var(--s-3) var(--s-5); color: var(--text-main); }
.newsletter input:focus { outline: none; border-color: var(--blush); box-shadow: 0 0 0 3px var(--coral-glow); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s-8); align-items: start; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--r-lg); padding: var(--s-8); box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); }
.form-group { margin-bottom: var(--s-5); }
.form-group label { display: block; font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); margin-bottom: var(--s-2); }
.form-control { width: 100%; font-family: var(--font-body); font-size: var(--text-base); color: var(--text-main); background: var(--bg-input); border: 1px solid var(--border-input); border-radius: var(--r-md); padding: var(--s-3) var(--s-4); transition: all var(--dur-fast); }
.form-control:focus { outline: none; border-color: var(--blush); box-shadow: 0 0 0 3px var(--coral-glow); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.form-note { font-size: var(--text-xs); color: var(--text-muted); margin-top: var(--s-3); }
.form-success { display: none; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); color: #0f7a52; border-radius: var(--r-md); padding: var(--s-4); font-weight: 700; font-size: var(--text-sm); margin-bottom: var(--s-5); }
[data-theme="dark"] .form-success { color: #7ff0c0; }
.contact-info { display: flex; flex-direction: column; gap: var(--s-4); }
.info-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--r-lg); padding: var(--s-6); box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); }
.info-card h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); margin-bottom: var(--s-3); }
.info-row { display: flex; align-items: center; gap: var(--s-3); padding: var(--s-3) 0; border-bottom: 1px solid var(--border-card); }
.info-row:last-child { border-bottom: none; }
.info-row .ic { width: 38px; height: 38px; border-radius: var(--r-md); background: linear-gradient(135deg, var(--rose), var(--blush), var(--coral)); display: flex; align-items: center; justify-content: center; flex: none; }
.info-row .ic svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; }
.info-row .t { font-size: var(--text-xs); color: var(--text-muted); font-weight: 600; }
.info-row .v { font-size: var(--text-sm); font-weight: 700; color: var(--text-main); }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: var(--s-8); }
  .steps::before { display: none; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .media { aspect-ratio: 16/9; }
  .model-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-6px); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav-inner { height: 64px; }
  .nav-actions { gap: var(--s-2); margin-left: auto; }
  .nav-auth { display: none; }
  .theme-toggle, .nav-burger { width: 38px; height: 38px; flex: 0 0 38px; }
  .nav-burger { display: inline-flex; }
  .nav-links {
    display: none;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    width: auto;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    padding: var(--s-3);
    border: 1px solid var(--border-card);
    border-radius: var(--r-lg);
    background: var(--bg-base);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 80;
  }
  .nav-links.open a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: var(--r-md);
    color: var(--text-main);
    font-size: var(--text-base);
  }
  .nav-links.open a:hover,
  .nav-links.open a.active {
    background: var(--bg-hover);
    color: var(--blush-deep);
  }
  .nav-links.open a.active::after { display: none; }
  .nav-mobile-divider {
    display: block;
    height: 1px;
    margin: var(--s-2) 0;
    background: var(--border-card);
  }
  .nav-links.open .nav-mobile-auth {
    display: flex;
    justify-content: center;
    border: 1px solid var(--border-card);
    font-weight: 800;
  }
  .nav-links.open .nav-mobile-primary {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--rose), var(--blush), var(--coral));
    box-shadow: var(--shadow-btn);
  }
}
@media (max-width: 640px) {
  .container { padding: 0 var(--s-4); }
  .brand-logo { width: 34px; height: 34px; }
  .brand-name { font-size: var(--text-lg); }
  .hero { padding: var(--s-8) 0 var(--s-10); }
  .hero-grid { gap: var(--s-8); }
  .hero-visual { width: 100%; max-width: 360px; }
  .preview-card { padding: var(--s-3); border-radius: var(--r-lg); }
  .preview-card .media-pair { gap: var(--s-2); }
  .preview-foot { padding: var(--s-3) 0 0; }
  .hero-cta { display: grid; grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-3); }
  .hero-stats .stat strong { font-size: var(--text-xl); }
  .hero-stats .stat span { display: block; line-height: 1.25; }
  .section { padding: var(--s-10) 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: var(--text-3xl); }
  .hero-stats { gap: var(--s-3); }
  .float-chip { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: var(--text-3xl); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
