/*
Theme Name: Sprint Rocks
Theme URI: https://sprintrocks.com
Author: Sprint Rocks
Author URI: https://sprintrocks.com
Description: Premium dark-themed landing page for Sprint Rocks AI YouTube Automation tool. Features glassmorphism nav, animated orbs, plan-specific pricing cards, and fully responsive design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sprint-rocks
*/

/* ========================================
   CSS RESET & BASE
======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================================
   CSS VARIABLES — DARK THEME
======================================== */
:root {
  /* Backgrounds */
  --bg: #0a0a0f;
  --bg2: #12121a;
  --bg3: #1a1a28;

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);

  /* Text */
  --text: #f0f0ff;
  --muted: rgba(240, 240, 255, 0.5);

  /* Brand */
  --primary: #7c6ff7;
  --primary-dark: #5a4bd1;
  --primary-glow: rgba(124, 111, 247, 0.3);

  /* Status */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Per-Plan */
  --trial-color: #10b981;
  --trial-gradient: linear-gradient(135deg, #10b981, #059669);
  --trial-glow: rgba(16, 185, 129, 0.3);

  --basic-color: #6c5ce7;
  --basic-gradient: linear-gradient(135deg, #7c6ff7, #a78bfa);
  --basic-glow: rgba(124, 111, 247, 0.3);

  --pro-color: #f59e0b;
  --pro-gradient: linear-gradient(135deg, #f59e0b, #f97316);
  --pro-glow: rgba(245, 158, 11, 0.3);

  --agency-color: #ef4444;
  --agency-gradient: linear-gradient(135deg, #ef4444, #dc2626);
  --agency-glow: rgba(239, 68, 68, 0.3);

  /* Layout */
  --radius: 20px;
  --radius-sm: 12px;
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ========================================
   TYPOGRAPHY
======================================== */
html,
body {
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'DM Sans', -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   WORDPRESS WRAPPER RESETS
   Neutralize #page, #content, .site etc.
   that WordPress injects and can cause
   off-center alignment.
======================================== */
#page,
#content,
#primary,
.site,
.site-content,
.entry-content,
main.site-main,
div[id^="main"] {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Syne', 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   ANIMATED BACKGROUND ORBS
======================================== */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  left: -200px;
  animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--warning);
  bottom: -150px;
  right: -150px;
  animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: var(--success);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(80px, 60px) scale(1.1);
  }

  66% {
    transform: translate(-40px, 80px) scale(0.95);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-60px, -40px) scale(1.05);
  }

  66% {
    transform: translate(40px, -60px) scale(0.9);
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  33% {
    transform: translate(-40%, -45%) scale(1.08);
  }

  66% {
    transform: translate(-55%, -55%) scale(0.92);
  }
}

/* ========================================
   GLASSMORPHISM NAVBAR
======================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 15, 0.6);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(10, 10, 15, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--primary) !important;
  color: var(--text) !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   CONTAINER
======================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ========================================
   SECTION BASE
======================================== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(124, 111, 247, 0.1);
  border: 1px solid rgba(124, 111, 247, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

.hero .container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Hero Hook Text */
.hero-hook {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--warning);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(124, 111, 247, 0.1);
  border: 1px solid rgba(124, 111, 247, 0.25);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #7c6ff7, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease 0.3s both;
  width: 100%;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg2);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

/* Pipeline Visual */
.hero-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
  width: 100%;
  max-width: 100%;
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s ease;
}

.pipeline-step:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.pipeline-step .step-icon {
  font-size: 1.3rem;
}

.pipeline-arrow {
  color: var(--muted);
  font-size: 1.2rem;
}

/* ========================================
   FEATURES SECTION
======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 111, 247, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(124, 111, 247, 0.1);
  color: var(--primary);
}

.feature-card:nth-child(2) .feature-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.feature-card:nth-child(3) .feature-icon {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.feature-card:nth-child(4) .feature-icon {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.feature-card:nth-child(5) .feature-icon {
  background: rgba(124, 111, 247, 0.1);
  color: var(--primary);
}

.feature-card:nth-child(6) .feature-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.feature-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Popular card (Pro) */
.pricing-card.popular {
  border: 2px solid transparent;
  background-image: linear-gradient(var(--bg2), var(--bg2)),
    linear-gradient(135deg, var(--primary), var(--warning));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transform: scale(1.02);
  box-shadow: 0 20px 50px var(--primary-glow);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 30px 60px var(--primary-glow);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  background: var(--pro-gradient);
  color: #000;
}

/* Plan header */
.plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.plan-trial .plan-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--trial-color);
}

.plan-basic .plan-icon {
  background: rgba(124, 111, 247, 0.1);
  color: var(--basic-color);
}

.plan-pro .plan-icon {
  background: rgba(245, 158, 11, 0.1);
  color: var(--pro-color);
}

.plan-agency .plan-icon {
  background: rgba(239, 68, 68, 0.1);
  color: var(--agency-color);
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-trial .plan-name {
  color: var(--trial-color);
}

.plan-basic .plan-name {
  color: var(--basic-color);
}

.plan-pro .plan-name {
  color: var(--pro-color);
}

.plan-agency .plan-name {
  color: var(--agency-color);
}

.plan-description {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Price */
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--muted);
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
}

.price-period {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Features list */
.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}

.plan-features li .check {
  font-size: 1rem;
  flex-shrink: 0;
}

.plan-trial .plan-features .check {
  color: var(--trial-color);
}

.plan-basic .plan-features .check {
  color: var(--basic-color);
}

.plan-pro .plan-features .check {
  color: var(--pro-color);
}

.plan-agency .plan-features .check {
  color: var(--agency-color);
}

/* Plan CTA button */
.plan-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  color: #fff;
}

.plan-btn:hover {
  transform: translateY(-2px);
}

.plan-trial .plan-btn {
  background: var(--trial-gradient);
  box-shadow: 0 4px 20px var(--trial-glow);
}

.plan-trial .plan-btn:hover {
  box-shadow: 0 8px 35px var(--trial-glow);
}

.plan-basic .plan-btn {
  background: var(--basic-gradient);
  box-shadow: 0 4px 20px var(--basic-glow);
}

.plan-basic .plan-btn:hover {
  box-shadow: 0 8px 35px var(--basic-glow);
}

.plan-pro .plan-btn {
  background: var(--pro-gradient);
  box-shadow: 0 4px 20px var(--pro-glow);
  color: #000;
}

.plan-pro .plan-btn:hover {
  box-shadow: 0 8px 35px var(--pro-glow);
}

.plan-agency .plan-btn {
  background: var(--agency-gradient);
  box-shadow: 0 4px 20px var(--agency-glow);
}

.plan-agency .plan-btn:hover {
  box-shadow: 0 8px 35px var(--agency-glow);
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(124, 111, 247, 0.2);
}

.faq-item.active {
  border-color: rgba(124, 111, 247, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question .faq-icon {
  font-size: 1.3rem;
  color: var(--muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-brand .footer-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 8px;
  font-size: 0.9rem;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--primary);
}

/* ========================================
   CUSTOM SECTIONS
======================================== */
.custom-section {
  padding: 100px 0;
}

.custom-section-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Centered layout */
.custom-layout-centered .custom-section-inner {
  flex-direction: column;
  text-align: center;
}

.custom-layout-centered .custom-text {
  max-width: 750px;
  margin: 0 auto;
}

/* Text left / media right */
.custom-layout-text-left .custom-section-inner {
  flex-direction: row;
}

/* Text right / media left */
.custom-layout-text-right .custom-section-inner {
  flex-direction: row;
}

/* Full width */
.custom-layout-full-width .custom-section-inner {
  flex-direction: column;
}

.custom-layout-full-width .custom-media {
  width: 100%;
}

.custom-text {
  flex: 1;
}

.custom-text .section-title {
  margin-bottom: 20px;
}

.custom-content {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
}

.custom-content p {
  margin-bottom: 16px;
}

.custom-content h3 {
  color: var(--text);
  margin-bottom: 12px;
}

.custom-media {
  flex: 1;
  max-width: 560px;
}

.custom-image {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.custom-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.custom-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ========================================
   ANIMATIONS — FADE IN
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.fade-in-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-children.visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

.fade-in-children.visible>*:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-in-children.visible>*:nth-child(3) {
  transition-delay: 0.15s;
}

.fade-in-children.visible>*:nth-child(4) {
  transition-delay: 0.2s;
}

.fade-in-children.visible>*:nth-child(5) {
  transition-delay: 0.25s;
}

.fade-in-children.visible>*:nth-child(6) {
  transition-delay: 0.3s;
}

.fade-in-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE — TABLET
======================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 2.2rem;
  }

  .custom-section-inner {
    flex-direction: column !important;
  }

  .custom-media {
    max-width: 100%;
  }

  .custom-section {
    padding: 60px 0;
  }
}

/* ========================================
   RESPONSIVE — MOBILE
======================================== */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--bg2);
    padding: 100px 32px 32px;
    gap: 20px;
    border-left: 1px solid var(--border);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  /* Mobile overlay */
  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .mobile-overlay.active {
    display: block;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 40px);
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-pipeline {
    flex-direction: column;
    gap: 12px;
  }

  .pipeline-arrow {
    transform: rotate(90deg);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-6px);
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .faq-answer-inner {
    padding: 0 20px 18px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 16px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .feature-card {
    padding: 28px 22px;
  }
}

/* ========================================
   CASE STUDIES SECTION
======================================== */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.case-study-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.case-study-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 111, 247, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cs-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.cs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-study-card:hover .cs-image img {
  transform: scale(1.05);
}

.cs-content {
  padding: 28px;
}

.cs-client {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(124, 111, 247, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cs-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.cs-result {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 12px;
}

.cs-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.cs-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s ease;
}

.cs-link:hover {
  color: #a78bfa;
}

/* ========================================
   CUSTOMER REVIEWS SECTION
======================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 111, 247, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-stars {
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.review-stars .star {
  font-size: 1.1rem;
  color: rgba(240, 240, 255, 0.15);
}

.review-stars .star.filled {
  color: #f59e0b;
}

.review-quote {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(124, 111, 247, 0.2);
}

.review-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(124, 111, 247, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-info {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-size: 0.95rem;
  color: var(--text);
}

.review-role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ========================================
   RESPONSIVE — NEW SECTIONS
======================================== */
@media (max-width: 768px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}