:root {
  --bg-color: #080315;
  --primary-gradient: linear-gradient(135deg, #e364f4 0%, #6366f1 100%);
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

.page-wrapper {
  position: relative;
  overflow-x: hidden;
}

/* Background Lighting */
.glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
}

.glow-hero-right {
  top: -20%;
  right: -5%;
  background: #6366f1;
  width: 550px;
  height: 550px;
  opacity: 0.14;
}
.glow-hero-left {
  bottom: 10%;
  left: 20%;
  background: #e364f4;
  width: 300px;
  height: 300px;
  opacity: 0.08;
}
.glow-features-left {
  top: 40%;
  left: -12%;
  background: #e364f4;
  width: 500px;
  height: 500px;
  opacity: 0.1;
}
.glow-hiw-right {
  bottom: -15%;
  right: 15%;
  background: #6366f1;
  width: 350px;
  height: 350px;
  opacity: 0.14;
}
.glow-comparison-left {
  top: -10%;
  left: 30%;
  background: #e364f4;
  width: 450px;
  height: 450px;
  opacity: 0.06;
}
.glow-pricing-right {
  bottom: 5%;
  right: -5%;
  background: #6366f1;
  width: 600px;
  height: 600px;
  opacity: 0.16;
}
.glow-faq-left {
  top: 50%;
  left: -5%;
  background: #e364f4;
  width: 280px;
  height: 280px;
  opacity: 0.1;
}

/* Navbar */
/* --- Desktop Navigation (Existing/Refined) --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
  max-width: 1400px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* --- Mobile Hamburger Icon --- */
.menu-toggle {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background-color: white;
  transition: 0.3s;
  border-radius: 2px;
}

/* --- Responsive Media Query --- */
@media (max-width: 768px) {
  .navbar {
    padding: 20px 30px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Mobile Menu Overlay */
  .nav-container {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    background: rgba(8, 3, 21, 0.95); /* Darker version of theme bg */
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    gap: 30px;
    z-index: 100;
  }

  .nav-container.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .nav-links a {
    font-size: 1.5rem; /* Larger links for touch */
    color: white;
  }

  /* Hamburger Animation to 'X' */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Scale down glow effects to prevent overflow */
  .glow {
    width: 300px;
    height: 300px;
    filter: blur(80px);
  }

  /* Center the hero text better on mobile */
  .hero {
    padding-top: 40px;
  }

  h1 {
    font-size: 2.5rem;
    margin-top: 20px;
  }

  .subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    gap: 8px;
    margin-bottom: 24px;
  }

  .btn-primary {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  /* Scale down 3D stack for mobile */
  .visual-container {
    margin-top: 50px;
  }

  .stack {
    width: 220px;
    height: 220px;
  }

  .layer {
    border-radius: 28px;
    font-size: 0.7rem;
  }

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

/* --- Extra small screens --- */
@media (max-width: 480px) {
  .navbar {
    padding: 16px 20px;
  }

  .glow {
    width: 200px;
    height: 200px;
    filter: blur(60px);
  }

  .hero {
    padding-top: 24px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .visual-container {
    margin-top: 36px;
  }

  .stack {
    width: 180px;
    height: 180px;
  }

  .layer {
    border-radius: 22px;
    font-size: 0.6rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-gradient);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
}

.btn-outline {
  border: 1px solid var(--glass-border);
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

/* Hero Section */
.hero {
  text-align: center;
  padding-top: 80px;
  position: relative;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero .container {
  max-width: 1000px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 40px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.avatar-group {
  display: flex;
}

.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #444;
  border: 2px solid var(--bg-color);
  margin-right: -8px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 40px;
}

.btn-primary {
  background: var(--primary-gradient);
  border: none;
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: scale(1.05);
}

.icon-circle {
  background: rgba(255, 255, 255, 0.2);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* 3D Stack Visual */
.visual-container {
  margin-top: 80px;
  perspective: 1000px;
}

.stack {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  transform: rotateX(60deg) rotateZ(-45deg);
  transform-style: preserve-3d;
}

.layer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  transition: transform 0.5s ease;
}

.layer-1 {
  background: var(--primary-gradient);
  transform: translateZ(100px);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}

.layer-2 {
  background: rgba(99, 102, 241, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transform: translateZ(50px);
}

.layer-3 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateZ(0px);
}

.visual-container:hover .layer-1 {
  transform: translateZ(150px);
}

.visual-container:hover .layer-2 {
  transform: translateZ(0px);
}

.visual-container:hover .layer-3 {
  transform: translateZ(-150px);
}

.stack span {
  transform: rotateZ(45deg) rotateX(-20deg); /* Adjust text to be readable */
}

/* --- Intro Section --- */
.intro-section {
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
}

.intro-section .container {
  max-width: 1200px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
}

.intro-text .subtitle {
  text-align: left;
  margin: 0 0 32px;
  max-width: none;
}

.intro-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.intro-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.intro-point-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.intro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.intro-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: border-color 0.3s ease;
}

.intro-stat:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.intro-stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Features Section --- */
.features {
  padding: 100px 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.features .container {
  max-width: 1200px;
}

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

.features-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

/* --- Individual Feature Card (Reference Style) --- */
.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 24px; /* Soft rounded corners */
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align text to left as per reference */
  text-align: left;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Icon Styling (The small circle in the top-left) */
.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Fix for small screens */
@media (max-width: 480px) {
  .feature-card {
    padding: 30px 20px;
  }

  .features {
    padding: 60px 0;
  }

  .trust-section {
    padding: 60px 0;
  }

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

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

  .info-card {
    padding: 18px 16px;
    gap: 14px;
  }

  .info-arrow {
    display: none;
  }
}

/* --- How It Works Section --- */
.how-it-works {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

.how-it-works .container {
  max-width: 1200px;
}

.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 60px;
}

.step-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease;
}

.step-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.step-number {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--text-muted);
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-connector::after {
  content: "→";
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* Data Flow */
.data-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.flow-direction {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
}

.flow-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 16px;
}

.flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flow-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
    gap: 16px;
  }

  .step-connector {
    width: auto;
    min-width: auto;
    height: 30px;
  }

  .step-connector::after {
    transform: rotate(90deg);
  }

  .data-flow {
    grid-template-columns: 1fr;
  }
}

/* --- Trust Section --- */
.trust-section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  background-color: #080315;
  overflow: hidden;
}

.trust-section::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(107, 33, 168, 0.15) 0%,
    rgba(76, 29, 149, 0.05) 40%,
    transparent 70%
  );
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.trust-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(
    circle,
    rgba(227, 100, 244, 0.08) 0%,
    transparent 70%
  );
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.trust-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

/* --- Section Header (shared between features & trust) --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

/* --- Trust Grid --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.trust-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: border 0.3s ease;
}

.trust-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.trust-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

.trust-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--text-muted);
}

/* --- Clients (inside Trust Section) --- */
.clients-block {
  margin-top: 60px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.clients-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.client-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 28px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition:
    opacity 0.3s ease,
    border-color 0.3s ease;
}

.client-card:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.2);
}

/* --- Comparison Section --- */
.comparison-section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

.comparison-section .container {
  max-width: 1200px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s ease;
}

.comparison-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.comparison-card--highlight {
  background: rgba(99, 102, 241, 0.06);
  border-color: rgba(99, 102, 241, 0.25);
}

.comparison-card--highlight:hover {
  border-color: rgba(99, 102, 241, 0.4);
}

.comparison-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-gradient);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.comparison-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.comparison-card--highlight .comparison-icon {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.2);
}

.comparison-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
}

.comparison-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.comparison-price--green {
  color: #4ade80;
}

.comparison-type {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-list li {
  font-size: 0.88rem;
  line-height: 1.4;
  padding-left: 24px;
  position: relative;
}

.comparison-con {
  color: var(--text-muted);
}

.comparison-con::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
}

.comparison-pro {
  color: var(--text-muted);
}

.comparison-pro::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

/* --- Pricing Section --- */
.pricing-section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

.pricing-section .container {
  max-width: 1200px;
}

.pricing-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
  gap: 40px;
  align-items: center;
}

/* Left: Info Cards */
.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.3s ease;
}

.info-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.info-card--highlight {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  margin-top: 8px;
}

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.info-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-main);
}

.info-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.info-arrow {
  margin-left: auto;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Right: Pricing Card */
.pricing-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(
    circle,
    rgba(147, 51, 234, 0.25) 0%,
    transparent 70%
  );
  filter: blur(60px);
  pointer-events: none;
}

.pricing-card-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pricing-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.pricing-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
}

.stat-value--green {
  color: #4ade80;
}

.pricing-amount {
  display: flex;
  align-items: center;
  gap: 16px;
}

.price {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #4ade80;
  letter-spacing: -1px;
}

.price-badge {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-graph {
  position: relative;
  height: 120px;
  margin: 0 -10px;
}

.pricing-graph svg {
  width: 100%;
  height: 100%;
}

.graph-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  margin-top: 8px;
}

.graph-labels span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  text-decoration: none;
}

/* --- FAQ Section --- */
.faq-section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

.faq-section .container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active {
  border-color: rgba(99, 102, 241, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-chevron {
  min-width: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 30px;
}

.site-footer .container {
  max-width: 1200px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 12px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-contact-item:hover {
  color: var(--text-main);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
