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

:root {
  --cream: #FFFFFF;
  --cream2: #F2F2F4;
  --dark: #000000;
  --dark2: #141414;
  --dark3: #1E1E1E;
  --orange: #FF6043;     /* Carrott */
  --orange-hover: #E04A2E;
  --blue: #C6E4EE;       /* Light Blue accento */
  --blue2: #8EC8DC;      /* azzurro medio */
  --blue3: #5AAECC;      /* azzurro saturo */
  --stone: #BEBBAE;
  --red: #FF6043;
  --red-hover: #E04A2E;
  --text-dark: #111111;
  --text-muted: #7A7A88;
  --text-light: #FFFFFF;
  --text-light-muted: rgba(255,255,255,0.5);
  --;
  --border-dark: rgba(255,255,255,0.07);
  --sans: 'Inter', system-ui, sans-serif;
  --display: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

h1, h2, h3,
.logo, .plan-name, .sidebar-title, .pack10-amount,
.bento-title, .step-title, .deliver-title, .footer-logo {
  font-weight: 400;
}

body {
  background: linear-gradient(135deg, #000000 0%, #222222 100%);
  background-attachment: fixed;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── WRAPPER CARDS (sfondo crema) ── */
.page-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  margin: 12px;
  overflow: hidden;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.logo {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav ul a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--text-dark); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream2);
  color: var(--text-dark) !important;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ddd9d0;
  border-radius: inherit;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
  opacity: 0;
  z-index: -1;
}
.nav-cta:hover::before {
  transform: translateX(0);
  opacity: 1;
}

.nav-arrow {
  width: 22px; height: 22px;
  background: var(--text-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 0.7rem;
}

/* ── HERO ── */
.hero {
  min-height: var(--hero-min-height, 50vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 3.5rem;
  text-align: center;
  max-width: 1380px;
  margin: 0 auto;
  box-sizing: border-box;
  transform-origin: center top;
  will-change: transform, opacity, min-height;
}

.hero.reveal {
  opacity: 0;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero.reveal.on {
  opacity: 1;
  transform: none;
}

.hero.reveal.on.hero-scroll-ready {
  transition: none;
}

.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(52,199,89,0.15);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: #2DB554;
  margin-bottom: 1.8rem;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2DB554;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(45,181,84,0.6);
}

h1 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-size: clamp(2.25rem, 4.2vw, 3.75rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 100%;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
  opacity: 0;
  transform: scale(0.88) translateY(16px);
  transform-origin: center center;
}

.hero.reveal.on .hero-title {
  animation: heroTitleIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards;
}

@keyframes heroTitleIn {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(16px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}

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

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  padding: 4px 4px 4px 1.4rem;
  border-radius: 8px;
  font-weight: 400;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  height: 56px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.3s ease;
}
.btn-red::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-hover);
  border-radius: inherit;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
  opacity: 0;
  z-index: -1;
}
.btn-red:hover::before {
  transform: translateX(0);
  opacity: 1;
}

.btn-red-arrow {
  aspect-ratio: 1 / 1;
  height: calc(100% );
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.avatars {
  display: flex;
}
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  margin-left: -8px;
  background: var(--cream2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem;
  font-weight: 400;
  color: var(--text-muted);
  overflow: hidden;
}
.avatar:first-child { margin-left: 0; }

.trust-text { text-align: left; }
.stars { color: var(--orange); font-size: 0.75rem; letter-spacing: 1px; }
.trust-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

/* Hidden — 40+ agenzie social proof (remove to show again) */
.trust-row,
.bento-card:has(.mini-avatars) {
  display: none !important;
}

/* ── PORTFOLIO STRIP ── */
.portfolio-strip {
  --card-width: 180px;
  min-height: var(--strip-min-height, 50vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  overflow: visible;
  box-sizing: border-box;
  will-change: min-height;
}

.portfolio-strip .portfolio-track-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}

.strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.strip-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  background: none;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.strip-line { display: none; }
.strip-num { font-size: 0.82rem; color: var(--text-muted); font-weight: 400; }

.portfolio-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-scale {
  width: 100%;
  transform-origin: center center;
  will-change: transform;
}

.portfolio-track {
  display: flex;
  gap: 8px;
  width: max-content;
  will-change: transform;
}

.portfolio-track-group {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.portfolio-track.is-paused { will-change: auto; }

.portfolio-grid {
  display: flex;
  gap: 10px;
}

.portfolio-card {
  aspect-ratio: 9/16;
  width: var(--card-width, 180px);
  flex-shrink: 0;
  border-radius: 4px;
  background: var(--dark);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-card video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.55));
  pointer-events: none;
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

/* Finte immagini simulate con gradienti */
.pc-1 { background: linear-gradient(160deg, #4A6EA8 0%, #1a3a5c 100%); }
.pc-2 { background: linear-gradient(160deg, #3A9E6E 0%, #0d4a2e 100%); }
.pc-3 { background: linear-gradient(160deg, #8A7A6E 0%, #3a2e28 100%); }
.pc-4 { background: linear-gradient(160deg, #C4A85A 0%, #5a3a0a 100%); }
.pc-5 { background: linear-gradient(160deg, #B8A090 0%, #5a3a2a 100%); }

/* ── DARK SECTION (bento) ── */
.dark-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #222222 100%);
  padding: 2.5rem 2.5rem;
  color: var(--text-light);
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: -var(--radius);
}

.dark-section-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(58%, 520px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 35%, black 72%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 35%, black 72%);
}

.dark-section-bg video {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right center;
}

.dark-section-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0;
}

.section-header {
  display: block;
  margin-bottom: 0.5rem;
}
.section-line { width: 24px; height: 1px; background: var(--green); }
.section-kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  background: none;
  border-radius: 0;
  padding: 0;
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--sans);
  margin-bottom: 0.8rem;
}

h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}
.dark-section h2 { color: var(--text-light); }
.light-section h2 { color: var(--text-dark); }

/* ── BENTO GRID ── */
.bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 1fr);
  grid-auto-flow: row dense;
  gap: 10px;
  justify-content: start;
}

.bento-card {
  background: #141414;
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  position: relative;
  overflow: hidden;
  grid-column: span 1;
}

.bento-card.col-span-2 { grid-column: span 2; }
.bento-card.row-span-2 { grid-row: span 2; }

.bento-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.bento-label {
  font-size: 0.78rem;
  color: var(--text-light-muted);
  font-weight: 400;
}
.bento-title {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.bento-desc {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.bento-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 1rem;
  width: fit-content;
}
.bento-icon-box {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.bento-arrows {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 0.8rem;
}
.bento-arrow { color: var(--blue3); font-size: 0.75rem; }

.mini-avatars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 0.5rem;
}
.mini-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--dark3);
}
.mini-av.c1 { background: #4A5A8A; }
.mini-av.c2 { background: #5A4A8E; }
.mini-av.c3 { background: #4A7A9E; }
.mini-av.c4 { background: #6A4A9E; }
.mini-av.c5 { background: #5A6AAE; }
.mini-av.c6 { background: #3A6A9E; }
.mini-av.c7 { background: #7A5AAE; }
.mini-av.c8 { background: #4A8AAE; }
.mini-av.c9 { background: #6A4A9E; }
.mini-av.c10 { background: #5A7ABE; }
.mini-av.c11 { background: #7A5ABE; }
.mini-av.c12 { background: #4A6AAE; }
.mini-av.c13 { background: #6A5A9E; }
.mini-av.c14 { background: #3A7A9E; }
.mini-av.c15 { background: #5A5AAE; }

.bento-stars { color: var(--orange); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.7rem; }


/* ── PLATFORM LOGOS ── */
.platform-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.plat-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  padding: 0.45rem 1rem 0.45rem 0.7rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.dark-section .section-kicker { color: rgba(255,255,255,0.35); }

/* ── COME FUNZIONA (cream) ── */
.light-section {
  background: var(--cream);
  padding: 2.5rem 2.5rem;
}

.timeline {
  position: relative;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 1.8rem;
  position: relative;
}
.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 5px;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}
.timeline-item:hover .timeline-dot { transform: scale(1.5); }
.timeline-line {
  width: 2px;
  flex: 1;
  background: rgba(0,0,0,0.07);
  margin-top: 6px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.timeline-item:last-child .timeline-line { display: none; }
.timeline-line::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
  animation: lineFlare 3.5s ease-in-out infinite;
  border-radius: 2px;
}
.timeline-item:nth-child(2) .timeline-line::after { animation-delay: 1.15s; }
@keyframes lineFlare {
  0%   { top: -40%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}
.timeline-content { padding-bottom: 2.8rem; }
.timeline-item:last-child .timeline-content { padding-bottom: 0; }
.timeline-num {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.step-title {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}
.step-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 0.9rem;
  background: #F2F2F2;
  border-radius: 4px;
  padding: 0.28rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 400;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── DELIVERABLES (cream) ── */
.delivers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 2.5rem;
}

.deliver-card {
  background: var(--cream2);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  transition: border-color 0.2s;
}
.deliver-card:hover { border-color: rgba(30,33,24,0.25); }

.deliver-emoji svg { width: 32px; height: 32px; }
.deliver-emoji {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.deliver-title {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.deliver-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing-section {
  background: var(--cream);
  padding: 2.5rem 2.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 2.5rem;
  align-items: stretch;
}

.plan-card {
  background: var(--cream2);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.plan-card .plan-features {
  flex: 1;
}

.plan-card.dark-plan {
  background: #0D0D0D;
}


.spot-dot { width: 6px; height: 6px; border-radius: 50%; background: #2DB554; box-shadow: 0 0 5px rgba(45,181,84,0.6); flex-shrink: 0; }

.plan-name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.dark-plan .plan-name { color: #fff; }

.plan-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.dark-plan .plan-tagline { color: rgba(255,255,255,0.45); }

.plan-price {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.dark-plan .plan-price { color: #fff; }

.plan-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.plan-saving {
  font-size: 0.78rem;
  color: var(--blue3);
  font-weight: 400;
  margin-bottom: 1.5rem;
  min-height: 1em;
}

.btn-red-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--red);
  color: #fff;
  padding: 4px 4px 4px 1.2rem;
  border-radius: 8px;
  font-weight: 400;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  height: 56px;
  margin-bottom: 1.8rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-red-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-hover);
  border-radius: inherit;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
  opacity: 0;
  z-index: -1;
}
.btn-red-full:hover::before {
  transform: translateX(0);
  opacity: 1;
}

.btn-dark-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 4px 4px 4px 1.2rem;
  border-radius: 8px;
  font-weight: 400;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  height: 56px;
  margin-bottom: 1.8rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-dark-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  border-radius: inherit;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
  opacity: 0;
  z-index: -1;
}
.btn-dark-full:hover::before {
  transform: translateX(0);
  opacity: 1;
}

.btn-circle-arrow {
  aspect-ratio: 1 / 1;
  height: 100%;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.btn-red-full .btn-circle-arrow { background: rgba(255,255,255,0.25); }
.btn-dark-full .btn-circle-arrow { background: rgba(255,255,255,0.2); }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.feat-check { color: var(--text-dark); font-size: 0.8rem; flex-shrink: 0; margin-top: 1px; }

.pricing-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-card {
  background: #141414;
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
}

.sidebar-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.4rem;
}
.sidebar-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.3rem;
  line-height: 1.5;
}

.sidebar-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.sidebar-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.sf-check { color: rgba(255,255,255,0.6); font-size: 0.75rem; }

/* ── FAQ ── */
.faq-section {
  background: var(--cream);
  padding: 3rem 2.5rem;
}

.faq-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
}

details {
  background: transparent;
  border-bottom: 1px solid #E8E8E8;
  padding: 1rem 0;
  cursor: pointer;
}


summary {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
details[open] summary { color: var(--text-dark); }

.faq-plus {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  user-select: none;
}
details[open] .faq-plus {
  transform: rotate(45deg);
  color: var(--text-dark);
}

.faq-answer {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 0.75rem;
  padding-bottom: 0.25rem;
  max-width: 680px;
}

/* ── FOOTER CTA ── */
.footer-cta {
  background: #fff;
  padding: 2rem 2.5rem 3rem;
  text-align: center;
  overflow: visible;
  perspective: 1400px;
  perspective-origin: center 55%;
}

.footer-cta h2 {
  max-width: 700px;
  margin: 0 auto 0.8rem;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--text-dark) !important;
}

.footer-cta p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(135deg, #000000 0%, #1e1e1e 100%);
  padding: 1.8rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 12px 12px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.footer-logo {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}


/* ── SECTION FADE IN ── */
.section-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.section-fade.on {
  opacity: 1;
  transform: translateY(0);
}


.timeline-reveal {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.timeline-reveal.on {
  opacity: 1;
  transform: translateX(0);
}

/* ── ANIM ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.on { opacity: 1; transform: translateY(0); }

/* Child stagger variants */
.reveal-left  { opacity: 0; transform: translateX(-24px); transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.reveal-left.on  { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.reveal-scale.on { opacity: 1; transform: scale(1); }

.reveal-perspective {
  transform-origin: center bottom;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .hero.reveal {
    opacity: 1;
    transition: none;
  }
  .hero-title {
    opacity: 1;
    transform: none;
  }
  .hero.reveal.on .hero-title {
    animation: none;
  }
  .hero {
    transform: none !important;
    opacity: 1 !important;
    min-height: 50vh !important;
  }
  .portfolio-strip {
    min-height: 50vh !important;
  }
  .carousel-scale {
    transform: none !important;
  }
  .reveal-perspective {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .page-wrap { margin: 6px; }
  .nav-right ul { display: none; }
  nav { padding: 1rem 1.2rem; }
  .hero { padding: 2.5rem 1.5rem; }
  .hero-title { padding: 0 0.5rem; margin-bottom: 1.6rem; }
  .portfolio-strip { --card-width: 130px; padding: 1.5rem 1rem; }
  .portfolio-card { width: 130px; }
  .dark-section, .light-section, .pricing-section, .faq-section, .footer-cta { padding: 3rem 1.2rem; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-card.col-span-2 { grid-column: span 2; }
  .delivers-grid, .pricing-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; margin: 0 6px 6px; padding: 1.5rem 1.2rem; }
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.feature-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
}
