/* ================================
   DESIGN SYSTEM
   Pure white & dark, no color accents
   ================================ */

/* Dark theme (default) */
[data-theme="dark"] {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #141414;
  --card-bg: #111111;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-tertiary: rgba(255, 255, 255, 0.3);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --glow: rgba(255, 255, 255, 0.06);
  --nav-bg: rgba(0, 0, 0, 0.82);
  --shadow: rgba(0, 0, 0, 0.5);
  --shadow-light: rgba(0, 0, 0, 0.25);
}

/* Light theme */
[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f7f7f7;
  --bg-tertiary: #eeeeee;
  --card-bg: #f2f2f2;
  --text-primary: #000000;
  --text-secondary: rgba(0, 0, 0, 0.55);
  --text-tertiary: rgba(0, 0, 0, 0.3);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.16);
  --glow: rgba(0, 0, 0, 0.04);
  --nav-bg: rgba(255, 255, 255, 0.82);
  --shadow: rgba(0, 0, 0, 0.12);
  --shadow-light: rgba(0, 0, 0, 0.06);
}

:root {
  --font-primary: 'Kumbh Sans', system-ui, -apple-system, sans-serif;
  --font-editorial: Georgia, 'Times New Roman', serif;

  --display-large: 44px;
  --display-medium: 32px;
  --headline: 24px;
  --title: 20px;
  --body: 16px;
  --caption: 13px;
  --label: 11px;

  --weight-medium: 500;
  --weight-bold: 700;

  --sp-4: 4px;
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;
}

/* ================================
   RESET & BASE
   ================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  font-weight: var(--weight-medium);
  font-size: var(--body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.35s ease, color 0.35s ease;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; }

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

/* ================================
   SCROLL REVEAL
   ================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger] {
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal-stagger].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ================================
   A. STICKY NAV
   ================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.nav-scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  font-weight: var(--weight-bold);
  font-size: var(--title);
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---- Language Switcher ---- */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  color: var(--text-secondary);
  font-size: var(--label);
  font-weight: var(--weight-bold);
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1;
}

.lang-btn:hover {
  background: var(--border);
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 6px;
  min-width: 140px;
  box-shadow: 0 12px 40px var(--shadow), 0 0 0 1px var(--border);
  z-index: 200;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lang-dropdown.open {
  display: block;
  animation: dropdownIn 0.18s ease-out;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 9px 12px;
  color: var(--text-secondary);
  font-size: var(--caption);
  font-weight: var(--weight-medium);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  line-height: 1.3;
}

.lang-option:hover {
  background: var(--glow);
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--text-primary);
  font-weight: var(--weight-bold);
  background: var(--glow);
}

/* ---- Theme Toggle ---- */
.theme-toggle {
  background: var(--glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 32px;
  height: 32px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--border);
  border-color: var(--border-strong);
  color: var(--text-primary);
}

[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

/* ---- Nav CTA ---- */
.nav-cta {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: var(--text-primary);
  color: var(--bg-primary);
  font-weight: var(--weight-bold);
  font-size: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, opacity 0.2s;
  line-height: 1;
}

.nav-cta:hover {
  transform: translateY(-1px);
  opacity: 0.88;
}

/* ================================
   B. HERO
   ================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--bg-primary);
  padding: 120px var(--sp-24) var(--sp-48);
  overflow: hidden;
}

.hero-glow, .final-cta-glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  background: var(--text-primary);
}

.glow-1 {
  width: 500px;
  height: 500px;
  opacity: 0.03;
  top: -15%;
  left: -10%;
  animation: orbFloat 18s ease-in-out infinite;
}

.glow-2 {
  width: 400px;
  height: 400px;
  opacity: 0.02;
  bottom: 0;
  right: -10%;
  animation: orbFloat 22s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -30px); }
  66% { transform: translate(-15px, 15px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin: 0 auto var(--sp-32);
  box-shadow: 0 16px 48px var(--shadow);
}

.hero-headline {
  font-size: var(--display-large);
  font-weight: var(--weight-bold);
  line-height: 1.12;
  margin-bottom: var(--sp-20);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto var(--sp-32);
  line-height: 1.65;
}

/* App Store Badge */
.app-store-badge {
  display: inline-block;
  transition: transform 0.2s;
}

.app-store-badge:hover {
  transform: scale(1.04);
}

.badge-img {
  height: 48px;
  width: auto;
}

.app-store-badge.large .badge-img {
  height: 56px;
}

/* Phone mockup */
.hero-phone {
  position: relative;
  z-index: 2;
  margin-top: var(--sp-48);
}

.phone-mockup {
  width: 250px;
  margin: 0 auto;
  border-radius: 36px;
  background: var(--bg-tertiary);
  padding: 10px;
  box-shadow: 0 28px 80px var(--shadow), 0 0 0 1px var(--border);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.phone-mockup:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--sp-32);
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-tertiary);
  animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.7; }
}

/* ================================
   C. SOCIAL PROOF BAR
   ================================ */
.social-proof {
  padding: var(--sp-24) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-16);
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  color: var(--text-secondary);
  font-size: var(--caption);
  font-weight: var(--weight-medium);
}

.proof-divider {
  width: 1px;
  height: 16px;
  background: var(--border-strong);
}

/* ================================
   SECTION TITLE
   ================================ */
.section-title {
  font-size: var(--display-medium);
  font-weight: var(--weight-bold);
  text-align: center;
  margin-bottom: var(--sp-48);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ================================
   D. FEATURES
   ================================ */
.features {
  padding: 100px 0;
  background: var(--bg-primary);
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: var(--sp-40);
}

.feature-card.reverse {
  flex-direction: row-reverse;
}

.feature-visual {
  flex: 0 0 auto;
}

.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  transition: background 0.2s;
}

.feature-card:hover .feature-icon {
  background: var(--border);
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-size: var(--title);
  font-weight: var(--weight-bold);
  margin-bottom: 6px;
}

.feature-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 420px;
}

/* ================================
   E. SCREENSHOTS CAROUSEL
   ================================ */
.screenshots {
  padding: 100px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--card-bg);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.carousel-arrow:hover {
  background: var(--border);
  border-color: var(--text-tertiary);
}

.carousel-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.carousel-arrow:disabled:hover {
  background: var(--card-bg);
  border-color: var(--border-strong);
}

.carousel {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  gap: var(--sp-20);
}

.carousel-slide {
  flex: 0 0 210px;
}

.screenshot-frame {
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-tertiary);
  padding: 8px;
  box-shadow: 0 8px 32px var(--shadow-light);
  border: 1px solid var(--border);
}

.screenshot-img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 22px;
  object-fit: cover;
  display: block;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--sp-8);
  margin-top: var(--sp-32);
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-tertiary);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--text-primary);
  transform: scale(1.3);
}

/* ================================
   F. VIDEO DEMO
   ================================ */
.video-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.video-quote {
  text-align: center;
  font-family: var(--font-editorial);
  font-size: var(--headline);
  color: var(--text-secondary);
  margin-bottom: var(--sp-40);
}

.video-wrapper {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--card-bg);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  color: var(--text-tertiary);
  font-size: var(--caption);
  z-index: 3;
}

.video-ph-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  opacity: 0.25;
}

.video-placeholder.hidden {
  display: none;
}

/* ================================
   G. MOOD COLORS GRID
   ================================ */
.mood-grid-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-12);
  max-width: 680px;
  margin: 0 auto;
}

.mood-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--card-bg);
  border: 1px solid var(--border);
  font-size: var(--caption);
  font-weight: var(--weight-bold);
  cursor: default;
  transition: border-color 0.3s, transform 0.2s, background 0.2s;
  white-space: nowrap;
}

.mood-pill:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: var(--glow);
}

.mood-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--text-primary);
  opacity: 0.4;
}

/* ================================
   H. ART TEMPLATES
   ================================ */
.templates-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-16);
}

.template-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.3s;
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.template-card:hover {
  transform: translateY(-4px);
}

.template-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.template-card span {
  display: block;
  padding: 12px var(--sp-16);
  font-size: var(--caption);
  font-weight: var(--weight-bold);
  color: var(--text-secondary);
  text-align: center;
}

.templates-more {
  text-align: center;
  margin-top: var(--sp-32);
  color: var(--text-secondary);
  font-size: var(--body);
}

/* ================================
   I. PRICING
   ================================ */
.pricing {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-24);
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-40) var(--sp-32);
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: var(--border-strong);
}

.pricing-card.pro {
  border: 2px solid var(--text-primary);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-size: var(--label);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: var(--headline);
  font-weight: var(--weight-bold);
  margin-bottom: var(--sp-12);
}

.pricing-price {
  font-size: var(--display-medium);
  font-weight: var(--weight-bold);
  margin-bottom: var(--sp-8);
}

.pricing-price span {
  font-size: var(--body);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
}

.pricing-annual {
  font-size: var(--caption);
  color: var(--text-secondary);
  margin-bottom: var(--sp-24);
}

.pricing-save {
  background: var(--glow);
  color: var(--text-secondary);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: var(--label);
  font-weight: var(--weight-bold);
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--sp-32);
}

.pricing-features li {
  padding: 9px 0;
  color: var(--text-secondary);
  font-size: var(--caption);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '\2713\0020';
  font-weight: var(--weight-bold);
  color: var(--text-primary);
}

.pricing-cta {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-weight: var(--weight-bold);
  font-size: var(--caption);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--border-strong);
  transition: transform 0.2s, background 0.2s;
}

.pricing-cta:hover {
  transform: translateY(-1px);
  background: var(--glow);
}

.pricing-cta.pro {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.pricing-cta.pro:hover {
  opacity: 0.88;
  background: var(--text-primary);
}

/* ================================
   J. TESTIMONIALS
   ================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-20);
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-32);
  border: 1px solid var(--border);
}

.testimonial-quote {
  font-family: var(--font-editorial);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: var(--sp-20);
}

.testimonial-author {
  font-size: var(--caption);
  font-weight: var(--weight-bold);
  color: var(--text-tertiary);
}

/* ================================
   K. FINAL CTA
   ================================ */
.final-cta {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto var(--sp-32);
  box-shadow: 0 12px 40px var(--shadow);
}

.cta-headline {
  font-size: var(--display-large);
  font-weight: var(--weight-bold);
  margin-bottom: var(--sp-12);
  letter-spacing: -0.02em;
}

.cta-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--sp-32);
}

/* ================================
   L. FOOTER
   ================================ */
.footer {
  padding: var(--sp-40) 0;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--sp-24);
  margin-bottom: var(--sp-16);
}

.footer-links a {
  color: var(--text-secondary);
  font-size: var(--caption);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-copy {
  font-size: var(--caption);
  color: var(--text-tertiary);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .templates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --display-large: 32px;
    --display-medium: 26px;
    --headline: 22px;
  }

  .nav-inner {
    padding: 12px var(--sp-16);
  }

  .feature-card,
  .feature-card.reverse {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-20);
  }

  .feature-desc {
    max-width: 100%;
  }

  .mood-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .carousel-slide {
    flex: 0 0 190px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-wrapper {
    gap: var(--sp-8);
  }

  .phone-mockup {
    width: 210px;
  }

  .nav-cta {
    padding: 7px 14px;
    font-size: 10px;
  }

  .lang-btn {
    padding: 6px 8px;
  }

  .proof-items {
    gap: var(--sp-12);
  }
}

@media (max-width: 480px) {
  :root {
    --display-large: 28px;
    --display-medium: 22px;
  }

  .mood-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mood-pill {
    font-size: var(--label);
    padding: 8px 12px;
  }

  .carousel-slide {
    flex: 0 0 170px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-icon {
    width: 68px;
    height: 68px;
    border-radius: 17px;
  }

  .section-title {
    margin-bottom: var(--sp-32);
  }

  .features, .screenshots, .video-section,
  .mood-grid-section, .templates-section,
  .pricing, .testimonials {
    padding: 72px 0;
  }

  .final-cta {
    min-height: 60vh;
  }
}
