/* =============================================
   EDITZI – GLOBAL RESET & VARIABLES
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #e02020;
  --red-dark: #b01818;
  --red-glow: rgba(224, 32, 32, 0.25);
  --bg: #080808;
  --bg-2: #111111;
  --bg-3: #161616;
  --card: #141414;
  --card-border: rgba(255, 255, 255, 0.07);
  --text: #f0f0f0;
  --muted: #888;
  --white: #ffffff;
  --font: 'Inter', sans-serif;
  --script: 'Playfair Display', serif;
  --radius: 16px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  font-family: var(--font);
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.full-btn {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius);
}

/* =============================================
   TYPOGRAPHY HELPERS
   ============================================= */
.italic-script {
  font-family: var(--script);
  font-style: italic;
  font-weight: 700;
}

.red-italic {
  color: var(--red);
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}

.section-title em {
  color: var(--white);
}

/* =============================================
   NAVBAR  –  Floating Pill (matches reference)
   ============================================= */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  max-width: 700px;
  /* no full-width bar */
}

/* The pill container */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 6px 6px 6px 18px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  white-space: nowrap;
}

/* Logo: play icon + brand text */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #e02020;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-play i {
  font-size: 8px;
  color: #fff;
  margin-left: 1px;
}

.nav-brand {
  font-family: var(--font);
  font-style: italic;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.5px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.nav-links a:hover {
  color: #fff;
}

/* CTA "Book a call" button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: #e02020;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font);
  border-radius: 50px;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-cta-btn:hover {
  background: #b01818;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(224, 32, 32, 0.35);
}

/* Hamburger – hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile dropdown – appears below pill */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(12, 4, 4, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-top: 8px;
  overflow: hidden;
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .btn {
  margin: 8px 12px 12px;
  width: calc(100% - 24px);
  justify-content: center;
  border-radius: 50px;
  border: none;
}


/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(224, 32, 32, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 32, 32, 0.12);
  border: 1px solid rgba(224, 32, 32, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #ff8080;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title em {
  color: var(--white);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* =============================================
   SOLUTION / ALL-IN-ONE SECTION
   ============================================= */
.solution-section {
  padding: 90px 0 60px;
  background: var(--bg);
  text-align: center;
}

/* Badge pill */
.sol-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  background-color: #1B1B1F;
}

.sol-badge-dot {
  width: 6px;
  height: 6px;
  background: #e02020;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.8s infinite;
}

/* Main heading */
.sol-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.sol-title em {
  font-family: var(--script);
  font-style: italic;
  font-weight: 700;
  color: var(--white);
}

/* Subtitle */
.sol-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 48px;
}

/* Service tag rows */
.sol-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.sol-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  cursor: default;
  white-space: nowrap;
}

/* .sol-tag:hover {
  border-color: rgba(224,32,32,0.5);
  color: var(--white);
  background: rgba(224,32,32,0.06);
} */
.sol-tag i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* .sol-tag:hover i { color: #e02020; } */

/* Trusted by text */
.sol-trusted {
  margin-top: 52px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
}

/* =============================================
   TRUSTED BRANDS MARQUEE
   ============================================= */
.brands-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 0;
  position: relative;
}

/* Fade edges */
.brands-marquee-wrapper::before,
.brands-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.brands-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.brands-marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
  width: max-content;
  animation: brands-scroll 28s linear infinite;
}

.brands-marquee-wrapper:hover .brands-marquee-track {
  animation-play-state: paused;
}

@keyframes brands-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.brand-name {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: -0.3px;
  flex-shrink: 0;
  transition: color 0.3s ease;
  cursor: default;
}

.brand-name:hover {
  color: rgba(255, 255, 255, 0.55);
}

.brand-italic {
  font-family: var(--script);
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
}

/* =============================================
   COLLECTIONS SECTION
   ============================================= */
.collections-section {
  padding: 100px 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: center;
  overflow: hidden;
}

.collection-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

.collection-slider {
  display: none;
}

.collection-label-wrap {
  margin-bottom: 40px;
  z-index: 10;
}

.collection-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}

.badge-outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.6);
}

.badge-red {
  background: #e02020;
  color: #fff;
}

.collection-fan {
  position: relative;
  width: 160px;
  height: 240px;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.cfan-card {
  position: absolute;
  width: 140px;
  height: 220px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--clr), var(--clr2));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center 200%;
  /* Stacked initially */
  transform: rotate(calc((var(--i) - 4.5) * 2deg));
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  display: block;
}

.collection-row-complex .cfan-card {
  width: 150px;
  height: 230px;
}

/* Hover state via JS class */
.collection-fan.is-open .cfan-card {
  transform: rotate(calc((var(--i) - 4.5) * 12deg));
}

.premium-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(224, 32, 32, 0.12) 0%, var(--bg) 60%) !important;
}

.collection-red-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(224, 32, 32, 0.12) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

/* =============================================
   SERVICES (hidden card section)
   ============================================= */
.services {
  padding: 100px 0;
  background: var(--bg);
}

.services .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.services .section-eyebrow {
  text-align: center;
}

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

.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 32, 32, 0.3);
  box-shadow: 0 12px 40px rgba(224, 32, 32, 0.1);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrapper {
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.marquee-track .dot {
  color: var(--red);
  font-size: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* =============================================
   PORTFOLIO / FAN GALLERY
   ============================================= */
.portfolio {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--bg), #0d0000, var(--bg));
}

.portfolio-glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(224, 32, 32, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.portfolio .section-eyebrow {
  text-align: center;
  margin-bottom: 60px;
}

.fan-gallery {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 280px;
  position: relative;
  margin-bottom: 30px;
}

.fan-card {
  position: absolute;
  width: 120px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  transform-origin: bottom center;
  transition: transform 0.4s ease;
}

.fan-card:hover {
  transform: scale(1.05) translateY(-10px) !important;
  z-index: 10 !important;
}

.fan-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.fan-far-left {
  transform: rotate(-40deg) translateX(-260px);
  z-index: 1;
}

.fan-left {
  transform: rotate(-25deg) translateX(-170px);
  z-index: 2;
}

.fan-center-left {
  transform: rotate(-12deg) translateX(-85px);
  z-index: 3;
}

.fan-center {
  transform: rotate(0deg);
  z-index: 5;
}

.fan-center-right {
  transform: rotate(12deg) translateX(85px);
  z-index: 3;
}

.fan-right {
  transform: rotate(25deg) translateX(170px);
  z-index: 2;
}

.fan-far-right {
  transform: rotate(40deg) translateX(260px);
  z-index: 1;
}

.fan-center-card {
  background: linear-gradient(160deg, #1c1c1c, #2a2a2a);
}

.fan-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--script);
  font-style: italic;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.fan-bottom {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.fan-bottom-card {
  width: 100px;
  height: 140px;
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.fan-bottom-card:hover {
  transform: translateY(-8px);
}

/* =============================================
   PROCESS SECTION (Effortlessly)
   ============================================= */
.process-section {
  padding: 120px 0;
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.process-icon i {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.process-step:hover .process-icon {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.process-step:hover .process-icon i {
  color: var(--white);
}

.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.process-cta-wrap {
  text-align: center;
}

.process-btn {
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

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

.pricing-header-wrap {
  text-align: center;
}

.pricing-cards-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

/* Individual Card */
.p-card {
  background: linear-gradient(180deg, #181111 0%, #2a0b0b 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.p-card-complex {
  background: linear-gradient(180deg, #181111 0%, #a41b1b 100%);
}

.p-card-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.p-card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.p-card-title-row h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}

.p-badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.p-badge-dark {
  background: rgba(0, 0, 0, 0.4);
}

.p-badge-red-text {
  color: #ff6b6b;
}

.p-card-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.p-currency {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-right: 2px;
}

.p-amount {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
}

.p-period {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 4px;
}

.p-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.p-toggle {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  padding: 4px;
}

.p-toggle-btn {
  flex: 1;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.p-toggle-btn.active-white {
  background: var(--white);
  color: #000;
}

.p-toggle-btn.active-red {
  background: var(--red);
  color: var(--white);
}

.p-toggle-btn.outline {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.p-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
}

.p-features li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.p-plus {
  color: var(--red);
  font-weight: 800;
  margin-right: 12px;
}

.p-plus-dim {
  color: rgba(255, 255, 255, 0.3);
}

.btn-white {
  background: var(--white);
  color: #000;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.p-btn-main {
  width: 100%;
  text-align: center;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  justify-content: center;
}

/* Premium Banner */
.p-premium-banner {
  background: linear-gradient(90deg, #2a1111 0%, #5d1414 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 20px auto;
  max-width: 900px;
}

.p-premium-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.p-premium-title-row h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.p-premium-sub {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.p-premium-sub em {
  color: var(--white);
  font-size: 22px;
}

.p-premium-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.p-premium-right {
  text-align: right;
}

.p-premium-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.p-premium-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}

.p-btn-sm {
  padding: 10px 24px;
  font-size: 13px;
  border-radius: 50px;
}

/* Compare Banner */
.p-compare-banner {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 900px;
}

.p-compare-left h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.p-compare-left p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.p-btn-outline-dim {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

.p-btn-outline-dim:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

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

.features-card {
  background: linear-gradient(to bottom, #050505 0%, #262628 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  padding: 80px 60px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* subtle bottom gradient inside the card */
.features-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
}

.f-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.f-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 64px;
}

.f-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.f-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.f-icon {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  transition: color var(--transition);
}

.f-item:hover .f-icon {
  color: var(--white);
}

.f-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.f-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

.f-cta {
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  padding: 100px 0;
  background: var(--bg);
}

.faq-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  gap: 80px;
}

.faq-left {
  flex: 0 0 32%;
}

.faq-heading {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.faq-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 32px;
}

.faq-cta-btn {
  padding: 14px 32px;
  font-size: 14px;
  border-radius: 50px;
}

.faq-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.f-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.f-accordion-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.f-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.f-accordion-btn:hover {
  color: var(--white);
}

.f-plus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform var(--transition), border-color var(--transition);
}

.f-accordion-btn:hover .f-plus-icon {
  border-color: rgba(255, 255, 255, 0.3);
}

.f-accordion-item.open .f-plus-icon {
  transform: rotate(45deg);
}

.f-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.f-accordion-item.open .f-accordion-content {
  max-height: 200px;
}

.f-accordion-content p {
  padding: 0 0 24px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 100px 0;
  background: var(--bg);
}

.contact .section-eyebrow {
  text-align: center;
}

.contact .section-title {
  text-align: center;
  margin-bottom: 48px;
}

/* =============================================
   FOOTER & CTA
   ============================================= */
.footer {
  background: #0b0c10;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

/* CTA Section */
.footer-cta-container {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.footer-cta-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.footer-cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
}

.footer-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.footer-outline-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-outline-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Giant Watermark & Red Glow */
.footer-watermark {
  text-align: center;
  font-family: var(--font);
  font-size: clamp(80px, 20vw, 280px);
  font-weight: 900;
  letter-spacing: -6px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 0;
  margin-bottom: -40px;
  user-select: none;
}

.footer-watermark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 400px;
  background: radial-gradient(ellipse, rgba(224, 32, 32, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Footer Links */
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.f-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.f-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  text-decoration: none;
  transition: color var(--transition);
}

.f-col a:hover {
  color: var(--white);
}

/* Editor Card */
.f-col-editor {
  display: flex;
  justify-content: flex-end;
}

.editor-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  max-width: 320px;
}

.editor-card h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 8px;
}

.editor-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 16px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
  border-radius: 50px;
}

/* Bottom Bar */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-bar p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-social-links {
  display: flex;
  gap: 24px;
}

.footer-social-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-social-links a:hover {
  color: var(--white);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-6px);
  }

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

  .p-premium-banner,
  .p-compare-banner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
  }

  .p-premium-title-row {
    justify-content: center;
  }

  .p-premium-right {
    text-align: center;
  }

  .p-premium-actions {
    justify-content: center;
  }

  .faq-layout {
    flex-direction: column;
    gap: 48px;
  }

  .faq-left {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .f-col-editor {
    justify-content: flex-start;
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .navbar {
    top: 12px;
    max-width: calc(100vw - 32px);
  }

  .nav-links,
  .nav-cta-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
  }

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

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .fan-gallery {
    transform: scale(0.72);
    transform-origin: bottom center;
  }

  .features-card {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .p-premium-actions {
    flex-direction: column;
    width: 100%;
  }

  .p-premium-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .p-compare-right {
    width: 100%;
  }

  .p-compare-right .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .f-col-editor {
    grid-column: auto;
  }

  .footer-bottom-bar { flex-direction: column; gap: 16px; text-align: center; }

  /* Infinite Scroll Slider (Mobile Only) */
  .collection-fan {
    display: none !important;
  }
  .collection-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0 40px;
    margin-top: -20px;
  }
  .slider-track {
    display: flex;
    width: max-content;
    animation: infiniteScroll 25s linear infinite;
  }
  @keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .slider-card {
    flex: 0 0 160px;
    height: 240px;
    margin: 0 10px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
  }
  .collection-row {
    padding: 0;
  }
}