/* =============================================
   BENNYBOT — Section Styles
   ============================================= */

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--duration-base) var(--ease-out);
}

.navbar.scrolled {
  background: var(--glass-bg-solid);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 800;
  font-size: var(--fs-lg);
  z-index: 10;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  color: #fff;
  font-weight: 900;
  font-size: var(--fs-base);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}

.navbar__menu a {
  padding: 0.5rem 1rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast), background var(--duration-fast);
}

.navbar__menu a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.navbar__cta {
  padding: 0.625rem 1.25rem;
  font-size: var(--fs-xs);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .navbar__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-md);
    background: var(--bg-primary);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-base);
  }

  .navbar__menu.active {
    opacity: 1;
    pointer-events: all;
  }

  .navbar__menu a {
    font-size: var(--fs-xl);
    font-weight: 700;
  }

  .navbar__cta.desktop-only {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }
}


/* ---- HERO SECTION ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
  position: relative;
  overflow: hidden;
}

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

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-green-glow) 0%, transparent 70%);
  opacity: 0.12;
  filter: blur(60px);
}

.hero__glow-2 {
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%);
  opacity: 0.08;
  filter: blur(80px);
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__text {
  max-width: 560px;
}

.hero__text .badge {
  margin-bottom: var(--space-xl);
}

.hero__text h1 {
  margin-bottom: var(--space-lg);
  line-height: 1.05;
}

.hero__text > p {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.hero__stats {
  display: flex;
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}

.stat__number {
  display: block;
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--accent-green);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.stat__label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual (Phone Mockup) */
.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 300px;
  height: 620px;
  border-radius: var(--radius-3xl);
  border: 2.5px solid rgba(255, 255, 255, 0.1);
  background: var(--wa-bg);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 30px;
  background: #000;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* WhatsApp UI inside phone */
.wa-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 40px 16px 12px;
  background: var(--wa-header);
}

.wa-header__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.wa-header__info {
  display: flex;
  flex-direction: column;
}

.wa-header__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--wa-text);
}

.wa-header__status {
  font-size: 11px;
  color: var(--accent-green);
}

.wa-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 12px;
  overflow: hidden;
  background:
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
}

.chat-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
  position: relative;
  word-wrap: break-word;
}

.chat-bubble p {
  color: var(--wa-text);
  max-width: none;
  font-size: 13px;
  line-height: 1.45;
}

.chat-bubble--in {
  background: var(--wa-bubble-in);
  border-top-left-radius: 0;
  align-self: flex-start;
}

.chat-bubble--out {
  background: var(--wa-bubble-out);
  border-top-right-radius: 0;
  align-self: flex-end;
}

.chat-time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: var(--wa-time);
  margin-top: 2px;
}

/* Menu buttons in chat */
.chat-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}

.chat-menu-btn {
  display: block;
  padding: 8px 12px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 8px;
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background var(--duration-fast);
}

.chat-menu-btn:hover {
  background: rgba(37, 211, 102, 0.15);
}

/* WhatsApp input area */
.wa-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--wa-header);
}

.wa-input__field {
  flex: 1;
  padding: 8px 14px;
  background: var(--wa-input-bg);
  border-radius: 20px;
  font-size: 12px;
  color: var(--wa-text);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.wa-input__send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-input__send svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

/* Hero floating cards */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: var(--fs-xs);
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
}

.hero__float svg {
  width: 16px;
  height: 16px;
}

.hero__float--1 {
  top: 15%;
  right: -10%;
  background: rgba(37, 211, 102, 0.1);
  backdrop-filter: blur(12px);
  color: var(--accent-green);
  border-color: rgba(37, 211, 102, 0.15);
  animation: float1 6s ease-in-out infinite;
}

.hero__float--2 {
  bottom: 30%;
  right: -15%;
  background: rgba(108, 99, 255, 0.1);
  backdrop-filter: blur(12px);
  color: var(--accent-blue);
  border-color: rgba(108, 99, 255, 0.15);
  animation: float2 7s ease-in-out infinite;
}

.hero__float--3 {
  bottom: 10%;
  left: -5%;
  background: rgba(37, 211, 102, 0.1);
  backdrop-filter: blur(12px);
  color: var(--accent-green);
  border-color: rgba(37, 211, 102, 0.15);
  animation: float3 5s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
  }

  .hero__text {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero__text > p {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .phone-mockup {
    width: 260px;
    height: 540px;
  }

  .hero__float {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    gap: var(--space-lg);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}


/* ---- PROBLEM SECTION ---- */
.problem {
  background: var(--bg-secondary);
  position: relative;
}

.problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.problem__card {
  padding: var(--space-xl) var(--space-lg);
}

.problem__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.problem__icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-red);
}

.problem__icon--yellow {
  background: var(--accent-yellow-dim);
}
.problem__icon--yellow svg {
  color: var(--accent-yellow);
}

.problem__icon--orange {
  background: var(--accent-orange-dim);
}
.problem__icon--orange svg {
  color: var(--accent-orange);
}

.problem__card h4 {
  margin-bottom: var(--space-sm);
  font-size: var(--fs-lg);
}

.problem__card p {
  font-size: var(--fs-sm);
  line-height: 1.65;
}

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


/* ---- SOLUTION SECTION (Bot WhatsApp) ---- */
.solution {
  position: relative;
  overflow: visible;
}

.solution__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.solution__text h2 {
  margin-bottom: var(--space-lg);
}

.solution__text > p {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2xl);
}

.solution__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

/* Solution CTA */
.solution__cta {
  margin-top: var(--space-lg);
}

.solution__cta .btn {
  font-size: var(--fs-base);
  padding: 1rem 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all var(--duration-base) var(--ease-out);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border-glass);
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
}

.feature-item__text h5 {
  margin-bottom: var(--space-2xs);
  font-weight: 700;
}

.feature-item__text p {
  font-size: var(--fs-sm);
}

.solution__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.solution__visual .phone-mockup {
  width: 280px;
  height: 580px;
}

@media (max-width: 1024px) {
  .solution__content {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .solution__visual {
    order: -1;
  }

  .solution__visual .phone-mockup {
    width: 260px;
    height: 540px;
  }
}


/* ---- BRIDGE SECTION ---- */
.bridge {
  background: var(--bg-secondary);
  position: relative;
  text-align: center;
}

.bridge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.bridge__visual {
  max-width: 340px;
  margin: 0 auto var(--space-2xl);
}

.bridge__visual .phone-mockup {
  width: 100%;
  height: auto;
  aspect-ratio: 300 / 560;
  margin: 0 auto;
}

.bridge__chat-demo {
  background: var(--wa-bg);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-glass);
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.bridge__chat-demo .wa-header {
  padding: 14px 16px;
}

.bridge__chat-demo .wa-chat {
  padding: 16px 12px;
  min-height: 180px;
}

.bridge__failed {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--accent-red-dim);
  color: var(--accent-red);
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-top: var(--space-md);
}

.bridge__failed svg {
  width: 14px;
  height: 14px;
}

.bridge h2 {
  margin-bottom: var(--space-lg);
}

.bridge > .container > p {
  max-width: 50ch;
  margin-inline: auto;
  font-size: var(--fs-lg);
}


/* ---- AI AGENT SECTION ---- */
.ai-agent {
  position: relative;
  overflow: hidden;
}

.ai-agent__bg-glow {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%);
  opacity: 0.1;
  filter: blur(80px);
  pointer-events: none;
}

.ai-agent__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.ai-agent__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Neural Network Visualization */
.ai-network {
  position: relative;
  width: 400px;
  height: 400px;
}

.ai-network__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ai-network__svg line {
  stroke: var(--accent-blue);
  stroke-width: 1;
  opacity: 0.15;
  stroke-dasharray: 8 4;
  animation: lineFlow 3s linear infinite;
}

.ai-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 16px var(--accent-blue-glow);
}

.ai-node--large {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  animation: nodePulse 3s ease-in-out infinite;
}

.ai-node--center {
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  box-shadow: 0 0 40px var(--accent-blue-glow), 0 0 80px rgba(108, 99, 255, 0.1);
  z-index: 2;
}

.ai-node--center svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

/* AI Chat Demo */
.ai-chat-demo {
  background: var(--wa-bg);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(108, 99, 255, 0.2);
  overflow: hidden;
  box-shadow:
    var(--shadow-lg),
    0 0 60px rgba(108, 99, 255, 0.08);
  max-width: 380px;
}

.ai-chat-demo .wa-header {
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(37, 211, 102, 0.1));
  border-bottom: 1px solid var(--border-subtle);
}

.ai-chat-demo .wa-header__avatar {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
}

.ai-chat-demo .wa-header__status {
  color: var(--accent-blue);
}

.ai-chat-demo .wa-chat {
  min-height: 220px;
}

/* Tool calling indicator */
.tool-calling {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 12px;
  margin: 4px 0;
  border-radius: var(--radius-sm);
  background: var(--accent-blue-dim);
  border: 1px solid rgba(108, 99, 255, 0.15);
  font-size: 11px;
  color: var(--accent-blue);
  font-weight: 600;
  align-self: flex-start;
}

.tool-calling svg {
  width: 12px;
  height: 12px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ai-agent__text h2 {
  margin-bottom: var(--space-lg);
}

.ai-agent__text > p {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2xl);
}

.ai-agent__capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.capability-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--accent-blue-dim);
  border: 1px solid rgba(108, 99, 255, 0.1);
  transition: all var(--duration-base) var(--ease-out);
}

.capability-card:hover {
  border-color: rgba(108, 99, 255, 0.25);
  transform: translateY(-2px);
}

.capability-card svg {
  width: 24px;
  height: 24px;
  color: var(--accent-blue);
  margin-bottom: var(--space-sm);
}

.capability-card h5 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-2xs);
}

.capability-card p {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .ai-agent__content {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .ai-network {
    width: 300px;
    height: 300px;
  }

  .ai-agent__capabilities {
    grid-template-columns: 1fr;
  }
}


/* ---- PRICING SECTION ---- */
.pricing {
  background: var(--bg-secondary);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-glass);
  transition: all var(--duration-base) var(--ease-out);
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-lg);
}

/* Recommended Card */
.pricing-card--featured {
  border-color: rgba(108, 99, 255, 0.3);
  background: linear-gradient(
    180deg,
    rgba(108, 99, 255, 0.06) 0%,
    var(--glass-bg) 40%
  );
}

.pricing-card--featured:hover {
  border-color: rgba(108, 99, 255, 0.5);
  box-shadow:
    var(--shadow-lg),
    0 0 60px rgba(108, 99, 255, 0.1);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-green));
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.pricing-ribbon {
  position: absolute;
  top: 16px;
  right: -8px;
  padding: 6px 16px 6px 12px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.pricing-ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent rgba(88, 78, 200, 0.6) transparent transparent;
}

.pricing-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.pricing-card__icon svg {
  width: 28px;
  height: 28px;
}

.pricing-card__icon--green {
  background: var(--accent-green-dim);
  border: 1px solid rgba(37, 211, 102, 0.15);
}
.pricing-card__icon--green svg {
  color: var(--accent-green);
}

.pricing-card__icon--blue {
  background: var(--accent-blue-dim);
  border: 1px solid rgba(108, 99, 255, 0.15);
}
.pricing-card__icon--blue svg {
  color: var(--accent-blue);
}

.pricing-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
}

.pricing-card__tagline {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.pricing-card__price {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-card__price span {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.pricing-feature svg {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
  flex-shrink: 0;
}

.pricing-card--featured .pricing-feature svg {
  color: var(--accent-blue);
}

.pricing-card .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .pricing__cards {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}


/* ---- CTA SECTION ---- */
.cta-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-green-glow) 0%, transparent 60%);
  opacity: 0.1;
  filter: blur(60px);
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-lg);
}

.cta-section p {
  font-size: var(--fs-lg);
  max-width: 50ch;
  margin: 0 auto var(--space-2xl);
}

.cta-section__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}


/* ---- FOOTER ---- */
.footer {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 800;
  font-size: var(--fs-lg);
}

.footer__links {
  display: flex;
  gap: var(--space-xl);
}

.footer__links a {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--text-primary);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
