/* ============================================================
   RX STUDIO — Design System & Component Styles
   Premium Dark-Mode SaaS Portfolio
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --bg-primary: #0A0A0C;
  --bg-surface: #121216;
  --bg-surface-hover: #1A1A22;
  --bg-card: #111115;
  --bg-card-hover: #181820;

  --color-red: #E63946;
  --color-red-light: #FF4D5E;
  --color-red-dark: #C62D39;
  --color-red-glow: rgba(230, 57, 70, 0.45);
  
  --color-blue: #3A86FF;
  --color-blue-light: #5B9BFF;
  --color-blue-dark: #206AE6;
  --color-blue-glow: rgba(58, 134, 255, 0.4);

  --color-brown: #8B5E3C;
  --color-brown-light: #A67B5B;

  --text-primary: #F8F8F8;
  --text-secondary: rgba(248, 248, 248, 0.65);
  --text-tertiary: rgba(248, 248, 248, 0.38);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(230, 57, 70, 0.4);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #E63946 0%, #8338EC 50%, #3A86FF 100%);
  --gradient-button: linear-gradient(135deg, #E63946 0%, #D90429 45%, #3A86FF 100%);
  --gradient-glow: linear-gradient(90deg, transparent, #E63946 30%, #3A86FF 70%, transparent);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 110px;
  --container-width: 1200px;
  --container-padding: 24px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

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

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

ul, ol {
  list-style: none;
}

/* ---------- Typography Scale ---------- */
.h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-weight: 700;
  line-height: 1.28;
}

.text-body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.text-gradient {
  background: linear-gradient(135deg, #E63946 10%, #FF6B6B 40%, #3A86FF 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-glow-red {
  display: inline-block;
  color: #FF4D5E;
  background: linear-gradient(135deg, #FF6B6B 0%, #E63946 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 24px rgba(230, 57, 70, 0.6);
}

.text-white {
  color: var(--text-primary);
}

.desktop-br {
  display: block;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ---------- Section Header & Badges ---------- */
.section-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.35);
  color: #FF6B6B;
  margin-bottom: 16px;
}

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

.section-header .h2 {
  margin-bottom: 14px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.42s; }

/* ---------- Gradient Divider ---------- */
.gradient-divider {
  width: 100%;
  height: 1px;
  background: var(--gradient-glow);
  position: relative;
  margin-bottom: 65px;
}

.gradient-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.5), 0 0 40px rgba(58, 134, 255, 0.3);
  z-index: 1;
}

.gradient-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 28px;
  background: var(--gradient-glow);
  filter: blur(24px);
  opacity: 0.5;
}

/* ============================================================
   INNOVATIVE BUTTON DESIGNS
   ============================================================ */
.btn-primary,
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  background: var(--gradient-button);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px var(--color-red-glow), 0 2px 10px var(--color-blue-glow);
  overflow: hidden;
  transition: all var(--transition-base);
  z-index: 1;
}

.btn-primary::before,
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.75s ease;
  z-index: -1;
}

.btn-primary:hover::before,
.nav-cta:hover::before {
  left: 150%;
}

.btn-primary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230, 57, 70, 0.6), 0 4px 20px rgba(58, 134, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-primary:active,
.nav-cta:active {
  transform: translateY(0) scale(0.98);
}

.btn-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.btn-icon-circle svg {
  width: 14px;
  height: 14px;
  stroke: #FFFFFF;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-icon-circle,
.nav-cta:hover .btn-icon-circle {
  background: #FFFFFF;
  transform: scale(1.08);
}

.btn-primary:hover .btn-icon-circle svg,
.nav-cta:hover .btn-icon-circle svg {
  stroke: #E63946;
  transform: translateX(1px) translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR & PROMINENT LOGO
   ============================================================ */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1120px;
  z-index: 1000;
  border-radius: var(--radius-full);
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  padding: 0 10px;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 12, 0.94);
  border-color: var(--border-medium);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 20px rgba(230, 57, 70, 0.15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px; /* Increased to fit prominent logo */
  padding: 0 14px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 0;
}

/* Big, visible, readable logo */
.brand-logo-img {
  height: 52px; /* Significantly increased for great readability */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.8));
  transition: transform var(--transition-fast);
}

.brand-logo-img:hover {
  transform: scale(1.05);
}

.footer-logo-img {
  height: 68px; /* Prominent footer logo */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1120px;
  background: rgba(12, 12, 16, 0.96);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 20px;
  z-index: 999;
}

.mobile-nav.open {
  display: block;
  animation: fadeSlideDown 0.3s ease forwards;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mobile-nav .nav-link {
  display: block;
  padding: 12px 14px;
  font-size: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav .nav-link:last-child {
  border-bottom: none;
}

.mobile-nav .nav-cta {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 65px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Ensure hero section elements are immediately and cleanly rendered */
.hero .reveal,
.hero-left,
.hero-right,
.hero-content {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 50px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  position: relative;
  z-index: 11;
}

.hero-title {
  max-width: 580px;
  width: 100%;
}

.hero-title .h1 {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-subtext {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(248, 248, 248, 0.75);
  margin-top: 14px;
}

/* Trust Badge Ticker */
.trust-ticker-container {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  width: fit-content;
  max-width: 100%;
}

.trust-ticker {
  position: relative;
  height: 28px;
  width: 310px;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.trust-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.trust-badge.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0);
  pointer-events: auto;
}

.trust-badge.exit-up {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.trust-badge .badge-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.trust-badge .badge-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-badge .badge-highlight {
  color: #FF6B6B;
  font-weight: 700;
}

.trust-badge .badge-arrow {
  color: var(--text-tertiary);
  font-size: 0.88rem;
}

/* Hero CTA Wrap */
.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

/* Hero Marquee (Impact Highlights) */
.brand-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  width: 100%;
  max-width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.brand-marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

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

.metric-item {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.metric-item:hover {
  color: var(--text-primary);
  border-color: rgba(230, 57, 70, 0.4);
  background: rgba(230, 57, 70, 0.08);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero Right — Featured Video Card */
.hero-right {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 11;
}

.hero-video-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  background: #0A0A0C;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(230, 57, 70, 0.15);
  transition: all var(--transition-base);
}

.hero-video-card:hover {
  border-color: rgba(230, 57, 70, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(58, 134, 255, 0.25);
}

.video-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: #0A0A0C;
  overflow: hidden;
  border-radius: inherit;
}

.video-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
  display: block;
}

.hero-video-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  pointer-events: none;
  z-index: 2;
}

.hero-video-tag svg {
  width: 14px;
  height: 14px;
}

/* Hero Background Glows */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.hero-bg .glow-red {
  position: absolute;
  top: 5%;
  left: -8%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--color-red-glow), transparent 70%);
  filter: blur(90px);
  opacity: 0.45;
  animation: float-glow 9s ease-in-out infinite;
}

.hero-bg .glow-blue {
  position: absolute;
  bottom: 5%;
  right: -8%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--color-blue-glow), transparent 70%);
  filter: blur(90px);
  opacity: 0.4;
  animation: float-glow 9s ease-in-out 4.5s infinite;
}

@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -25px) scale(1.08); }
}

/* ============================================================
   SOCIAL PROOF / TESTIMONIAL MARQUEE
   ============================================================ */
.proof-section {
  padding: 80px 0;
  overflow: hidden;
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  animation: testimonial-scroll 34s linear infinite;
  width: max-content;
}

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

@keyframes testimonial-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.proof-card {
  flex-shrink: 0;
  width: 340px;
  padding: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: all var(--transition-fast);
}

.proof-card:hover {
  border-color: rgba(230, 57, 70, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.proof-card-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.proof-card-quote .highlight {
  color: var(--text-primary);
  font-weight: 600;
}

.proof-card-client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-card-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.proof-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-card-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.proof-card-role {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

/* Rating Bar */
.rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 45px;
  padding: 14px 28px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.02);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: border-color var(--transition-fast);
}

.rating-bar:hover {
  border-color: var(--border-medium);
}

.rating-stars {
  display: flex;
  gap: 3px;
  color: #FFB800;
}

.rating-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.rating-score {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.rating-count {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ============================================================
   RX STUDIO 3-STEP PRODUCTION PIPELINE (ORIGINAL ANIMATION STYLE)
   ============================================================ */
.pipeline-section {
  padding: 100px 0;
  position: relative;
}

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

.pipeline-step-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  cursor: pointer;
}

.pipeline-step-node {
  display: flex;
  align-items: center;
  position: relative;
}

.pipeline-node-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: all var(--transition-base);
}

.pipeline-node-circle.active-circle {
  border-color: var(--color-red);
  background: linear-gradient(135deg, #E63946, #8338EC);
  box-shadow: 0 0 25px var(--color-red-glow);
}

.pipeline-node-connector {
  position: absolute;
  top: 50%;
  left: 48px;
  right: -28px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-medium), rgba(230, 57, 70, 0.4), var(--border-medium));
  z-index: 1;
}

.pipeline-step-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  transition: all var(--transition-base);
}

.pipeline-step-content:hover,
.pipeline-step-content.highlight-content {
  border-color: rgba(230, 57, 70, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(230, 57, 70, 0.12);
}

.pipeline-step-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pipeline-phase-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.pipeline-phase-badge.active-phase {
  background: rgba(230, 57, 70, 0.18);
  border: 1px solid rgba(230, 57, 70, 0.4);
  color: #FF6B6B;
}

.pipeline-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pipeline-step-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
}

.pipeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.pipeline-tag {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-full);
}

/* ============================================================
   PROCESS SECTION: HOW IT WORKS (SINGLE-COLUMN CONNECTED TIMELINE)
   ============================================================ */
.process-section {
  padding: 110px 0;
  position: relative;
}

.process-subtitle-text {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #60A5FA;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* Single-Column Timeline Container */
.process-timeline-container {
  max-width: 1060px;
  margin: 56px auto 0;
  position: relative;
}

.process-timeline-line {
  position: absolute;
  top: 46px;
  bottom: 80px;
  left: 23px;
  width: 2px;
  background: linear-gradient(to bottom, #3A86FF, #2563EB, #60A5FA, rgba(58, 134, 255, 0.15));
  z-index: 1;
}

.process-timeline-pulse {
  position: absolute;
  top: 0;
  left: -2px;
  width: 6px;
  height: 45px;
  background: linear-gradient(to bottom, transparent, #60A5FA, #FFFFFF, transparent);
  border-radius: 3px;
  box-shadow: 0 0 12px #3A86FF;
  animation: line-pulse-travel 6s infinite linear;
}

@keyframes line-pulse-travel {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: calc(100% - 45px); opacity: 0; }
}

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 52px;
  position: relative;
  z-index: 2;
}

.process-step-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}

/* Step Left (Typography & Point Alignment) */
.process-step-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.process-step-header-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.process-step-node-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0B0F19;
  border: 2px solid #3A86FF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(58, 134, 255, 0.45);
  flex-shrink: 0;
  transition: all 0.35s ease;
  position: relative;
  z-index: 3;
}

.process-step-row:hover .process-step-node-dot {
  background: linear-gradient(135deg, #1E40AF, #3A86FF);
  border-color: #60A5FA;
  box-shadow: 0 0 30px rgba(58, 134, 255, 0.7);
  transform: scale(1.08);
}

.process-step-heading {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.process-step-description {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-secondary);
  padding-left: 62px;
  max-width: 390px;
}

/* 2 Points Stacked as a Single Column (2 Rows) */
.process-step-features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-left: 62px;
  margin-top: 2px;
}

.process-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.feat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3A86FF;
  box-shadow: 0 0 6px rgba(58, 134, 255, 0.8);
}

/* Step Visual Wrapper (Right Column Standalone 4:3 Visual Box) */
.process-step-visual-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.process-visual-box {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, rgba(16, 22, 36, 0.95), rgba(9, 13, 22, 0.98));
  border: 1px solid rgba(58, 134, 255, 0.22);
  border-radius: var(--radius-xl);
  padding: 20px 22px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(58, 134, 255, 0.12);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-row:hover .process-visual-box {
  border-color: rgba(58, 134, 255, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.7), 0 0 40px rgba(58, 134, 255, 0.22);
}

/* ============================================================
   VISUAL 1: CHAT & BRIEF INTAKE MESSENGER
   ============================================================ */
.chat-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
}

.chat-header-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E40AF, #3A86FF);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(58, 134, 255, 0.5);
}

.chat-user-meta {
  display: flex;
  flex-direction: column;
}

.chat-user-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
}

.chat-status-text {
  font-size: 0.65rem;
  color: #60A5FA;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chat-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 6px #22C55E;
}

.chat-tag {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-tertiary);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-messages-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.chat-msg {
  display: flex;
}

.chat-msg.client-msg {
  justify-content: flex-start;
}

.chat-msg.rx-msg {
  justify-content: flex-end;
}

.msg-bubble {
  max-width: 88%;
  padding: 8px 11px;
  border-radius: 9px;
  font-size: 0.75rem;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.msg-bubble .msg-sender {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 2px;
  text-transform: uppercase;
}

.msg-bubble.blue-bubble {
  background: linear-gradient(135deg, #1E40AF, #3A86FF);
  border-color: #60A5FA;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(58, 134, 255, 0.35);
}

.msg-bubble.blue-bubble .msg-sender {
  color: #DCE8FF;
}

.chat-typing-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  background: rgba(58, 134, 255, 0.08);
  border: 1px solid rgba(58, 134, 255, 0.2);
  border-radius: 7px;
}

.typing-label {
  font-size: 0.68rem;
  color: #93C5FD;
  font-weight: 500;
}

.typing-dots {
  display: flex;
  gap: 4px;
}

.tdot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #3A86FF;
  animation: dot-bounce-blue 1.4s infinite ease-in-out both;
}
.tdot.t1 { animation-delay: -0.32s; }
.tdot.t2 { animation-delay: -0.16s; }

@keyframes dot-bounce-blue {
  0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

.chat-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #60A5FA;
  background: rgba(58, 134, 255, 0.12);
  border: 1px solid rgba(58, 134, 255, 0.35);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.check-blue {
  font-weight: 800;
  color: #60A5FA;
}

/* ============================================================
   VISUAL 2: 9-FRAME STORYBOARD BLUEPRINT
   ============================================================ */
.sb-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.sb-grid-title {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sb-badge-approved {
  font-size: 0.65rem;
  font-weight: 700;
  color: #22C55E;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.storyboard-nine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.sb-frame {
  height: 50px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 3px 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.25s ease;
}

.sb-frame.active-f {
  border-color: #3A86FF;
  background: rgba(58, 134, 255, 0.12);
  box-shadow: 0 0 14px rgba(58, 134, 255, 0.28);
}

.sb-f-num {
  font-size: 0.52rem;
  font-family: monospace;
  color: var(--text-tertiary);
  font-weight: 600;
}

.sb-f-art {
  width: 100%;
  height: 14px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.sb-f-art.art-hook {
  background: linear-gradient(90deg, #3A86FF, rgba(58, 134, 255, 0.2));
}

.sb-f-art.art-pain {
  background: linear-gradient(90deg, rgba(230, 57, 70, 0.4), rgba(58, 134, 255, 0.4));
}

.sb-f-art.art-logo {
  background: radial-gradient(circle, #60A5FA 20%, transparent 60%);
}

.sb-f-art.art-ui {
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.sb-f-art.art-feature {
  background: linear-gradient(90deg, #3A86FF, #60A5FA);
}

.sb-f-art.art-graph {
  background: linear-gradient(45deg, #2563EB, #60A5FA);
}

.sb-f-art.art-speed {
  background: linear-gradient(90deg, transparent, #3A86FF, transparent);
}

.sb-f-art.art-proof {
  background: rgba(34, 197, 94, 0.25);
}

.sb-f-art.art-cta {
  background: var(--gradient-button);
}

.sb-bracket {
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1.5px solid #60A5FA;
}
.sb-bracket.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.sb-bracket.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.sb-f-tag {
  font-size: 0.54rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.sb-frame.active-f .sb-f-tag {
  color: #93C5FD;
}

.sb-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sb-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.sb-progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2563EB, #3A86FF, #60A5FA);
  border-radius: 2px;
}

.sb-progress-label {
  font-size: 0.66rem;
  font-weight: 700;
  color: #60A5FA;
}

/* ============================================================
   VISUAL 3: FINAL ANIMATION STUDIO TIMELINE
   ============================================================ */
.anim-timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.anim-track-names {
  display: flex;
  gap: 5px;
}

.track-pill {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.track-pill.active-t {
  background: rgba(58, 134, 255, 0.2);
  color: #93C5FD;
  border-color: rgba(58, 134, 255, 0.4);
}

.anim-render-state {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.66rem;
  font-weight: 600;
  color: #60A5FA;
}

.render-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3A86FF;
  box-shadow: 0 0 8px #3A86FF;
  animation: dot-pulse-blue 1.5s infinite ease-in-out;
}

@keyframes dot-pulse-blue {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.anim-multi-track {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  margin-bottom: 8px;
  overflow: hidden;
}

.anim-playhead-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #60A5FA;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.9);
  animation: playhead-scan 3s infinite ease-in-out;
}

@keyframes playhead-scan {
  0% { left: 8px; }
  50% { left: calc(100% - 10px); }
  100% { left: 8px; }
}

.track-row {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 16px;
}

.track-clip {
  height: 10px;
  border-radius: 2px;
}
.clip-blue-1 { width: 45%; background: linear-gradient(90deg, #1E40AF, #3A86FF); }
.clip-blue-2 { width: 35%; background: rgba(58, 134, 255, 0.35); }
.clip-purple-1 { width: 30%; background: rgba(131, 56, 236, 0.4); }
.clip-purple-2 { width: 50%; background: linear-gradient(90deg, #8338EC, #3A86FF); }

.track-kf {
  width: 6px;
  height: 6px;
  background: #60A5FA;
  transform: rotate(45deg);
  border-radius: 1px;
}

/* Audio Spectrum */
.anim-audio-bar-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 20px;
  margin-bottom: 6px;
}

.a-bar {
  width: 3.5px;
  background: linear-gradient(to top, #1E40AF, #3A86FF, #60A5FA);
  border-radius: 2px;
  animation: a-bar-bounce 1.2s infinite ease-in-out alternate;
}

.ab-1 { height: 8px; animation-delay: 0.1s; }
.ab-2 { height: 14px; animation-delay: 0.3s; }
.ab-3 { height: 18px; animation-delay: 0.5s; }
.ab-4 { height: 12px; animation-delay: 0.2s; }
.ab-5 { height: 16px; animation-delay: 0.4s; }
.ab-6 { height: 20px; animation-delay: 0.6s; }
.ab-7 { height: 15px; animation-delay: 0.15s; }
.ab-8 { height: 10px; animation-delay: 0.35s; }
.ab-9 { height: 18px; animation-delay: 0.45s; }
.ab-10 { height: 13px; animation-delay: 0.25s; }
.ab-11 { height: 9px; animation-delay: 0.55s; }
.ab-12 { height: 15px; animation-delay: 0.1s; }

@keyframes a-bar-bounce {
  0% { transform: scaleY(0.35); }
  100% { transform: scaleY(1.15); }
}

.anim-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #60A5FA;
  background: rgba(58, 134, 255, 0.12);
  border: 1px solid rgba(58, 134, 255, 0.35);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.glow-spark {
  color: #93C5FD;
}

/* ============================================================
   VISUAL 4: FOLDER EXPLORER & MOVING CURSOR
   ============================================================ */
.folder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.folder-breadcrumbs {
  font-size: 0.68rem;
  font-family: monospace;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.crumb-root { color: #93C5FD; font-weight: 700; }
.crumb-current { color: #FFFFFF; font-weight: 600; }

.folder-sync-tag {
  font-size: 0.62rem;
  font-weight: 700;
  color: #22C55E;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
}

.sync-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22C55E;
}

.folder-explorer-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  margin-bottom: 8px;
}

.folder-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  transition: all 0.25s ease;
}

.folder-item.active-folder {
  background: rgba(58, 134, 255, 0.12);
  border-color: rgba(58, 134, 255, 0.45);
  box-shadow: 0 0 14px rgba(58, 134, 255, 0.25);
}

.folder-icon-wrap {
  width: 20px;
  height: 20px;
  color: #60A5FA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.folder-icon-wrap svg {
  width: 16px;
  height: 16px;
}

.folder-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.f-name {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-primary);
}

.f-meta {
  font-size: 0.62rem;
  color: var(--text-tertiary);
}

.f-check {
  font-size: 0.68rem;
  font-weight: 800;
  color: #22C55E;
}

/* Animated Interactive Cursor */
.folder-interactive-cursor {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 10;
  animation: cursor-float-glide 5s infinite ease-in-out;
}

.folder-interactive-cursor svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.cursor-click-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #60A5FA;
  animation: cursor-ripple 2.5s infinite ease-out;
}

@keyframes cursor-float-glide {
  0% { top: 6px; right: 25px; }
  35% { top: 8px; right: 70px; }
  50% { top: 45px; right: 50px; }
  80% { top: 80px; right: 95px; }
  100% { top: 6px; right: 25px; }
}

@keyframes cursor-ripple {
  0% { transform: scale(0.2); opacity: 1; }
  50% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

.folder-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #60A5FA;
  background: rgba(58, 134, 255, 0.12);
  border: 1px solid rgba(58, 134, 255, 0.35);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}


/* ============================================================
   VALUE PROPOSITION CARDS
   ============================================================ */
.value-section {
  padding: 100px 0;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  position: relative;
  padding: 1px;
  border-radius: var(--radius-lg);
  background: var(--border-subtle);
  transition: background var(--transition-base);
}

.value-card:hover {
  background: var(--gradient-primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.value-card-inner {
  background: var(--bg-card);
  border-radius: calc(var(--radius-lg) - 1px);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-card-visual {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-surface-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ---- Animated Value Scenes ---- */
.value-anim-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -- HOOK SCENE -- */
.hook-magnet {
  width: 56px;
  height: 56px;
  animation: hook-float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(230, 57, 70, 0.4));
  z-index: 2;
}

.hook-magnet svg {
  width: 100%;
  height: 100%;
}

@keyframes hook-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(-3deg); }
  50% { transform: translateY(-2px) rotate(0deg); }
  75% { transform: translateY(-8px) rotate(3deg); }
}

.hook-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hook-particles .particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF6B6B;
  opacity: 0;
  animation: particle-attract 3s ease-in-out infinite;
}

.particle.p1 { top: 15%; left: 20%; animation-delay: 0s; background: #E63946; }
.particle.p2 { top: 70%; left: 15%; animation-delay: 0.5s; background: #FF4D5E; }
.particle.p3 { top: 25%; right: 18%; animation-delay: 1s; background: #3A86FF; }
.particle.p4 { bottom: 20%; right: 22%; animation-delay: 1.5s; background: #8338EC; }
.particle.p5 { top: 50%; left: 10%; animation-delay: 2s; background: #FF6B6B; width: 4px; height: 4px; }

@keyframes particle-attract {
  0% { opacity: 0; transform: scale(0.5); }
  30% { opacity: 0.8; transform: scale(1.2); }
  60% { opacity: 1; transform: scale(1) translate(10px, -5px); }
  100% { opacity: 0; transform: scale(0.3) translate(30px, -15px); }
}

.hook-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(230, 57, 70, 0.25);
  animation: ring-expand 3s ease-out infinite;
  pointer-events: none;
}

.hook-ring.ring1 {
  width: 50px;
  height: 50px;
  animation-delay: 0s;
}

.hook-ring.ring2 {
  width: 50px;
  height: 50px;
  animation-delay: 1.5s;
  border-color: rgba(58, 134, 255, 0.2);
}

@keyframes ring-expand {
  0% { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}

.hook-label {
  position: absolute;
  bottom: 14%;
  right: 18%;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-red);
  background: rgba(230, 57, 70, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(230, 57, 70, 0.3);
  animation: label-pulse 2s ease-in-out infinite alternate;
}

@keyframes label-pulse {
  0% { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* -- STORY SCENE -- */
.story-frames {
  display: flex;
  gap: 8px;
  z-index: 2;
}

.story-frame {
  width: 36px;
  height: 48px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  animation: frame-appear 0.6s ease-out both;
}

.story-frame.frame1 {
  animation-delay: 0.2s;
  border-color: rgba(230, 57, 70, 0.4);
  background: rgba(230, 57, 70, 0.08);
}

.story-frame.frame2 {
  animation-delay: 0.5s;
  transform: translateY(-4px);
  border-color: rgba(131, 56, 236, 0.4);
  background: rgba(131, 56, 236, 0.08);
}

.story-frame.frame3 {
  animation-delay: 0.8s;
  border-color: rgba(58, 134, 255, 0.4);
  background: rgba(58, 134, 255, 0.08);
}

@keyframes frame-appear {
  0% { opacity: 0; transform: translateY(16px) scale(0.8); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.value-card:hover .story-frame.frame2 {
  transform: translateY(-4px);
}

.story-connector {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  z-index: 1;
}

.story-connector svg {
  width: 100%;
  height: 100%;
}

.story-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw-path 2.5s ease-in-out infinite;
}

@keyframes draw-path {
  0% { stroke-dashoffset: 200; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -200; }
}

.story-play-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.6);
  animation: travel-dot 2.5s ease-in-out infinite;
  z-index: 3;
  left: 20%;
  bottom: 28%;
}

@keyframes travel-dot {
  0% { left: 20%; bottom: 28%; opacity: 0; }
  10% { opacity: 1; }
  50% { left: 50%; bottom: 32%; }
  90% { opacity: 1; }
  100% { left: 78%; bottom: 28%; opacity: 0; }
}

/* -- CONVERSION SCENE -- */
.conv-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60%;
  z-index: 2;
}

.conv-bar {
  width: 14px;
  border-radius: 4px 4px 1px 1px;
  animation: bar-rise 1.2s ease-out both;
}

.conv-bar.bar1 {
  height: 30%;
  background: rgba(230, 57, 70, 0.35);
  border: 1px solid rgba(230, 57, 70, 0.5);
  animation-delay: 0.2s;
}

.conv-bar.bar2 {
  height: 50%;
  background: rgba(230, 57, 70, 0.5);
  border: 1px solid rgba(230, 57, 70, 0.6);
  animation-delay: 0.4s;
}

.conv-bar.bar3 {
  height: 70%;
  background: rgba(58, 134, 255, 0.5);
  border: 1px solid rgba(58, 134, 255, 0.6);
  animation-delay: 0.6s;
}

.conv-bar.bar4 {
  height: 95%;
  background: linear-gradient(to top, rgba(34, 197, 94, 0.5), rgba(34, 197, 94, 0.8));
  border: 1px solid rgba(34, 197, 94, 0.7);
  animation-delay: 0.8s;
}

@keyframes bar-rise {
  0% { transform: scaleY(0); opacity: 0; }
  100% { transform: scaleY(1); opacity: 1; }
}

.conv-arrow {
  position: absolute;
  top: 18%;
  right: 20%;
  width: 32px;
  height: 32px;
  animation: arrow-bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.5));
  z-index: 3;
}

.conv-arrow svg {
  width: 100%;
  height: 100%;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.conv-badge {
  position: absolute;
  top: 14%;
  left: 18%;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: #22C55E;
  background: rgba(34, 197, 94, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(34, 197, 94, 0.35);
  animation: badge-glow 2s ease-in-out infinite alternate;
  z-index: 3;
}

@keyframes badge-glow {
  0% { box-shadow: 0 0 8px rgba(34, 197, 94, 0.2); opacity: 0.7; }
  100% { box-shadow: 0 0 18px rgba(34, 197, 94, 0.5); opacity: 1; }
}

/* ---- Clipboard Copied Toast ---- */
.copy-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(17, 17, 21, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #22C55E;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 197, 94, 0.15);
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.copy-toast svg {
  width: 18px;
  height: 18px;
  stroke: #22C55E;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card-body p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================================
   SERVICES — TABBED SECTION & VIMEO EMBEDS
   ============================================================ */
.services-section {
  padding: 100px 0;
}

.service-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.service-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.service-tab:hover {
  color: var(--text-primary);
  border-color: var(--border-medium);
  background: rgba(255, 255, 255, 0.06);
}

.service-tab.active {
  color: #FFFFFF;
  background: var(--gradient-button);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px var(--color-red-glow);
}

.service-tab .tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.service-tab.active .tab-dot {
  background: white;
  opacity: 1;
}

.service-content {
  display: none;
}

.service-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.vimeo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-base);
}

.vimeo-card:hover {
  border-color: rgba(230, 57, 70, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(230, 57, 70, 0.15);
}

.vimeo-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
}

.vimeo-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.video-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.vimeo-link-icon {
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}

.vimeo-link-icon:hover {
  color: var(--color-red);
}



/* ============================================================
   REVIEWS SECTION ("What My Clients Say")
   ============================================================ */
.reviews-section {
  padding: 100px 0;
}

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

.review-card {
  padding: 1px;
  border-radius: var(--radius-lg);
  background: var(--border-subtle);
  transition: background var(--transition-base);
}

.review-card:hover {
  background: linear-gradient(135deg, var(--color-red-glow), var(--color-blue-glow));
}

.review-card-inner {
  background: var(--bg-card);
  border-radius: calc(var(--radius-lg) - 1px);
  padding: 32px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #FFB800;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
}

.review-quote .highlight {
  color: var(--text-primary);
  font-weight: 600;
}

.review-client {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}

.review-role {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ============================================================
   PRICING SECTION WITH CLEAN TYPOGRAPHY & SPOTLIGHT
   ============================================================ */
.pricing-section {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.pricing-card {
  position: relative;
  padding: 1px;
  border-radius: var(--radius-xl);
  background: var(--border-subtle);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
}

/* Dynamic Spotlight Glow */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(230, 57, 70, 0.4),
    rgba(58, 134, 255, 0.25),
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.featured {
  background: var(--gradient-primary);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(230, 57, 70, 0.2);
}

.pricing-card-inner {
  position: relative;
  background: var(--bg-card);
  border-radius: calc(var(--radius-xl) - 1px);
  padding: 38px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.pricing-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: var(--gradient-button);
  color: white;
  margin-bottom: 20px;
  width: fit-content;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Elegant and Readable Numbers Typography */
.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.currency-symbol {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF4D5E;
}

.price-digits {
  font-size: 2.9rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-digits.custom-price {
  font-size: 2.3rem;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-left: 4px;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 34px;
  flex: 1;
}

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

.pricing-feature svg {
  width: 18px;
  height: 18px;
  color: #FF6B6B;
  flex-shrink: 0;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.open {
  border-color: rgba(230, 57, 70, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform var(--transition-base), color var(--transition-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--color-red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
  max-height: 320px;
}

.faq-answer-inner {
  padding: 0 26px 22px;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================================
   CONTACT CTA SECTION
   ============================================================ */
.cta-section {
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-content .h2 {
  margin-bottom: 16px;
}

.cta-content .text-body {
  margin-bottom: 38px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cta-bg .glow-1 {
  position: absolute;
  bottom: -30%;
  left: 20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--color-red-glow), transparent 70%);
  filter: blur(90px);
  opacity: 0.45;
}

.cta-bg .glow-2 {
  position: absolute;
  bottom: -30%;
  right: 20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--color-blue-glow), transparent 70%);
  filter: blur(90px);
  opacity: 0.35;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 70px 0 36px;
  position: relative;
  overflow: hidden;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-email:hover {
  color: var(--color-red);
}

.footer-email svg {
  width: 16px;
  height: 16px;
}

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

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  color: #FFFFFF;
  border-color: rgba(230, 57, 70, 0.5);
  background: rgba(230, 57, 70, 0.15);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

/* Footer Big Text */
.footer-big-text {
  text-align: center;
  margin-bottom: 60px;
}

.footer-big-text .h2 {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  background: linear-gradient(135deg, var(--text-primary) 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--border-subtle);
}

.footer-copyright {
  font-size: 0.84rem;
  color: var(--text-tertiary);
}

.footer-copyright a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-copyright a:hover {
  color: var(--color-red);
}

/* Footer Glow */
.footer-glow {
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(ellipse, var(--color-red-glow), transparent 65%);
  filter: blur(110px);
  opacity: 0.25;
  pointer-events: none;
}

/* ============================================================
   RESPONSIVE DESIGN SYSTEM
   Mobile-First & Breakpoint Optimization: 320px -> 1200px+
   ============================================================ */

/* ---------- Tablet Landscape & Small Desktops (<= 1024px) ---------- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
    --container-padding: 24px;
  }

  .navbar {
    width: calc(100% - 36px);
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-left {
    align-items: center;
    gap: 22px;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-subtext {
    max-width: 580px;
    margin: 12px auto 0;
  }

  .hero-cta-wrap {
    justify-content: center;
  }

  .hero-right {
    max-width: 680px;
    margin: 0 auto;
  }

  .pipeline-track {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
    gap: 32px;
  }

  .pipeline-node-connector {
    display: none;
  }

  .value-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

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

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

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

  .process-timeline-container {
    max-width: 720px;
  }

  .process-step-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 18px;
  }

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

/* ---------- Tablets Portrait & Phablets (<= 768px) ---------- */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --container-padding: 20px;
  }

  /* Typography */
  .h1 {
    font-size: clamp(2rem, 6.2vw, 2.75rem);
    line-height: 1.18;
  }

  .h2 {
    font-size: clamp(1.65rem, 5.2vw, 2.2rem);
    line-height: 1.25;
  }

  .h3 {
    font-size: clamp(1.2rem, 4.2vw, 1.45rem);
  }

  .desktop-br {
    display: none !important;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .gradient-divider {
    margin-bottom: 45px;
  }

  /* Floating Navbar */
  .nav-links {
    display: none;
  }

  .nav-cta.desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    margin-right: -4px;
    z-index: 1001;
  }

  .navbar {
    width: calc(100% - 24px);
    top: 12px;
  }

  .navbar-inner {
    height: 60px;
    padding: 0 10px;
  }

  .brand-logo-img {
    height: 40px;
  }

  /* Mobile Navigation Drawer */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 78px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 100%;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    border-radius: var(--radius-lg);
    z-index: 999;
  }

  .mobile-nav.open {
    display: block;
    animation: fadeSlideDown 0.25s ease forwards;
  }

  .mobile-nav .nav-link {
    padding: 12px 14px;
    font-size: 0.98rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
  }

  .mobile-nav .nav-cta {
    min-height: 48px;
    width: 100%;
    justify-content: center;
    margin-top: 14px;
    display: flex;
  }

  /* Hero Section */
  .hero {
    padding-top: 88px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero-left {
    gap: 18px;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-title {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-title .h1 {
    font-size: clamp(2rem, 6.5vw, 2.75rem);
    line-height: 1.18;
    color: #FFFFFF !important;
    text-align: center;
    margin: 0 auto;
  }

  .hero-subtext {
    font-size: 0.96rem;
    line-height: 1.58;
    max-width: 500px;
    margin: 10px auto 0;
    text-align: center;
    padding: 0 6px;
    color: rgba(248, 248, 248, 0.8) !important;
  }

  .trust-ticker-container {
    padding: 5px 14px 5px 10px;
    margin: 0 auto;
  }

  .trust-ticker {
    min-width: 0;
    width: 270px;
    max-width: 100%;
    height: 26px;
    justify-content: center;
  }

  .trust-badge {
    font-size: 0.82rem;
    gap: 6px;
    width: 100%;
    justify-content: center;
  }

  .trust-badge .badge-label {
    font-size: 0.8rem;
  }

  .hero-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    gap: 12px;
  }

  .hero-cta-wrap .btn-primary,
  .hero-cta-wrap .btn-secondary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 0.94rem;
  }

  .brand-marquee {
    margin-top: 6px;
    width: 100%;
    max-width: 100%;
  }

  .hero-right {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
  }

  .hero-video-card {
    border-radius: var(--radius-md);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(230, 57, 70, 0.12);
  }

  .hero-video-tag {
    top: 10px;
    right: 10px;
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .hero-bg .glow-red {
    width: 300px;
    height: 300px;
    filter: blur(60px);
    opacity: 0.25;
    top: 10%;
    left: -10%;
  }

  .hero-bg .glow-blue {
    width: 300px;
    height: 300px;
    filter: blur(60px);
    opacity: 0.2;
    bottom: 5%;
    right: -10%;
  }

  /* Social Proof & Marquee */
  .proof-section {
    padding: 60px 0;
  }

  .testimonial-marquee {
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  }

  .proof-card {
    width: 300px;
    padding: 22px 18px;
    gap: 14px;
  }

  .proof-card-quote {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .rating-bar {
    margin-top: 32px;
    padding: 12px 20px;
    gap: 12px;
  }

  /* Pipeline */
  .pipeline-section {
    padding: 60px 0;
  }

  .pipeline-track {
    gap: 24px;
    max-width: 500px;
  }

  .pipeline-step-content {
    padding: 24px 20px;
    gap: 12px;
  }

  .pipeline-step-title {
    font-size: 1.15rem;
  }

  .pipeline-step-desc {
    font-size: 0.88rem;
  }

  /* Value Cards */
  .value-section {
    padding: 60px 0;
  }

  .value-cards {
    max-width: 480px;
    gap: 20px;
  }

  .value-card-inner {
    padding: 24px 20px;
    gap: 16px;
  }

  .value-card-visual {
    aspect-ratio: 16 / 9;
    max-height: 200px;
  }

  .value-card-body h3 {
    font-size: 1.2rem;
  }

  .value-card-body p {
    font-size: 0.88rem;
  }

  /* Services Tabbed Section */
  .services-section {
    padding: 60px 0;
  }

  .service-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 4px 4px 12px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 32px;
  }

  .service-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-tab {
    padding: 10px 18px;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 44px;
  }

  .video-info-bar {
    padding: 12px 16px;
  }

  .video-label {
    font-size: 0.84rem;
  }

  .vimeo-link-icon {
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Reviews */
  .reviews-section {
    padding: 60px 0;
  }

  .reviews-grid {
    max-width: 480px;
    gap: 20px;
  }

  .review-card-inner {
    padding: 24px 20px;
    gap: 16px;
  }

  .review-quote {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Pricing */
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-grid {
    max-width: 420px;
    gap: 24px;
  }

  .pricing-card-inner {
    padding: 30px 22px;
  }

  .price-digits {
    font-size: 2.5rem;
  }

  .price-digits.custom-price {
    font-size: 2rem;
  }

  .pricing-features {
    margin-bottom: 26px;
    gap: 11px;
  }

  .pricing-feature {
    font-size: 0.86rem;
  }

  .pricing-card .btn-primary,
  .pricing-card .btn-secondary {
    min-height: 48px;
  }

  /* Process Section ("How It Works") */
  .process-section {
    padding: 60px 0;
  }

  .process-timeline-container {
    margin-top: 36px;
  }

  .process-timeline-line {
    left: 19px;
    top: 38px;
    bottom: 60px;
  }

  .process-steps-list {
    gap: 36px;
  }

  .process-step-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-step-header-wrap {
    gap: 14px;
  }

  .process-step-node-dot {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .process-step-heading {
    font-size: 1.25rem;
  }

  .process-step-description {
    padding-left: 52px;
    font-size: 0.86rem;
    line-height: 1.55;
    max-width: 100%;
  }

  .process-step-features {
    padding-left: 52px;
    gap: 6px;
  }

  .process-feature-tag {
    font-size: 0.7rem;
  }

  .process-visual-box {
    padding: 16px 14px;
    aspect-ratio: auto;
    min-height: 250px;
    border-radius: var(--radius-lg);
  }

  /* FAQ Accordion */
  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.96rem;
    min-height: 52px;
    gap: 12px;
  }

  .faq-answer-inner {
    padding: 0 20px 18px;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .faq-item.open .faq-answer {
    max-height: 500px;
  }

  /* Contact CTA & Footer */
  .cta-section {
    padding: 60px 0;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .footer {
    padding: 45px 0 24px;
  }

  .footer-main {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    margin-bottom: 40px;
  }

  .footer-logo-img {
    height: 52px;
  }

  .footer-right {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .footer-email {
    font-size: 0.88rem;
    min-height: 44px;
    word-break: break-all;
    justify-content: center;
  }

  .footer-social {
    gap: 12px;
    justify-content: center;
  }

  .footer-social-link {
    width: 44px;
    height: 44px;
  }

  .footer-big-text {
    margin-bottom: 40px;
  }

  .footer-big-text .h2 {
    font-size: clamp(1.9rem, 7vw, 3rem);
  }

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

/* ---------- Standard Mobile Devices (<= 480px) ---------- */
@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }

  /* Typography */
  .h1 {
    font-size: clamp(1.75rem, 7.2vw, 2.2rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .h2 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .h3 {
    font-size: clamp(1.1rem, 4.5vw, 1.3rem);
  }

  .section-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .text-body {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  /* Floating Navbar */
  .navbar {
    width: calc(100% - 20px);
    top: 10px;
    padding: 0 6px;
  }

  .navbar-inner {
    height: 56px;
    padding: 0 6px;
  }

  .brand-logo-img {
    height: 36px;
  }

  .mobile-nav {
    top: 72px;
    width: calc(100% - 20px);
    padding: 14px;
  }

  .mobile-nav .nav-link {
    padding: 11px 12px;
    font-size: 0.94rem;
  }

  /* Hero */
  .hero {
    padding-top: 82px;
    padding-bottom: 34px;
  }

  .hero-content {
    gap: 22px;
  }

  .hero-left {
    gap: 16px;
  }

  .hero-title .h1 {
    font-size: clamp(1.75rem, 7.2vw, 2.2rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #FFFFFF !important;
  }

  .hero-subtext {
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 8px auto 0;
    color: rgba(248, 248, 248, 0.8) !important;
  }

  .hero-cta-wrap {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 10px;
  }

  .hero-cta-wrap .btn-primary,
  .hero-cta-wrap .btn-secondary {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    font-size: 0.9rem;
  }

  .trust-ticker-container {
    width: 100%;
    justify-content: center;
    padding: 5px 10px;
  }

  .trust-ticker {
    width: 100%;
    min-width: 0;
    max-width: 260px;
    height: 24px;
  }

  .trust-badge .badge-icon {
    font-size: 0.85rem;
  }

  .trust-badge .badge-label {
    font-size: 0.76rem;
  }

  .metric-item {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .hero-right {
    width: 100%;
    max-width: 100%;
  }

  /* Testimonials & Rating */
  .proof-card {
    width: 270px;
    padding: 18px 16px;
  }

  .proof-card-quote {
    font-size: 0.86rem;
  }

  .rating-bar {
    width: 100%;
    max-width: 320px;
    padding: 10px 14px;
    gap: 8px 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .rating-score {
    font-size: 0.9rem;
  }

  .rating-count {
    font-size: 0.78rem;
  }

  /* Pipeline */
  .pipeline-step-content {
    padding: 20px 16px;
  }

  .pipeline-step-title {
    font-size: 1.1rem;
  }

  .pipeline-step-desc {
    font-size: 0.85rem;
  }

  .pipeline-tag {
    font-size: 0.72rem;
    padding: 3px 8px;
  }

  /* Value Cards */
  .value-card-inner {
    padding: 20px 16px;
  }

  .value-card-body h3 {
    font-size: 1.15rem;
  }

  .value-card-body p {
    font-size: 0.86rem;
  }

  .hook-magnet {
    width: 44px;
    height: 44px;
  }

  .story-connector {
    width: 90px;
  }

  /* Pricing */
  .pricing-card-inner {
    padding: 26px 18px;
  }

  .price-digits {
    font-size: 2.3rem;
  }

  .price-digits.custom-price {
    font-size: 1.85rem;
  }

  .pricing-desc {
    font-size: 0.84rem;
    margin-bottom: 20px;
  }

  .pricing-features {
    margin-bottom: 22px;
    gap: 10px;
  }

  .pricing-feature {
    font-size: 0.84rem;
    gap: 8px;
  }

  .pricing-feature svg {
    width: 16px;
    height: 16px;
  }

  /* Process Section */
  .process-timeline-line {
    display: none;
  }

  .process-step-header-wrap {
    gap: 12px;
  }

  .process-step-node-dot {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
  }

  .process-step-heading {
    font-size: 1.12rem;
  }

  .process-step-description,
  .process-step-features {
    padding-left: 0;
    margin-top: 6px;
  }

  .process-visual-box {
    padding: 14px 12px;
    min-height: auto;
  }

  .storyboard-nine-grid {
    gap: 4px;
  }

  .sb-frame {
    height: 42px;
    padding: 2px 4px;
  }

  .sb-f-num {
    font-size: 0.48rem;
  }

  .sb-f-tag {
    font-size: 0.46rem;
  }

  .folder-breadcrumbs {
    font-size: 0.62rem;
    flex-wrap: wrap;
  }

  .folder-item {
    padding: 6px 8px;
    gap: 6px;
  }

  .f-name {
    font-size: 0.7rem;
  }

  .f-meta {
    font-size: 0.58rem;
  }

  .anim-track-names {
    flex-wrap: wrap;
    gap: 4px;
  }

  .track-pill {
    font-size: 0.58rem;
    padding: 2px 5px;
  }

  /* FAQ */
  .faq-question {
    padding: 15px 16px;
    font-size: 0.9rem;
  }

  .faq-answer-inner {
    padding: 0 16px 16px;
    font-size: 0.85rem;
  }

  /* Footer */
  .footer-logo-img {
    height: 44px;
  }

  .footer-bottom {
    font-size: 0.78rem;
  }
}

/* ---------- Compact Mobile Devices (<= 360px & 320px) ---------- */
@media (max-width: 360px) {
  :root {
    --container-padding: 12px;
  }

  /* Typography */
  .h1 {
    font-size: 1.62rem;
    line-height: 1.22;
  }

  .h2 {
    font-size: 1.35rem;
  }

  .h3 {
    font-size: 1.05rem;
  }

  /* Navbar */
  .navbar {
    width: calc(100% - 14px);
    top: 8px;
    padding: 0 4px;
  }

  .navbar-inner {
    height: 52px;
    padding: 0 4px;
  }

  .brand-logo-img {
    height: 32px;
  }

  .mobile-nav {
    top: 66px;
    width: calc(100% - 14px);
    padding: 12px;
  }

  .mobile-nav .nav-link {
    padding: 10px 8px;
    font-size: 0.9rem;
  }

  /* Hero */
  .hero {
    padding-top: 76px;
    padding-bottom: 28px;
  }

  .trust-ticker {
    max-width: 230px;
  }

  .trust-badge .badge-label {
    font-size: 0.72rem;
  }

  .trust-badge .badge-icon {
    font-size: 0.8rem;
  }

  .btn-primary,
  .btn-secondary,
  .nav-cta {
    padding: 11px 18px;
    font-size: 0.88rem;
  }

  /* Social Proof */
  .proof-card {
    width: 240px;
    padding: 16px 14px;
  }

  .proof-card-quote {
    font-size: 0.82rem;
  }

  .proof-card-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  /* Pricing */
  .pricing-card-inner {
    padding: 22px 14px;
  }

  .price-digits {
    font-size: 2.1rem;
  }

  .price-digits.custom-price {
    font-size: 1.7rem;
  }

  /* Process */
  .sb-frame {
    height: 38px;
  }

  .chat-msg .msg-bubble {
    font-size: 0.68rem;
    padding: 5px 8px;
  }
}
