/* ========================================
   CSS Variables & Base Styles
   Updated: Blue #0d8def with Black Background
   ======================================== */
:root {
  --bg-primary: #000000;
  --bg-secondary: #020204;
  --bg-card: rgba(10, 10, 15, 0.6);

  --accent-primary: #0d8def;
  --accent-secondary: #0a6fc2;
  --accent-glow: rgba(13, 141, 239, 0.5);
  --accent-dim: rgba(13, 141, 239, 0.15);

  --success-primary: #00ff96;
  --success-glow: rgba(0, 255, 150, 0.5);
  --success-dim: rgba(0, 255, 150, 0.15);

  --error-primary: #ff6b6b;
  --error-glow: rgba(255, 107, 107, 0.5);
  --error-dim: rgba(255, 107, 107, 0.15);

  --warning-primary: #ffaa00;
  --warning-dim: rgba(255, 170, 0, 0.1);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);

  --border-color: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);

  --font-primary:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: "Inter", sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

::-moz-selection {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-dim);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* ========================================
   Hero Navigation
   ======================================== */

.hero-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
}

.hero-navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 4rem;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.hero-logo-icon {
  width: 36px;
  height: 36px;
  color: var(--accent-primary);
}

.hero-logo-icon svg {
  width: 100%;
  height: 100%;
}

.hero-logo span {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.hero-nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.hero-nav-links a:hover {
  color: var(--text-primary);
}

.hero-nav-links a.active {
  color: var(--text-primary);
}

.hero-nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-primary);
  box-shadow: 0 0 10px var(--accent-primary);
  border-radius: 2px;
}

.hero-nav-cta {
  background: var(--accent-primary);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px var(--accent-dim);
}

.hero-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--accent-glow);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.light-rays-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.hero-glow-orb {
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 255, 0.12) 0%,
    rgba(0, 191, 255, 0.05) 25%,
    rgba(0, 191, 255, 0.02) 45%,
    transparent 70%
  );
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hero-orbPulse 8s ease-in-out infinite;
}

@keyframes hero-orbPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.hero-arc-container {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
}

.hero-arc {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
}

.hero-arc-1 {
  border-top-color: var(--accent-primary);
  filter: drop-shadow(0 0 15px var(--accent-primary));
  animation: hero-arcReveal 1.5s ease-out forwards 0.3s;
}

.hero-arc-2 {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-top-color: rgba(0, 191, 255, 0.5);
  filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.5));
  animation: hero-arcReveal 1.5s ease-out forwards 0.5s;
}

.hero-arc-3 {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-top-color: rgba(0, 191, 255, 0.25);
  filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.25));
  animation: hero-arcReveal 1.5s ease-out forwards 0.7s;
}

@keyframes hero-arcReveal {
  0% {
    opacity: 0;
    transform: scale(0.6) rotate(-50deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent-primary);
  border-radius: 50%;
  opacity: 0;
  animation: hero-particleFloat 12s ease-in-out infinite;
}

.hero-stars {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 50%;
  animation: hero-starTwinkle 4s ease-in-out infinite;
}

@keyframes hero-particleFloat {
  0%,
  100% {
    transform: translateY(0) scale(0);
    opacity: 0;
  }
  5% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
  }
  95% {
    transform: translateY(-80px) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100px) scale(0);
    opacity: 0;
  }
}

@keyframes hero-starTwinkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.8);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin-bottom: 5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}

.hero-title-line {
  display: block;
  opacity: 0;
  animation: hero-fadeInUp 1s ease forwards;
}

.hero-title-line:nth-child(1) {
  animation-delay: 0.2s;
}
.hero-title-line:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-highlight {
  color: var(--accent-primary);
  position: relative;
  display: inline-block;
  font-style: italic;
}

.hero-brush-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 3px;
  opacity: 0;
  transform-origin: left;
  animation: hero-underlineReveal 0.6s ease forwards 1s;
}

@keyframes hero-underlineReveal {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: hero-fadeInUp 1s ease forwards 0.6s;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
  animation: hero-fadeInUp 1s ease forwards 0.8s;
  margin-bottom: 60px;
}

.hero-btn-primary {
  background: var(--accent-primary);
  color: var(--bg-primary);
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 40px var(--accent-dim);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px var(--accent-glow);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--accent-dim);
}

@keyframes hero-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Company Logos Section
   ======================================== */

.hero-companies-section {
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  z-index: 10;
  opacity: 0;
  animation: hero-fadeInUp 1s ease forwards 1.2s;
}

.hero-companies-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.hero-companies-line {
  height: 2px;
  width: 80px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-primary) 50%,
    transparent
  );
  opacity: 0.5;
}

.hero-companies-heading {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.hero-logos-track {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.hero-logos-scroll {
  display: flex;
  gap: 4rem;
  animation: hero-scrollLeft 40s linear infinite;
  width: max-content;
  align-items: center;
  will-change: transform;
}

.hero-logos-scroll,
.hero-logos-scroll:hover {
  animation-play-state: running !important;
}

@keyframes hero-scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero-company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.hero-company-logo:hover {
  transform: scale(1.05);
}

.hero-company-img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.hero-company-logo:hover .hero-company-img {
  opacity: 1;
}

.hero-logos-scroll,
.hero-company-logo,
.hero-company-img {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ========================================
   Problem Section Styles
   ======================================== */

.problem-section {
  position: relative;
  padding: 8rem 2rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.problem-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.problem-gradient-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.problem-gradient-blur-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 59, 48, 0.08) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
}

.problem-gradient-blur-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 149, 0, 0.05) 0%,
    transparent 70%
  );
  bottom: -150px;
  left: -150px;
}

.problem-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    transparent 70%
  );
}

.problem-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.problem-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.problem-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff6b6b;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

.problem-section-tag::before,
.problem-section-tag::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff6b6b);
}

.problem-section-tag::after {
  background: linear-gradient(90deg, #ff6b6b, transparent);
}

.problem-tag-dot {
  width: 8px;
  height: 8px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: problem-pulseDot 2s ease-in-out infinite;
}

@keyframes problem-pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.problem-section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.problem-title-line {
  display: block;
}

.problem-title-gradient {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-title-underline {
  position: relative;
  display: inline-block;
}

.problem-title-underline::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -2%;
  width: 104%;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 20' preserveAspectRatio='none'%3E%3Cpath d='M0,17 Q20,10 50,14 Q80,18 120,12 Q160,6 200,10 Q240,14 280,8 Q320,4 360,12 Q380,16 400,14' stroke='%23ff6b6b' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M5,19 Q40,14 80,17 Q140,20 200,15 Q260,10 320,16 Q360,19 395,15' stroke='%23ff6b6b' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: problem-brushReveal 0.8s ease forwards 0.5s;
}

@keyframes problem-brushReveal {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.problem-header-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.problem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.problem-description {
  opacity: 0;
  transform: translateX(-30px);
  animation: problem-slideInLeft 0.8s ease forwards;
  animation-delay: 0.2s;
  display: flex;
  flex-direction: column;
}

@keyframes problem-slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.problem-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: problem-fadeInUp 0.6s ease forwards;
  flex: 1;
}

.problem-card:nth-child(1) {
  animation-delay: 0.3s;
}
.problem-card:nth-child(2) {
  animation-delay: 0.4s;
}
.problem-card:nth-child(3) {
  animation-delay: 0.5s;
}
.problem-card:nth-child(4) {
  animation-delay: 0.6s;
}
.problem-card:nth-child(5) {
  animation-delay: 0.7s;
}

@keyframes problem-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.problem-card::before {
  content: attr(data-index);
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 107, 107, 0.05);
  pointer-events: none;
}

.problem-card:hover {
  background: rgba(255, 59, 48, 0.05);
  border-color: rgba(255, 107, 107, 0.3);
  transform: translateX(10px);
}

.problem-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card-icon svg {
  width: 24px;
  height: 24px;
  color: #ff6b6b;
}

.problem-card-content {
  flex: 1;
}

.problem-card-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.problem-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.problem-card-status {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card-status-rejected {
  background: rgba(255, 59, 48, 0.15);
}

.problem-card-status-rejected svg {
  width: 18px;
  height: 18px;
  color: #ff6b6b;
}

.problem-visual {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(30px);
  animation: problem-slideInRight 0.8s ease forwards;
  animation-delay: 0.4s;
}

@keyframes problem-slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.problem-stats-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 25, 0.9) 0%,
    rgba(15, 15, 20, 0.95) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.problem-stats-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.problem-stats-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.problem-stats-info {
  flex: 1;
}

.problem-stats-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.problem-stats-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.problem-stats-badge {
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.problem-stats-badge-failed {
  background: rgba(255, 59, 48, 0.15);
  color: #ff6b6b;
}

.problem-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex: 1;
}

.problem-stat-item {
  text-align: center;
}

.problem-stat-ring {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 0.75rem;
}

.problem-stat-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.problem-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 3;
}

.problem-ring-progress {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dasharray 1.5s ease;
}

.problem-stat-ring-failed .problem-ring-progress {
  stroke: #ff6b6b;
}

.problem-stat-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.problem-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.problem-stats-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.problem-trend-line {
  height: 40px;
  margin-bottom: 0.75rem;
}

.problem-trend-line svg {
  width: 100%;
  height: 100%;
}

.problem-trend-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: problem-drawTrend 2s ease forwards 1s;
}

.problem-trend-path-failed {
  stroke: #ff6b6b;
}

@keyframes problem-drawTrend {
  to {
    stroke-dashoffset: 0;
  }
}

.problem-trend-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #ff6b6b;
}

.problem-trend-label svg {
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
}

.problem-truth-section {
  text-align: center;
  margin-top: 5rem;
  padding-top: 4rem;
  position: relative;
}

.problem-truth-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 191, 255, 0.5),
    transparent
  );
}

.problem-truth-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.problem-truth-main {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.problem-truth-gradient {
  display: block;
  background: linear-gradient(
    135deg,
    var(--accent-primary) 0%,
    #00ff96 50%,
    var(--accent-primary) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: problem-gradientShift 4s ease infinite;
}

@keyframes problem-gradientShift {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.problem-truth-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto;
}

/* ========================================
   Solution Section Styles
   ======================================== */

.solution-section {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 50%,
    var(--bg-primary) 100%
  );
  overflow: hidden;
}

.solution-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.solution-glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.solution-glow-sphere-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 255, 0.1) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
  animation: solution-floatSphere 15s ease-in-out infinite;
}

.solution-glow-sphere-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 150, 0.06) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -100px;
  animation: solution-floatSphere 18s ease-in-out infinite reverse;
}

@keyframes solution-floatSphere {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 20px) scale(1.1);
  }
}

.solution-floating-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.solution-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 191, 255, 0.2),
    transparent
  );
  animation: solution-floatLine 8s ease-in-out infinite;
}

.solution-line:nth-child(1) {
  width: 200px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.solution-line:nth-child(2) {
  width: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}
.solution-line:nth-child(3) {
  width: 180px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes solution-floatLine {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
  50% {
    opacity: 1;
    transform: translateX(20px);
  }
}

.solution-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.solution-section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.solution-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

.solution-section-tag::before,
.solution-section-tag::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary));
}

.solution-section-tag::after {
  background: linear-gradient(90deg, var(--accent-primary), transparent);
}

.solution-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: solution-pulseDot 2s ease-in-out infinite;
}

@keyframes solution-pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.solution-section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.solution-title-gradient {
  background: linear-gradient(135deg, var(--accent-primary) 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-title-underline {
  position: relative;
  display: inline-block;
}

.solution-title-underline::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -2%;
  width: 104%;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 20' preserveAspectRatio='none'%3E%3Cpath d='M0,17 Q20,10 50,14 Q80,18 120,12 Q160,6 200,10 Q240,14 280,8 Q320,4 360,12 Q380,16 400,14' stroke='%2300bfff' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M5,19 Q40,14 80,17 Q140,20 200,15 Q260,10 320,16 Q360,19 395,15' stroke='%2300bfff' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: solution-brushReveal 0.8s ease forwards 0.5s;
}

@keyframes solution-brushReveal {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.solution-section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.solution-visual {
  opacity: 0;
  transform: translateX(-40px);
  animation: solution-slideInLeft 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes solution-slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.solution-transform-card {
  background: linear-gradient(
    145deg,
    rgba(0, 191, 255, 0.05) 0%,
    rgba(15, 15, 20, 0.95) 100%
  );
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 28px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.solution-transform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-primary),
    #00ff96,
    var(--accent-primary)
  );
  background-size: 200% 100%;
  animation: solution-shimmer 3s linear infinite;
}

@keyframes solution-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.solution-transform-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.solution-transform-avatar {
  position: relative;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-primary) 0%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--bg-primary);
}

.solution-avatar-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: #00ff96;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
}

.solution-avatar-badge svg {
  width: 12px;
  height: 12px;
  color: var(--bg-primary);
}

.solution-transform-info {
  flex: 1;
}

.solution-transform-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.solution-transform-info span {
  font-size: 0.85rem;
  color: var(--accent-primary);
}

.solution-transform-badge {
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.solution-transform-badge-success {
  background: rgba(0, 255, 150, 0.15);
  color: #00ff96;
}

.solution-transform-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.solution-transform-stat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.solution-stat-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.solution-stat-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: auto;
  white-space: nowrap;
}

.solution-stat-number-highlight {
  color: var(--accent-primary);
}

.solution-stat-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: right;
}

.solution-stat-bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.solution-bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 1.5s ease;
  width: 0;
}

.solution-bar-fill-success {
  background: linear-gradient(90deg, var(--accent-primary));
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

.solution-transform-chart {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 1.25rem;
}

.solution-chart-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.solution-chart-area {
  position: relative;
  height: 80px;
}

.solution-chart-area svg {
  width: 100%;
  height: 100%;
}

.solution-chart-area-fill {
  opacity: 0;
  animation: solution-fadeIn 0.5s ease forwards 1s;
}

.solution-chart-line-path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: solution-drawChart 2s ease forwards 0.5s;
}

@keyframes solution-drawChart {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes solution-fadeIn {
  to {
    opacity: 1;
  }
}

.solution-chart-tooltip {
  position: absolute;
  top: -40px;
  right: 10px;
  background: rgba(0, 191, 255, 0.15);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  text-align: center;
  opacity: 0;
  animation: solution-fadeIn 0.5s ease forwards 2s;
}

.solution-tooltip-value {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #00ff96;
}

.solution-tooltip-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.solution-benefits {
  opacity: 0;
  transform: translateX(40px);
  animation: solution-slideInRight 0.8s ease forwards;
  animation-delay: 0.5s;
}

@keyframes solution-slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.solution-benefit-intro {
  margin-bottom: 2rem;
}

.solution-benefit-intro h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.solution-benefit-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.solution-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-benefit-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: solution-fadeInUp 0.6s ease forwards;
}

.solution-benefit-item:nth-child(1) {
  animation-delay: 0.6s;
}
.solution-benefit-item:nth-child(2) {
  animation-delay: 0.7s;
}
.solution-benefit-item:nth-child(3) {
  animation-delay: 0.8s;
}
.solution-benefit-item:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes solution-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.solution-benefit-item:hover {
  background: rgba(0, 191, 255, 0.05);
  border-color: rgba(0, 191, 255, 0.3);
  transform: translateX(10px);
}

.solution-benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--accent-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
}

.solution-benefit-content {
  flex: 1;
}

.solution-benefit-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.solution-benefit-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.solution-benefit-check {
  width: 32px;
  height: 32px;
  background: rgba(0, 255, 150, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-benefit-check svg {
  width: 16px;
  height: 16px;
  color: #00ff96;
}

.solution-promise-section {
  text-align: center;
  margin-top: 5rem;
  padding-top: 4rem;
  position: relative;
}

.solution-promise-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 150, 0.5),
    transparent
  );
}

.solution-promise-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.solution-promise-text {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.solution-promise-highlight {
  display: block;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-primary) 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.solution-promise-normal {
  display: block;
  color: var(--text-secondary);
  font-weight: 500;
}

.solution-comparison-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 5rem;
  padding: 0;
  opacity: 0;
  animation: solution-fadeInUp 0.8s ease forwards 1s;
}

.solution-comparison-item {
  text-align: center;
  position: relative;
}

.solution-comparison-item-before {
  padding-right: 3rem;
}

.solution-comparison-item-before::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.solution-comparison-item-after {
  padding-left: 3rem;
}

.solution-comparison-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.solution-comparison-item-before .solution-comparison-label {
  color: #ff6b6b;
}
.solution-comparison-item-after .solution-comparison-label {
  color: #00ff96;
}

.solution-comparison-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.solution-comp-stat {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.solution-comp-stat-highlight {
  color: #00ff96;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.solution-comp-divider {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.solution-comparison-arrow {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-primary), #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
  animation: solution-pulseArrow 2s ease-in-out infinite;
}

.solution-comparison-arrow svg {
  width: 24px;
  height: 24px;
  color: var(--bg-primary);
}

@keyframes solution-pulseArrow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0, 191, 255, 0.5);
  }
}

/* ========================================
   Features Section Styles
   ======================================== */

.features-section {
  position: relative;
  padding: 8rem 2rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.features-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.features-bg-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(0, 191, 255, 0.04) 0%,
    transparent 60%
  );
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.features-section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.features-section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  position: relative;
}

.features-section-label::before,
.features-section-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary));
}

.features-section-label::before {
  right: calc(100% + 15px);
}

.features-section-label::after {
  left: calc(100% + 15px);
  background: linear-gradient(90deg, var(--accent-primary), transparent);
}

.features-section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.features-title-gradient {
  background: linear-gradient(135deg, var(--accent-primary) 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

.features-card {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(
    165deg,
    rgba(15, 15, 22, 0.9) 0%,
    rgba(8, 8, 12, 0.95) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: features-cardReveal 0.8s ease forwards;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.features-card:nth-child(1) {
  animation-delay: 0.1s;
}
.features-card:nth-child(2) {
  animation-delay: 0.25s;
}
.features-card:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes features-cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.features-card:hover .features-card-glow-border {
  opacity: 1;
}

.features-card-content {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(15, 15, 22, 0.98) 0%,
    rgba(8, 8, 12, 1) 100%
  );
  border-radius: 22px;
  padding: 2.5rem 2rem;
  margin: 2px;
  height: calc(100% - 4px);
  overflow: hidden;
}

.features-card-bg-number {
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(0, 191, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  transition: color 0.5s ease;
}

.features-card:hover .features-card-bg-number {
  color: rgba(0, 191, 255, 0.06);
}

.features-card-badge-wrapper {
  margin-bottom: 2rem;
}

.features-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.features-card-badge-included {
  background: rgba(0, 255, 150, 0.1);
  color: #00ff96;
  border: 1px solid rgba(0, 255, 150, 0.2);
}

.features-card-badge-addon {
  background: rgba(255, 170, 0, 0.1);
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.2);
}

.features-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.features-card-title-highlight {
  color: var(--accent-primary);
}

.features-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.features-card-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.features-card-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.features-card-feature-item:last-child {
  border-bottom: none;
}

.features-card:hover .features-card-feature-item {
  color: var(--text-primary);
}

.features-card-feature-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--accent-primary);
  transition: all 0.3s ease;
}

.features-card:hover .features-card-feature-dot {
  box-shadow:
    0 0 15px var(--accent-primary),
    0 0 25px var(--accent-primary);
}

.features-card-result {
  margin-top: 2rem;
  padding: 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 150, 0.08) 0%,
    rgba(0, 191, 255, 0.05) 100%
  );
  border-left: 3px solid #00ff96;
  border-radius: 0 12px 12px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}

.features-card-featured {
  background: linear-gradient(
    165deg,
    rgba(0, 191, 255, 0.08) 0%,
    rgba(8, 8, 12, 0.95) 100%
  );
  border-color: rgba(0, 191, 255, 0.15);
}

.features-card-featured .features-card-content {
  background: linear-gradient(
    165deg,
    rgba(0, 191, 255, 0.03) 0%,
    rgba(8, 8, 12, 1) 100%
  );
}

.features-card-featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.75rem;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #00cc99 100%);
  border-radius: 0 0 16px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bg-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.3);
}

.features-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 6rem;
  padding: 3rem 0;
  position: relative;
  z-index: 10;
  opacity: 0;
  animation: features-fadeInUp 0.8s ease forwards 0.6s;
}

@keyframes features-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-color),
    transparent
  );
}

.features-stats-item {
  text-align: center;
}

.features-stats-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.features-stats-accent {
  color: var(--accent-primary);
}

.features-stats-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.features-stats-separator {
  width: 1px;
  height: 60px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

/* ========================================
   Process Section
   ======================================== */

.process-section {
  position: relative;
  padding: 8rem 2rem;
  background: var(--bg-primary);
  overflow: hidden;
  z-index: 1;
}

.process-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.process-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}

.process-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(13, 141, 239, 0.08) 0%,
    transparent 70%
  );
  top: -10%;
  left: -10%;
}

.process-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 150, 0.06) 0%,
    transparent 70%
  );
  bottom: 5%;
  right: -5%;
}

.process-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    transparent 80%
  );
}

.process-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.process-section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.process-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

.process-section-tag::before,
.process-section-tag::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary));
}

.process-section-tag::after {
  background: linear-gradient(90deg, var(--accent-primary), transparent);
}

.process-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-primary);
  animation: process-pulseDot 2s ease-in-out infinite;
}

@keyframes process-pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.process-section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.process-title-gradient {
  background: linear-gradient(135deg, var(--accent-primary) 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-title-underline {
  position: relative;
  display: inline-block;
}

.process-title-underline::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 20' preserveAspectRatio='none'%3E%3Cpath d='M0,17 Q20,10 50,14 Q80,18 120,12 Q160,6 200,10 Q240,14 280,8 Q320,4 360,12 Q380,16 400,14' stroke='%230d8def' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: process-brushReveal 0.8s ease forwards 0.5s;
}

@keyframes process-brushReveal {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.process-section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.process-steps-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.process-center-line {
  position: absolute;
  left: 50%;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-50%);
  z-index: 0;
}

.process-line-fill {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-primary));
  box-shadow: 0 0 15px var(--accent-glow);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: process-fadeInUp 0.8s ease forwards;
}

.process-step:nth-child(2) {
  animation-delay: 0.15s;
}
.process-step:nth-child(3) {
  animation-delay: 0.3s;
}
.process-step:nth-child(4) {
  animation-delay: 0.45s;
}
.process-step:nth-child(5) {
  animation-delay: 0.6s;
}

@keyframes process-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-step-visual {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.process-visual-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.process-visual-big-text {
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.8;
  font-family: var(--font-primary);
  letter-spacing: -0.05em;
  transition: all 0.4s ease;
}

.process-step:hover .process-visual-big-text {
  /* -webkit-text-stroke: 2px var(--accent-primary); */
  text-shadow: 0 0 30px var(--accent-dim);
}

.process-text-gradient {
  background: linear-gradient(135deg, var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
}

.process-visual-label {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-primary);
  opacity: 0.8;
}

.process-step-marker {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.process-marker-dot {
  width: 16px;
  height: 16px;
  background: var(--bg-primary);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--bg-primary);
  transition: all 0.4s ease;
}

.process-step:hover .process-marker-dot {
  background: var(--accent-primary);
  transform: scale(1.3);
  box-shadow:
    0 0 0 6px var(--bg-primary),
    0 0 20px var(--accent-glow);
}

.process-step-content {
  display: flex;
  justify-content: flex-start;
}

.process-content-card {
  width: 100%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(10, 10, 15, 0.5) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.4s ease;
}

.process-content-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -7px;
  width: 12px;
  height: 12px;
  background: var(--bg-primary);
  border-left: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.4s ease;
}

.process-step:hover .process-content-card {
  transform: translateX(10px);
  border-color: rgba(13, 141, 239, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.process-step:hover .process-content-card::before {
  border-color: rgba(13, 141, 239, 0.3);
}

.process-content-highlight {
  background: linear-gradient(
    145deg,
    rgba(13, 141, 239, 0.05) 0%,
    rgba(10, 10, 15, 0.8) 100%
  );
  border-color: rgba(13, 141, 239, 0.2);
}

.process-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.process-tag-success {
  color: #00ff96;
  background: rgba(0, 255, 150, 0.1);
}

.process-tag-highlight {
  background: var(--accent-primary);
  color: #fff;
}

.process-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.process-step:hover .process-step-title {
  color: var(--accent-primary);
}

.process-step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.process-feature-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.process-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.process-check-icon {
  width: 20px;
  height: 20px;
  background: rgba(0, 255, 150, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff96;
}

.process-check-icon svg {
  width: 12px;
  height: 12px;
}

.process-bottom-cta {
  text-align: center;
  margin-top: 6rem;
  opacity: 0;
  animation: process-fadeInUp 1s ease forwards 1s;
}

.process-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #0a6fc2 100%);
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--accent-dim);
}

.process-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.process-cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.process-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing-section {
  position: relative;
  padding: 8rem 2rem;
  background: var(--bg-primary);
  overflow: hidden;
  z-index: 1;
}

.pricing-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.pricing-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.pricing-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(13, 141, 239, 0.08) 0%,
    transparent 70%
  );
  top: 10%;
  left: -10%;
}

.pricing-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 150, 0.05) 0%,
    transparent 70%
  );
  bottom: 10%;
  right: -5%;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.pricing-section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.pricing-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

.pricing-section-badge::before,
.pricing-section-badge::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary));
}

.pricing-section-badge::after {
  background: linear-gradient(90deg, var(--accent-primary), transparent);
}

.pricing-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pricing-pulseDot 2s ease-in-out infinite;
}

@keyframes pricing-pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.pricing-section-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.pricing-title-gradient {
  background: linear-gradient(135deg, var(--accent-primary) 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.pricing-card-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
}

.pricing-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 32px;
  background: linear-gradient(
    165deg,
    rgba(25, 25, 35, 1) 0%,
    rgba(5, 5, 10, 1) 100%
  );
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(13, 141, 239, 0.1);
}

.pricing-card-border {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(13, 141, 239, 0.5),
    rgba(0, 255, 150, 0.3),
    rgba(13, 141, 239, 0.1)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #00cc99 100%);
  border-radius: 0 0 20px 20px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(13, 141, 239, 0.4);
}

.pricing-card-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 2.5rem 2.5rem;
  border-radius: 31px;
  overflow: hidden;
}

.pricing-card-bg-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-card-label {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
  background: rgba(13, 141, 239, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 12px;
  margin-top: 10px;
}

.pricing-card-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.pricing-card-name span {
  color: var(--accent-primary);
}

.pricing-price {
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.pricing-amount {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 255, 150, 0.08);
  border: 1px solid rgba(0, 255, 150, 0.15);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}

.pricing-guarantee-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 150, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  color: #00ff96;
}

.pricing-guarantee-icon svg {
  width: 18px;
  height: 18px;
}

.pricing-guarantee-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #00ff96;
  line-height: 1.4;
  text-align: left;
}

.pricing-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  margin-bottom: 2rem;
}

.pricing-includes {
  margin-bottom: 2.5rem;
}

.pricing-includes-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.pricing-include-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pricing-check {
  width: 22px;
  height: 22px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(13, 141, 239, 0.4);
}

.pricing-check svg {
  width: 12px;
  height: 12px;
}

.pricing-include-item span:last-child {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #0a6fc2 100%);
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(13, 141, 239, 0.3);
}

.pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(13, 141, 239, 0.5);
}

.pricing-cta-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.pricing-cta:hover .pricing-cta-arrow {
  transform: translateX(4px);
}

.pricing-sub-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.pricing-audience-wrapper {
  max-width: 1000px;
  margin: 0 auto 6rem;
  position: relative;
}

.pricing-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.pricing-audience-card {
  position: relative;
  border-radius: 24px;
  padding: 2.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
  background: rgba(15, 15, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-audience-spotlight {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 250px;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.pricing-audience-card:hover .pricing-audience-spotlight {
  opacity: 0.5;
}

.pricing-card-success {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card-success .pricing-audience-spotlight {
  background: radial-gradient(circle at center, #00ff96 0%, transparent 70%);
}

.pricing-card-success:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 150, 0.2);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 255, 150, 0.05);
}

.pricing-card-error {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.pricing-card-error .pricing-audience-spotlight {
  background: radial-gradient(circle at center, #ff3b30 0%, transparent 70%);
}

.pricing-card-error:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 59, 48, 0.2);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 59, 48, 0.05);
}

.pricing-audience-header {
  position: relative;
  z-index: 2;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.pricing-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.pricing-status-success {
  background: rgba(0, 255, 150, 0.1);
  color: #00ff96;
  border: 1px solid rgba(0, 255, 150, 0.2);
}

.pricing-status-success .pricing-status-dot {
  background: #00ff96;
  box-shadow: 0 0 8px #00ff96;
}

.pricing-status-error {
  background: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
  border: 1px solid rgba(255, 59, 48, 0.2);
}

.pricing-status-error .pricing-status-dot {
  background: #ff3b30;
  box-shadow: 0 0 8px #ff3b30;
}

.pricing-audience-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.pricing-audience-list {
  position: relative;
  z-index: 2;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pricing-audience-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pricing-icon-box {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-icon-box svg {
  width: 14px;
  height: 14px;
  stroke-width: 3px;
}

.pricing-icon-box-success {
  background: rgba(0, 255, 150, 0.1);
  color: #00ff96;
}

.pricing-icon-box-error {
  background: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
}

.pricing-audience-list li span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.pricing-audience-card:hover .pricing-audience-list li span {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-outcome-statement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 5rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-statement-line {
  height: 1px;
  flex: 1;
  max-width: 100px;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.4));
}

.pricing-statement-line:last-child {
  background: linear-gradient(90deg, rgba(0, 191, 255, 0.4), transparent);
}

.pricing-statement-text {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.pricing-text-highlight {
  background: linear-gradient(135deg, var(--accent-primary) 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
  position: relative;
  padding: 8rem 2rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.faq-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  position: relative;
}

.faq-section-label::before,
.faq-section-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary));
}

.faq-section-label::before {
  right: calc(100% + 15px);
}

.faq-section-label::after {
  left: calc(100% + 15px);
  background: linear-gradient(90deg, var(--accent-primary), transparent);
}

.faq-section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.faq-title-gradient {
  background: linear-gradient(135deg, var(--accent-primary) 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: faq-itemReveal 0.5s ease forwards;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.15s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.25s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(6) {
  animation-delay: 0.35s;
}
.faq-item:nth-child(7) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(8) {
  animation-delay: 0.45s;
}
.faq-item:nth-child(9) {
  animation-delay: 0.5s;
}

@keyframes faq-itemReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item:hover {
  border-color: rgba(0, 191, 255, 0.3);
  background: rgba(0, 191, 255, 0.02);
}

.faq-item.active {
  border-color: rgba(0, 191, 255, 0.4);
  background: rgba(0, 191, 255, 0.03);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
  opacity: 0.5;
  min-width: 30px;
  transition: opacity 0.3s ease;
}

.faq-item:hover .faq-question-number,
.faq-item.active .faq-question-number {
  opacity: 1;
}

.faq-question-text {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question-text {
  color: var(--accent-primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 8px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--accent-primary);
  transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
  background: var(--accent-primary);
}

.faq-item.active .faq-icon svg {
  color: var(--bg-primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  padding-left: calc(1.5rem + 30px + 1.25rem);
}

.faq-answer-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content strong {
  color: var(--text-primary);
}

.faq-answer-content em {
  color: var(--accent-primary);
  font-style: normal;
}

.faq-answer-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.faq-answer-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-answer-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    rgba(0, 20, 30, 1) 100%
  );
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 255, 0.15) 0%,
    rgba(0, 191, 255, 0.05) 30%,
    transparent 60%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cta-glowPulse 6s ease-in-out infinite;
}

@keyframes cta-glowPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.cta-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cta-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: cta-floatParticle 10s ease-in-out infinite;
}

.cta-particle:nth-child(1) {
  left: 20%;
  top: 30%;
  animation-delay: 0s;
}
.cta-particle:nth-child(2) {
  left: 80%;
  top: 40%;
  animation-delay: 3s;
}
.cta-particle:nth-child(3) {
  left: 50%;
  top: 70%;
  animation-delay: 6s;
}

@keyframes cta-floatParticle {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) scale(1.5);
    opacity: 0.8;
  }
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.cta-title-gradient {
  background: linear-gradient(135deg, var(--accent-primary) 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-subtitle strong {
  color: var(--text-primary);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 60px;
  color: var(--bg-primary);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #0a6fc2 100%);
  box-shadow: 0 4px 30px rgba(13, 141, 239, 0.4);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 50px rgba(13, 141, 239, 0.6);
}

.cta-btn-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover .cta-btn-arrow {
  transform: translateX(5px);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1.25rem 2.5rem;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 60px;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--accent-dim);
}

.cta-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 255, 150, 0.08);
  border: 1px solid rgba(0, 255, 150, 0.2);
  border-radius: 50px;
}

.cta-guarantee-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-guarantee-icon svg {
  width: 20px;
  height: 20px;
  color: #00ff96;
}

.cta-guarantee-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #00ff96;
}

/* ========================================
   Footer Section
   ======================================== */

.footer-section {
  position: relative;
  background: var(--bg-primary);
  padding: 6rem 2rem 2rem;
  border-top: 1px solid var(--border-color);
  overflow: hidden;
  z-index: 1;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.footer-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at top center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at top center,
    black 0%,
    transparent 70%
  );
  opacity: 0.5;
}

.footer-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(13, 141, 239, 0.1) 0%,
    transparent 70%
  );
  filter: blur(80px);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 6rem;
  margin-bottom: 4rem;
  align-items: start;
}

.footer-brand {
  max-width: 450px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  color: var(--accent-primary);
  filter: drop-shadow(0 0 10px rgba(13, 141, 239, 0.4));
}

.footer-logo-icon svg {
  width: 100%;
  height: 100%;
}

.footer-logo span {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
}

.footer-links-column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links-column a {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.footer-links-column a:hover {
  color: var(--accent-primary);
  transform: translateX(4px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-note a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.footer-note a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.footer-note a:hover {
  text-shadow: 0 0 10px rgba(13, 141, 239, 0.4);
}

.footer-note a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  .hero-logos-scroll {
    animation-duration: 60s;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   CONSOLIDATED RESPONSIVE STYLES — MAX-WIDTH APPROACH
   Breakpoints:
     1200px — Large tablets / small desktops
      992px — Tablets landscape
      768px — Tablets portrait / large mobile
      480px — Mobile large
      380px — Mobile small / iPhone SE
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   MAX-WIDTH: 1200px
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  /* Navbar */
  .hero-navbar {
    padding: 1.25rem 2.5rem;
  }
  .hero-navbar.scrolled {
    padding: 1rem 2.5rem;
  }

  /* Features grid — collapse to single column centered */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }

  .features-card-featured {
    grid-column: 1 / -1;
  }

  /* Process — tighten gaps */
  .process-step {
    grid-template-columns: 1fr 50px 1fr;
    gap: 2rem;
  }

  /* Footer */
  .footer-top {
    gap: 4rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   MAX-WIDTH: 992px
   ───────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  /* ---- Navbar ---- */
  .hero-navbar {
    padding: 1rem 1.5rem;
  }
  .hero-navbar.scrolled {
    padding: 0.85rem 1.5rem;
  }
  .hero-nav-links {
    display: none;
  }

  /* ---- Hero ---- */
  .hero {
    padding: 7rem 1.5rem 18rem;
  }
  .hero-arc-container {
    width: 700px;
    height: 700px;
  }

  /* ---- Problem ---- */
  .problem-section {
    padding: 6rem 1.5rem;
  }
  .problem-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .problem-visual {
    order: -1;
    transform: none;
    animation: none;
    opacity: 1;
  }
  .problem-description {
    transform: none;
    animation: none;
    opacity: 1;
  }
  .problem-stats-card {
    height: auto;
  }
  .problem-section-tag::before,
  .problem-section-tag::after {
    width: 30px;
  }

  /* ---- Solution ---- */
  .solution-section {
    padding: 6rem 1.5rem;
  }
  .solution-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .solution-visual {
    transform: none;
    animation: none;
    opacity: 1;
  }
  .solution-benefits {
    transform: none;
    animation: none;
    opacity: 1;
  }
  .solution-comparison-strip {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .solution-comparison-item-before::after {
    display: none;
  }
  .solution-comparison-item-before,
  .solution-comparison-item-after {
    padding: 0;
  }
  .solution-section-tag::before,
  .solution-section-tag::after {
    width: 30px;
  }

  /* ---- Features ---- */
  .features-section {
    padding: 6rem 1.5rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .features-card-featured {
    grid-column: auto;
    order: -1;
  }
  .features-stats {
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 4rem;
  }
  .features-stats-separator {
    display: none;
  }
  .features-stats-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 120px;
  }

  /* ---- Process ---- */
  .process-section {
    padding: 6rem 1.5rem;
  }
  .process-step {
    grid-template-columns: 80px 36px 1fr;
    gap: 1.25rem;
    align-items: start;
  }
  .process-step-visual {
    justify-content: flex-start;
    text-align: left;
  }
  .process-visual-text-group {
    align-items: flex-start;
  }
  .process-visual-big-text {
    font-size: 3.5rem;
  }
  .process-visual-label {
    display: none;
  }
  .process-section-header {
    margin-bottom: 4rem;
  }

  /* ---- Pricing ---- */
  .pricing-section {
    padding: 6rem 1.5rem;
  }
  .pricing-audience-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pricing-audience-wrapper {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-section-badge::before,
  .pricing-section-badge::after {
    width: 30px;
  }
  .pricing-outcome-statement {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
  }
  .pricing-statement-line {
    width: 80px;
    flex: none;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 191, 255, 0.4),
      transparent
    );
  }

  /* ---- FAQ ---- */
  .faq-section {
    padding: 6rem 1.5rem;
  }
  .faq-section-label::before,
  .faq-section-label::after {
    width: 25px;
  }

  /* ---- CTA ---- */
  .cta-section {
    padding: 6rem 1.5rem;
  }

  /* ---- Footer ---- */
  .footer-section {
    padding: 5rem 1.5rem 2rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-brand {
    max-width: 100%;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-links {
    text-align: center;
  }
  .footer-links-column {
    align-items: center;
  }
}

/* ─────────────────────────────────────────────────────────────
   MAX-WIDTH: 768px
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* ---- Base ---- */
  body {
    font-size: 15px;
  }

  /* ---- Navbar ---- */
  .hero-navbar {
    padding: 1rem 1.25rem;
  }
  .hero-nav-cta {
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
  }

  /* ---- Hero ---- */
  .hero {
    padding: 7rem 1.25rem 20rem;
    min-height: 100svh;
  }
  .hero-content {
    margin-bottom: 0;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 40px;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    text-align: center;
    justify-content: center;
  }
  .hero-companies-section {
    bottom: 2rem;
  }
  .hero-companies-header {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .hero-companies-line {
    width: 40px;
  }
  .hero-companies-heading {
    font-size: 0.9rem;
  }
  .hero-logos-scroll {
    gap: 2.5rem;
  }
  .hero-company-img {
    height: 24px;
    max-width: 100px;
  }
  .hero-brush-underline {
    bottom: -10px;
    height: 4px;
  }
  .hero-arc-container {
    width: 500px;
    height: 500px;
  }
  .hero-glow-orb {
    width: 600px;
    height: 600px;
  }

  /* ---- Problem ---- */
  .problem-section {
    padding: 5rem 1.25rem;
  }
  .problem-section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .problem-header-subtitle {
    font-size: 1rem;
  }
  .problem-card {
    padding: 1rem 1.1rem;
    gap: 0.9rem;
  }
  .problem-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
  }
  .problem-card-icon svg {
    width: 20px;
    height: 20px;
  }
  .problem-card-content h4 {
    font-size: 0.92rem;
  }
  .problem-card-content p {
    font-size: 0.82rem;
  }
  .problem-card::before {
    display: none;
  }
  .problem-stats-card {
    padding: 1.5rem;
  }
  .problem-stats-grid {
    gap: 1rem;
  }
  .problem-stat-ring {
    width: 68px;
    height: 68px;
  }
  .problem-stat-value {
    font-size: 0.95rem;
  }
  .problem-stat-label {
    font-size: 0.72rem;
  }
  .problem-truth-section {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
  }
  .problem-title-underline::after {
    height: 9px;
    bottom: -3px;
  }
  .problem-section-tag {
    font-size: 0.78rem;
    gap: 0.75rem;
  }
  .problem-section-tag::before,
  .problem-section-tag::after {
    width: 22px;
  }

  /* ---- Solution ---- */
  .solution-section {
    padding: 5rem 1.25rem;
  }
  .solution-section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .solution-transform-card {
    padding: 1.5rem;
  }
  .solution-transform-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .solution-transform-badge {
    margin-left: auto;
  }
  .solution-benefit-item {
    padding: 1rem 1.1rem;
    gap: 0.9rem;
  }
  .solution-benefit-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
  .solution-benefit-content h4 {
    font-size: 0.92rem;
  }
  .solution-benefit-content p {
    font-size: 0.82rem;
  }
  .solution-promise-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
  }
  .solution-promise-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  .solution-promise-text {
    font-size: 1rem;
  }
  .solution-comparison-strip {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 3.5rem;
  }
  .solution-comparison-arrow {
    transform: rotate(90deg);
    width: 44px;
    height: 44px;
  }
  .solution-comparison-arrow svg {
    width: 20px;
    height: 20px;
  }
  .solution-title-underline::after {
    height: 9px;
    bottom: -3px;
  }
  .solution-section-tag {
    font-size: 0.78rem;
    gap: 0.75rem;
  }
  .solution-section-tag::before,
  .solution-section-tag::after {
    width: 22px;
  }
  .solution-stat-header {
    flex-direction: row;
    justify-content: space-between;
  }
  .solution-stat-text {
    text-align: left;
  }

  /* ---- Features ---- */
  .features-section {
    padding: 5rem 1.25rem;
  }
  .features-section-header {
    margin-bottom: 3rem;
  }
  .features-section-label::before,
  .features-section-label::after {
    width: 22px;
  }
  .features-card-content {
    padding: 2rem 1.5rem;
  }
  .features-card-title {
    font-size: 1.35rem;
  }
  .features-card-bg-number {
    font-size: 7rem;
    right: -5px;
  }
  .features-stats {
    padding: 2rem 0;
    margin-top: 3.5rem;
  }
  .features-stats-number {
    font-size: 2.75rem;
  }
  .features-stats-text {
    font-size: 0.78rem;
  }

  /* ---- Process ---- */
  .process-section {
    padding: 5rem 1.25rem;
  }
  .process-section-header {
    margin-bottom: 3rem;
  }
  .process-section-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  /* Mobile timeline: single column with left rail */
  .process-steps-container {
    gap: 2.5rem;
    padding-left: 2rem;
  }
  .process-center-line {
    left: 0;
    transform: none;
  }
  .process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 1.5rem;
    position: relative;
  }
  .process-step-visual {
    display: none;
  }
  .process-step-marker {
    position: absolute;
    left: -1.25rem;
    top: 0.25rem;
    width: 20px;
    height: 20px;
  }
  .process-marker-dot {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 4px var(--bg-primary);
  }
  .process-content-card::before {
    display: none;
  }
  .process-content-card {
    padding: 1.5rem;
    width: 100%;
  }
  .process-step-title {
    font-size: 1.2rem;
  }
  .process-step-desc {
    font-size: 0.9rem;
  }
  .process-bottom-cta {
    margin-top: 3.5rem;
  }
  .process-section-tag::before,
  .process-section-tag::after {
    width: 22px;
  }

  /* ---- Pricing ---- */
  .pricing-section {
    padding: 5rem 1.25rem;
  }
  .pricing-card-content {
    padding: 2.5rem 1.5rem 2rem;
  }
  .pricing-amount {
    font-size: 3.75rem;
  }
  .pricing-currency {
    font-size: 1.75rem;
  }
  .pricing-audience-card {
    padding: 1.75rem;
  }
  .pricing-audience-title {
    font-size: 1.25rem;
  }
  .pricing-audience-list li span {
    font-size: 0.9rem;
  }
  .pricing-section-badge::before,
  .pricing-section-badge::after {
    width: 22px;
  }
  .pricing-statement-text {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  /* ---- FAQ ---- */
  .faq-section {
    padding: 5rem 1.25rem;
  }
  .faq-section-header {
    margin-bottom: 2.5rem;
  }
  .faq-question {
    padding: 1.25rem;
    gap: 1rem;
  }
  .faq-question-number {
    display: none;
  }
  .faq-question-text {
    font-size: 0.98rem;
  }
  .faq-answer-content {
    padding: 0 1.25rem 1.25rem;
  }
  .faq-section-label::before,
  .faq-section-label::after {
    width: 20px;
  }

  /* ---- CTA ---- */
  .cta-section {
    padding: 5rem 1.25rem;
  }
  .cta-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .cta-subtitle {
    font-size: 1.05rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 1.1rem 2rem;
    font-size: 1rem;
  }

  /* ---- Footer ---- */
  .footer-section {
    padding: 4.5rem 1.25rem 1.5rem;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .footer-note {
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────────────────────
   MAX-WIDTH: 480px
   ───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* ---- Navbar ---- */
  .hero-navbar {
    padding: 0.9rem 1rem;
  }
  .hero-logo span {
    font-size: 1.05rem;
  }
  .hero-nav-cta {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
  }

  /* ---- Hero ---- */
  .hero {
    padding: 6.5rem 1rem 19rem;
  }
  .hero-title {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
    margin-bottom: 1.25rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 0.9rem 1.75rem;
    font-size: 0.95rem;
  }
  .hero-companies-section {
    bottom: 1.5rem;
  }
  .hero-companies-heading {
    font-size: 0.8rem;
    letter-spacing: 0.07em;
  }
  .hero-companies-line {
    width: 28px;
  }
  .hero-logos-scroll {
    gap: 2rem;
  }
  .hero-company-img {
    height: 20px;
    max-width: 88px;
  }
  .hero-arc-container {
    width: 350px;
    height: 350px;
  }

  /* ---- Problem ---- */
  .problem-section {
    padding: 4rem 1rem;
  }
  .problem-section-tag {
    font-size: 0.72rem;
    gap: 0.6rem;
  }
  .problem-section-tag::before,
  .problem-section-tag::after {
    width: 16px;
  }
  .problem-section-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .problem-header-subtitle {
    font-size: 0.92rem;
  }
  .problem-card {
    padding: 0.9rem 1rem;
    gap: 0.75rem;
  }
  .problem-card-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .problem-card-icon svg {
    width: 18px;
    height: 18px;
  }
  .problem-card-content h4 {
    font-size: 0.88rem;
  }
  .problem-card-content p {
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .problem-stats-card {
    padding: 1.25rem;
  }
  .problem-stats-avatar {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
  .problem-stats-info h4 {
    font-size: 0.8rem;
  }

  .problem-stats-info span {
    font-size: 0.7rem;
  }

  .problem-stats-grid {
    gap: 0.85rem;
  }
  .problem-stat-ring {
    width: 58px;
    height: 58px;
  }
  .problem-stat-value {
    font-size: 0.85rem;
  }
  .problem-stat-label {
    font-size: 0.68rem;
  }
  .problem-truth-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .problem-truth-main {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }
  .problem-truth-sub {
    font-size: 0.9rem;
  }
  .problem-title-underline::after {
    height: 7px;
    bottom: -2px;
  }

  /* ---- Solution ---- */
  .solution-section {
    padding: 4rem 1rem;
  }
  .solution-section-tag {
    font-size: 0.72rem;
    gap: 0.6rem;
  }
  .solution-section-tag::before,
  .solution-section-tag::after {
    width: 16px;
  }
  .solution-section-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .solution-section-subtitle {
    font-size: 0.92rem;
  }
  .solution-transform-card {
    padding: 1.25rem;
    border-radius: 20px;
  }
  .solution-transform-info h4 {
    font-size: 0.7rem;
  }

  .solution-stat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .solution-stat-text {
    text-align: left;
    font-size: 0.82rem;
  }
  .solution-benefit-item {
    padding: 0.9rem 1rem;
    gap: 0.75rem;
  }
  .solution-benefit-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
  }
  .solution-benefit-icon svg {
    width: 18px;
    height: 18px;
  }
  .solution-benefit-intro h3 {
    font-size: 1rem;
  }
  .solution-benefit-intro p {
    font-size: 0.88rem;
  }
  .solution-benefit-content h4 {
    font-size: 0.88rem;
  }
  .solution-benefit-content p {
    font-size: 0.78rem;
  }
  .solution-promise-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .solution-promise-text {
    font-size: 0.92rem;
  }
  .solution-comp-stat {
    font-size: 0.95rem;
  }
  .solution-comp-stat-highlight {
    font-size: 1.1rem;
  }
  .solution-comparison-stats {
    flex-direction: column;
    gap: 0.4rem;
  }
  .solution-comp-divider {
    transform: rotate(90deg);
    display: inline-block;
  }
  .solution-title-underline::after {
    height: 7px;
    bottom: -2px;
  }

  /* ---- Features ---- */
  .features-section {
    padding: 4rem 1rem;
  }
  .features-section-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
  }
  .features-section-label::before,
  .features-section-label::after {
    display: none;
  }
  .features-section-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .features-section-subtitle {
    font-size: 0.92rem;
  }
  .features-card-content {
    padding: 1.75rem 1.25rem;
  }
  .features-card-title {
    font-size: 1.2rem;
  }
  .features-card-desc {
    font-size: 0.88rem;
  }
  .features-card-bg-number {
    font-size: 5.5rem;
    top: -10px;
    right: -8px;
  }

  .features-card-featured-badge {
    font-size: 0.6rem;
    margin-bottom: 0.75rem;
  }

  .features-card-badge-included {
    margin-top: 10px;
    margin-bottom: 0px;
  }

  .features-card-feature-item {
    font-size: 0.82rem;
    padding: 0.7rem 0;
  }
  .features-card-result {
    font-size: 0.82rem;
    padding: 1rem;
  }
  .features-stats-item {
    flex: 1 1 100%;
    text-align: center;
  }
  .features-stats-number {
    font-size: 2.5rem;
  }

  /* ---- Process ---- */
  .process-section {
    padding: 4rem 1rem;
  }
  .process-section-title {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }
  .process-section-subtitle {
    font-size: 0.92rem;
  }
  .process-steps-container {
    padding-left: 1.5rem;
    gap: 2rem;
  }
  .process-content-card {
    padding: 1.25rem;
    border-radius: 14px;
  }
  .process-step-title {
    font-size: 1.1rem;
  }
  .process-step-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .process-card-tag {
    font-size: 0.68rem;
    padding: 0.25rem 0.65rem;
    margin-bottom: 0.75rem;
  }
  .process-feature-list {
    gap: 1rem;
  }
  .process-feature-list li {
    font-size: 0.8rem;
  }
  .process-cta-btn {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }
  .process-section-tag {
    font-size: 0.72rem;
    gap: 0.6rem;
  }
  .process-section-tag::before,
  .process-section-tag::after {
    width: 16px;
  }
  .process-section-header {
    margin-bottom: 2.5rem;
  }

  .process-line-fill {
    left: 12px;
    top: -40px;
  }

  /* ---- Pricing ---- */
  .pricing-section {
    padding: 4rem 1rem;
  }
  .pricing-section-badge {
    font-size: 0.72rem;
    gap: 0.6rem;
  }
  .pricing-section-badge::before,
  .pricing-section-badge::after {
    width: 16px;
  }
  .pricing-card {
    border-radius: 20px;
  }
  .pricing-card-border {
    border-radius: 20px;
  }
  .pricing-card-content {
    padding: 2rem 1.25rem 1.5rem;
    border-radius: 19px;
  }
  .pricing-card-name {
    font-size: 1.4rem;
  }
  .pricing-amount {
    font-size: 3.2rem;
  }
  .pricing-currency {
    font-size: 1.5rem;
  }
  .pricing-include-item span:last-child {
    font-size: 0.88rem;
  }
  .pricing-cta {
    font-size: 1rem;
    padding: 1.1rem;
  }
  .pricing-audience-card {
    padding: 1.5rem;
    border-radius: 18px;
  }
  .pricing-audience-title {
    font-size: 1.1rem;
  }
  .pricing-audience-list li span {
    font-size: 0.82rem;
  }
  .pricing-audience-list {
    gap: 1rem;
  }
  .pricing-statement-text {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }

  /* ---- FAQ ---- */
  .faq-section {
    padding: 4rem 1rem;
  }
  .faq-section-label::before,
  .faq-section-label::after {
    display: none;
  }
  .faq-question {
    padding: 1rem;
    gap: 0.75rem;
  }
  .faq-question-text {
    font-size: 0.92rem;
  }
  .faq-icon {
    width: 24px;
    height: 24px;
  }
  .faq-icon svg {
    width: 12px;
    height: 12px;
  }
  .faq-answer-content {
    padding: 0 1rem 1rem;
  }
  .faq-answer-content p,
  .faq-answer-content ul li {
    font-size: 0.88rem;
  }

  /* ---- CTA ---- */
  .cta-section {
    padding: 4rem 1rem;
  }
  .cta-title {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }
  .cta-subtitle {
    font-size: 0.95rem;
  }
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 1rem 1.75rem;
    font-size: 0.95rem;
  }

  /* ---- Footer ---- */
  .footer-section {
    padding: 4rem 1rem 1.25rem;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-logo span {
    font-size: 1.25rem;
  }
  .footer-tagline {
    font-size: 0.9rem;
  }
  .footer-links-column h4 {
    font-size: 0.78rem;
  }
  .footer-links-column a {
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
  }
  .footer-copyright {
    font-size: 0.78rem;
  }
  .footer-note {
    font-size: 0.82rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   MAX-WIDTH: 380px — Small mobile (iPhone SE, Galaxy A series)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 380px) {
  /* ---- Navbar ---- */
  .hero-navbar {
    padding: 0.8rem 0.9rem;
  }
  .hero-logo span {
    font-size: 0.95rem;
  }
  .hero-logo-icon {
    width: 28px;
    height: 28px;
  }
  .hero-nav-cta {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
  }

  /* ---- Hero ---- */
  .hero {
    padding: 6rem 0.9rem 4rem;
  }

  .hero-title {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  .hero-highlight {
    margin-bottom: 0.75rem;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    max-width: 260px;
  }
  .hero-companies-heading {
    font-size: 0.72rem;
  }
  .hero-company-img {
    height: 18px;
    max-width: 76px;
  }
  .hero-logos-scroll {
    gap: 1.75rem;
  }
  .hero-arc-container {
    width: 280px;
    height: 280px;
  }

  /* ---- General section padding ---- */
  .problem-section,
  .solution-section,
  .features-section,
  .process-section,
  .pricing-section,
  .faq-section,
  .cta-section {
    padding: 3.5rem 0.9rem;
  }

  .footer-section {
    padding: 3.5rem 0.9rem 1rem;
  }

  /* ---- Problem ---- */
  .problem-section-title {
    font-size: 1.5rem;
  }

  .problem-card {
    padding: 0.8rem 0.9rem;
    gap: 0.65rem;
  }
  .problem-card-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .problem-stats-card {
    padding: 1rem;
  }
  .problem-stat-ring {
    width: 52px;
    height: 52px;
  }

  /* ---- Solution ---- */
  .solution-section-title,
  .features-section-title,
  .process-section-title,
  .pricing-section-title,
  .faq-section-title,
  .cta-title {
    font-size: 1.5rem;
  }
  .solution-transform-card {
    padding: 1rem;
  }
  .solution-benefit-item {
    padding: 0.8rem 0.9rem;
  }

  /* ---- Features ---- */
  .features-card-content {
    padding: 1.5rem 1rem;
  }
  .features-card-title {
    font-size: 1.1rem;
  }
  .features-stats-number {
    font-size: 2.25rem;
  }

  /* ---- Process ---- */
  .process-steps-container {
    padding-left: 1.25rem;
  }
  .process-content-card {
    padding: 1rem;
  }

  /* ---- Pricing ---- */
  .pricing-card-content {
    padding: 1.75rem 1rem 1.25rem;
  }
  .pricing-amount {
    font-size: 2.8rem;
  }
  .pricing-currency {
    font-size: 1.35rem;
  }
  .pricing-audience-card {
    padding: 1.25rem;
  }

  /* ---- FAQ ---- */
  .faq-question {
    padding: 0.9rem;
  }
  .faq-question-text {
    font-size: 0.88rem;
  }

  /* ---- CTA ---- */
  .cta-btn-primary,
  .cta-btn-secondary {
    max-width: 240px;
    font-size: 0.88rem;
    padding: 0.9rem 1.5rem;
  }

  /* ---- Footer ---- */
  .footer-logo span {
    font-size: 1.1rem;
  }
}

/* ========================================
   Modal Overlay & Form Styles
   ======================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 650px;
  background: linear-gradient(
    165deg,
    rgba(20, 20, 25, 0.95) 0%,
    rgba(10, 10, 15, 0.98) 100%
  );
  border: 1px solid rgba(13, 141, 239, 0.2);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(13, 141, 239, 0.1);
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-box::-webkit-scrollbar {
  width: 6px;
}
.modal-box::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 4px;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.3);
  transform: rotate(90deg);
}

.modal-close-btn svg {
  width: 18px;
  height: 18px;
}

.modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.modal-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00ff96;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(0, 255, 150, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 255, 150, 0.2);
}

.modal-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.modal-title-highlight {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #00ff96 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 0.25rem;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-family: var(--font-primary);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent-primary);
  background: rgba(13, 141, 239, 0.05);
  box-shadow: 0 0 0 4px rgba(13, 141, 239, 0.1);
}

.modal-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(
    135deg,
    #00c65c 0%,
    #009945 100%
  ); /* WhatsApp Green Vibe */
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 198, 92, 0.3);
}

.modal-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 198, 92, 0.5);
}

.modal-submit-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.modal-submit-btn:hover svg {
  transform: translateX(4px) translateY(-4px);
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .modal-box {
    padding: 2.5rem 1.5rem;
  }
  .modal-title {
    font-size: 1.8rem;
  }
}

/* =====================================================
   MODAL ADDITIONS — paste at end of index.css
   Covers: success state, spinner, particles
   ===================================================== */

/* Spinner */

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.submit-btn-spinner {
  width: 20px;
  height: 20px;
  transform-origin: center center;
  animation: spin 0.9s linear infinite;
  display: none; /* hidden by default */
  flex-shrink: 0;
}

/* ── Success state container ─────────────────────── */
.modal-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  gap: 1.25rem;
  min-height: 340px;
}

/* ── SVG tick animation wrapper ──────────────────── */
.success-animation {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 0.5rem;
}

.success-circle-svg {
  width: 120px;
  height: 120px;
}

/* both paths start hidden (dashoffset = length) */
.success-circle,
.success-check {
  stroke-dashoffset: 289; /* set in JS per element */
}

/* glow ring pulse */
@keyframes glowPulse {
  0%,
  100% {
    stroke: rgba(0, 255, 150, 0.15);
    stroke-width: 8;
  }
  50% {
    stroke: rgba(0, 255, 150, 0.35);
    stroke-width: 12;
  }
}

/* ── Confetti / particle burst ───────────────────── */
.success-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sp {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  animation: particleBurst 0.7s ease-out forwards;
  animation-play-state: paused; /* triggered in JS */
  opacity: 0;
}

.sp1 {
  top: 50%;
  left: 50%;
  background: #00ff96;
  --tx: -60px;
  --ty: -55px;
  --r: 30deg;
}
.sp2 {
  top: 50%;
  left: 50%;
  background: #0d8def;
  --tx: 60px;
  --ty: -50px;
  --r: -20deg;
}
.sp3 {
  top: 50%;
  left: 50%;
  background: #ffaa00;
  --tx: -70px;
  --ty: 20px;
  --r: 45deg;
}
.sp4 {
  top: 50%;
  left: 50%;
  background: #ff6b6b;
  --tx: 65px;
  --ty: 25px;
  --r: -40deg;
}
.sp5 {
  top: 50%;
  left: 50%;
  background: #00ff96;
  --tx: -20px;
  --ty: -75px;
  --r: 10deg;
}
.sp6 {
  top: 50%;
  left: 50%;
  background: #0d8def;
  --tx: 20px;
  --ty: 70px;
  --r: -15deg;
}

@keyframes particleBurst {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  80% {
    opacity: 0.8;
    transform: translate(var(--tx), var(--ty)) rotate(var(--r)) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--tx) * 1.2), calc(var(--ty) * 1.2))
      rotate(var(--r)) scale(0.5);
  }
}

/* ── Success text ────────────────────────────────── */
.success-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.success-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 340px;
}

.success-subtitle strong {
  color: #00ff96;
}

/* ── Close button inside success ─────────────────── */
.success-close-btn {
  margin-top: 0.5rem;
  padding: 0.75rem 2.25rem;
  background: rgba(0, 255, 150, 0.1);
  border: 1px solid rgba(0, 255, 150, 0.3);
  border-radius: 50px;
  color: #00ff96;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

.success-close-btn:hover {
  background: rgba(0, 255, 150, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 150, 0.2);
}

/* ── Error message ───────────────────────────────── */
.modal-error-msg {
  color: #ff6b6b;
  text-align: center;
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

/* ── Mobile adjustments ──────────────────────────── */
@media (max-width: 480px) {
  .success-title {
    font-size: 1.5rem;
  }
  .success-subtitle {
    font-size: 0.88rem;
  }
  .modal-success-state {
    padding: 1.5rem 0.75rem;
    min-height: 280px;
  }
  .success-animation {
    width: 110px;
    height: 110px;
  }
  .success-circle-svg {
    width: 100px;
    height: 100px;
  }
}

.tick-svg {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto;
}

.tick-ring {
  fill: none;
  stroke: #00e87a;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 276.46;
  stroke-dashoffset: 276.46;
  animation: drawRing 0.65s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.tick-check {
  fill: none;
  stroke: #00e87a;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: drawCheck 0.4s ease 0.72s forwards;
}

@keyframes drawRing {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(0, 232, 122, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(0, 232, 122, 0.6));
  }
}

.tick-svg {
  animation: glowPulse 2s ease-in-out 1.2s infinite;
}
