/* ════════════════════════════════════════════
   CARIMAGEPRO — LANDING PAGE
   Design system: dark automotive premium
════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --bg-base: #08080f;
  --bg-surface: #0f0f1a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.14);

  --accent-blue: #3b82f6;
  --accent-violet: #8b5cf6;
  --accent-mint: #2dd4bf;
  --accent-purple: #a855f7;
  --accent-gradient: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  --accent-glow: rgba(59, 130, 246, 0.18);

  --text-primary: #ededf5;
  --text-secondary: #a0a0b8;
  --text-muted: #60607a;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3), 0 8px 40px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 80px rgba(79, 142, 247, 0.12);

  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 480ms cubic-bezier(0.22, 1, 0.36, 1);

  --navbar-bg: rgba(8, 8, 15, 0.75);
  --navbar-scrolled: rgba(8, 8, 15, 0.92);
  --navbar-h: 68px;
  --container: 1160px;
}

/* ── Light Theme Overrides ── */
[data-theme="light"] {
  --bg-base: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: rgba(15, 23, 42, 0.03);
  --bg-card-hover: rgba(15, 23, 42, 0.06);
  --border: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(15, 23, 42, 0.12);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 80px rgba(59, 130, 246, 0.06);

  --navbar-bg: rgba(248, 250, 252, 0.75);
  --navbar-scrolled: rgba(255, 255, 255, 0.95);
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Gradient Text ── */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  user-select: none;
}

.btn--primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(79, 142, 247, 0);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(79, 142, 247, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn--xl {
  padding: 17px 36px;
  font-size: 1.1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--navbar-h);
  background: var(--navbar-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-base);
}

.navbar--scrolled {
  background: var(--navbar-scrolled);
  height: calc(var(--navbar-h) - 8px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.95;
  transition: opacity var(--transition-fast);
}

.navbar__logo:hover {
  opacity: 1;
}

.navbar__logo img {
  height: 34px;
  width: auto;
}

.navbar__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

/* ── Theme Toggle ── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.theme-toggle:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.theme-toggle .sun-icon {
  display: none;
}

.theme-toggle .moon-icon {
  display: block;
}

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

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

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  padding-top: calc(var(--navbar-h) + 80px);
  padding-bottom: 100px;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 142, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 142, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  transition: opacity var(--transition-slow);
}

[data-theme="light"] .hero__bg-grid {
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
  opacity: 0.6;
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero__glow--left {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(79, 142, 247, 0.15) 0%, transparent 70%);
}

.hero__glow--right {
  top: -100px;
  right: -200px;
  background: radial-gradient(circle, rgba(155, 89, 247, 0.12) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(79, 142, 247, 0.1);
  border: 1px solid rgba(79, 142, 247, 0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 28px;
  animation: slideDown 0.6s ease both;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 8px var(--accent-blue);
  animation: pulse 2s ease infinite;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 760px;
  animation: slideDown 0.65s 0.1s ease both;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin-top: 20px;
  animation: slideDown 0.65s 0.2s ease both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
  animation: slideDown 0.65s 0.3s ease both;
}

/* ── Before/After Slider ── */
.slider-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 56px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border), var(--shadow-card), var(--shadow-glow);
  animation: slideUp 0.8s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  user-select: none;
  cursor: ew-resize;
  overflow: hidden;
  background: #111;
  transition: background var(--transition-base);
}

[data-theme="light"] .slider {
  background: #f1f5f9;
}

.slider__after,
.slider__before {
  position: absolute;
  inset: 0;
}

.slider__after {
  z-index: 1;
}

.slider__before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: none;
}

.slider__after img,
.slider__before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Placeholder styling when image not found */
.slider__after img[src*="placeholder"],
.slider__before img[src*="placeholder"],
.slider__after img:not([src]),
.slider__before img:not([src]) {
  background: #1a1a2e;
}

.slider__label {
  position: absolute;
  bottom: 16px;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
}

.slider__label--after {
  right: 16px;
  color: #7dc7ff;
  border: 1px solid rgba(79, 142, 247, 0.4);
}

.slider__label--before {
  left: 16px;
  color: #ccc;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 44px;
}

.slider__handle-line {
  width: 2px;
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
}

.slider__handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #111;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.slider:hover .slider__handle-circle {
  transform: scale(1.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

/* ── Stats ── */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  animation: slideDown 0.65s 0.5s ease both;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ════════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════════ */
section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header--left {
  text-align: left;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════════
   STEPS (Come Funziona)
════════════════════════════════════════════ */
.steps {
  background: var(--bg-surface);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.16), transparent 55%),
    var(--bg-card);
  border-radius: 24px;
  padding: 32px 26px 30px;
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: transform var(--transition-base), box-shadow var(--transition-base),
    border-color var(--transition-base), background var(--transition-base);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.16), rgba(59, 130, 246, 0.3));
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.step-card:hover {
  transform: translateY(-6px) translateZ(0);
  border-color: rgba(148, 163, 184, 0.6);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.85);
}

.step-card:hover::before {
  opacity: 0.9;
}

.step-card__number {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  color: rgba(226, 232, 240, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.7);
  z-index: 1;
}

.step-card__icon {
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 30% 0%, rgba(148, 163, 255, 0.6), rgba(37, 99, 235, 0.1));
  border: 1px solid rgba(96, 165, 250, 0.6);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5edff;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.7);
  transition: transform var(--transition-base), box-shadow var(--transition-base),
    background var(--transition-base), border-color var(--transition-base);
}

.step-card:hover .step-card__icon {
  transform: translateY(-3px);
  box-shadow: 0 26px 55px rgba(59, 130, 246, 0.9);
  background: radial-gradient(circle at 30% 0%, rgba(129, 140, 248, 0.95), rgba(37, 99, 235, 0.28));
  border-color: rgba(191, 219, 254, 0.9);
}

.step-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.step-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════
   STYLES (Stili AI)
════════════════════════════════════════════ */
.styles {
  background: var(--bg-base);
  background: #ffffff;
}

.styles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.styles__grid .style-card {
  --style-accent: #3b82f6;
  --style-accent-soft: rgba(59, 130, 246, 0.16);
  --style-accent-border: rgba(59, 130, 246, 0.35);
}

/* Ogni stile ha un colore diverso (come i pricing) */
.styles__grid .style-card:nth-child(1) {
  --style-accent: #f97316; /* arancio "azione" */
  --style-accent-soft: rgba(249, 115, 22, 0.16);
  --style-accent-border: rgba(249, 115, 22, 0.45);
}

.styles__grid .style-card:nth-child(2) {
  --style-accent: #3b82f6; /* blu showroom moderno */
  --style-accent-soft: rgba(59, 130, 246, 0.18);
  --style-accent-border: rgba(59, 130, 246, 0.4);
}

.styles__grid .style-card:nth-child(3) {
  --style-accent: #8b5cf6; /* viola luxury */
  --style-accent-soft: rgba(139, 92, 246, 0.18);
  --style-accent-border: rgba(139, 92, 246, 0.45);
}

.styles__grid .style-card:nth-child(4) {
  --style-accent: #0ea5e9; /* azzurro piazzale esterno */
  --style-accent-soft: rgba(14, 165, 233, 0.18);
  --style-accent-border: rgba(14, 165, 233, 0.45);
}

.styles__grid .style-card:nth-child(5) {
  --style-accent: #fbbf24; /* giallo tramonto */
  --style-accent-soft: rgba(251, 191, 36, 0.2);
  --style-accent-border: rgba(251, 191, 36, 0.5);
}

.styles__grid .style-card:nth-child(6) {
  --style-accent: #22c55e; /* verde foresta */
  --style-accent-soft: rgba(34, 197, 94, 0.2);
  --style-accent-border: rgba(34, 197, 94, 0.5);
}

.styles__grid .style-card:nth-child(7) {
  --style-accent: #ec4899; /* rosa studio personalizzato */
  --style-accent-soft: rgba(236, 72, 153, 0.2);
  --style-accent-border: rgba(236, 72, 153, 0.5);
}

.style-card {
  background: var(--bg-card);
  border: 1px solid var(--style-accent-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.style-card:hover {
  border-color: var(--style-accent);
  transform: translateY(-8px);
  box-shadow: 0 0 30px var(--style-accent-soft), var(--shadow-card);
}

[data-theme="light"] .style-card:hover {
  border-color: var(--style-accent);
  box-shadow: 0 0 36px var(--style-accent-soft), 0 18px 40px rgba(15, 23, 42, 0.12);
}

.style-card:has(.style-card__tag--azione):hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(247, 142, 30, 0.15);
  border-color: rgba(247, 142, 30, 0.4);
}

.style-card:has(.style-card__tag--nature):hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(52, 199, 89, 0.15);
  border-color: rgba(52, 199, 89, 0.4);
}

.style-card:has(.style-card__tag--studio):hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(155, 89, 247, 0.15);
  border-color: rgba(155, 89, 247, 0.4);
}

.style-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #121220;
}

.style-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.style-card:hover .style-card__img-wrap img {
  transform: scale(1.06);
}

/* Placeholder visual when image missing */
.style-card__img-wrap img:not([src]),
.style-card__img-wrap img[src=""],
.style-card__img-wrap img[src*="placeholder"] {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

[data-theme="light"] .style-card__img-wrap img:not([src]),
[data-theme="light"] .style-card__img-wrap img[src=""],
[data-theme="light"] .style-card__img-wrap img[src*="placeholder"] {
  background: linear-gradient(135deg, #e5edf7, #bfdbfe);
}

/* Icona stile (lucida) */
.style-card__icon {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-base);
  opacity: 0.85;
}

[data-theme="light"] .style-card__icon {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--style-accent);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
}

.style-card__overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
}

.style-card__tag {
  padding: 3px 10px;
  background: var(--style-accent-soft);
  border: 1px solid var(--style-accent-border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--style-accent);
}

.style-card__tag--azione {
  background: rgba(247, 142, 30, 0.2);
  border-color: rgba(247, 142, 30, 0.35);
  color: #f78e1e;
}

.style-card__tag--nature {
  background: rgba(52, 199, 89, 0.18);
  border-color: rgba(52, 199, 89, 0.35);
  color: #34c759;
}

.style-card__tag--studio {
  background: rgba(155, 89, 247, 0.2);
  border-color: rgba(155, 89, 247, 0.35);
  color: var(--accent-violet);
}

.style-card__body {
  padding: 10px 18px 20px;
}

.style-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.style-card__desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* More card */
.style-card--more {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  background: rgba(79, 142, 247, 0.04);
  border-style: dashed;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.style-card__more-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
}

.style-card__more-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(79, 142, 247, 0.08);
  border: 1px dashed rgba(79, 142, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  opacity: 0.7;
}

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
/* ═══════════════════════════════════════
   MARKETING KIT
   ═══════════════════════════════════════ */
.marketing {
  padding: 100px 0;
  background: radial-gradient(circle at 70% 30%, rgba(79, 142, 247, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(155, 89, 247, 0.05) 0%, transparent 50%);
}

.marketing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.marketing-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.marketing-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}

.marketing-card__content {
  padding: 40px;
}

.marketing-card__icon-box {
  width: 48px;
  height: 48px;
  background: rgba(79, 142, 247, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-blue);
}

.marketing-card__icon-box--pink {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
}

.marketing-card__icon {
  width: 24px;
  height: 24px;
}

.marketing-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.marketing-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.marketing-card__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.m-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.m-feature__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--color, var(--accent-blue));
  border-radius: 50%;
  margin-top: 6px;
  box-shadow: 0 0 12px var(--color, var(--accent-blue));
}

.m-feature__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.m-feature__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.m-feature__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}



.marketing-card__visual {
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.marketing-card__visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Ads Preview Visual Enhanced */
.ads-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ad-pill {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  width: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.ad-pill::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  border-radius: 0 4px 4px 0;
}

.ad-pill--1::before {
  background: var(--accent-blue);
}

.ad-pill--2::before {
  background: #f78e1e;
}

.ad-pill--3::before {
  background: var(--accent-violet);
}

.marketing-card:hover .ad-pill {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

/* Social Preview Visual Enhanced */
.format-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.format-tag {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.social-frame {
  width: 160px;
  height: 180px;
  background: #111;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-frame__car {
  width: 100%;
  height: 65%;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-frame__car::after {
  content: '🚗';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0.3;
}

.social-frame__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ec4899;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.marketing-card:hover .social-frame {
  transform: scale(1.05) rotate(2deg);
  border-color: rgba(236, 72, 153, 0.3);
}

@media (max-width: 992px) {
  .marketing__grid {
    grid-template-columns: 1fr;
  }

  .marketing-card {
    grid-template-columns: 1fr;
  }

  .marketing-card__visual {
    height: 240px;
    order: -1;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 992px) {
  .marketing__grid {
    grid-template-columns: 1fr;
  }

  .marketing-card {
    grid-template-columns: 1fr;
  }

  .marketing-card__visual {
    height: 200px;
    order: -1;
  }
}

.pricing {
  background: var(--bg-surface);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.pricing-card--starter {
  border-color: rgba(45, 212, 191, 0.3);
  background: radial-gradient(circle at top right, rgba(45, 212, 191, 0.15), transparent 70%),
    rgba(255, 255, 255, 0.03);
}

.pricing-card--starter .check {
  color: var(--accent-mint);
}

.pricing-card--starter:hover {
  border-color: var(--accent-mint);
  box-shadow: 0 0 30px rgba(45, 212, 191, 0.1);
}

.pricing-card--premium {
  border-color: rgba(168, 85, 247, 0.3);
  background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.15), transparent 70%),
    rgba(255, 255, 255, 0.03);
}

.pricing-card--premium .check {
  color: var(--accent-purple);
}

.pricing-card--premium:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.1);
}

.pricing-card--featured {
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 70%),
    rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.15), var(--shadow-card);
}

.pricing-card--featured .check {
  color: var(--accent-blue);
}

.pricing-card--featured:hover {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.25), 0 12px 48px rgba(0, 0, 0, 0.4);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.pricing-card__tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pricing-card__currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.pricing-card__amount {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-card__features li.disabled {
  color: var(--text-muted);
}

.check {
  color: var(--accent-blue);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing__note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing__note a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing__note a:hover {
  color: #7aaeff;
}

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq {
  background: var(--bg-base);
}

.faq__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: #fff;
}

.faq__icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition-base), color var(--transition-fast);
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
  color: var(--accent-blue);
}

.faq__answer {
  padding: 0 0 22px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  animation: expandDown 0.28s ease both;
}

.faq__answer a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq__answer a:hover {
  color: #7aaeff;
}

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: var(--bg-surface);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

[data-theme="light"] .cta-banner {
  background: var(--bg-base);
}

.cta-banner__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(79, 142, 247, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-banner__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  max-width: 640px;
}

.cta-banner__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  padding: 48px 0;
  background: var(--bg-base);
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__brand img {
  height: 28px;
  width: auto;
  opacity: 0.75;
}

.footer__tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-left: auto;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--accent-blue);
}

.footer__copy {
  width: 100%;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ════════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════════ */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

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

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .navbar__links {
    display: none;
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .footer__links {
    margin-left: 0;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    gap: 20px;
  }

  .styles__grid {
    grid-template-columns: 1fr;
  }

  .navbar__inner {
    gap: 20px;
  }
}

/* 
   BACK TO TOP
 */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(8px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background: var(--accent-violet);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}