/* ==========================================================================
   Stoxly.io — Landing Page Stylesheet
   Dark premium glassmorphic fintech theme
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   1. Landing Nav
   -------------------------------------------------------------------------- */
.landing-nav {
  position: sticky;
  inset-block-start: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.875rem;
  padding-inline: clamp(1rem, 4vw, 3rem);
  background: var(--bg-dark-card);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-block-end: 1px solid var(--border-glass);
  box-shadow: 0 1px 0 var(--border-glass);
  transition: background 0.3s ease;
}

.landing-nav .nav-left-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.landing-nav .nav-buttons-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.landing-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-white);
  outline: none;
}

.landing-nav .nav-logo .logo-svg {
  inline-size: 68px;
  block-size: auto;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.landing-nav .nav-logo:hover .logo-svg {
  transform: scale(1.05) rotate(-2deg);
}

.landing-nav .nav-logo .logo-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-nav .nav-logo .logo-title {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--text-white);
}

.landing-nav .nav-logo .logo-dot {
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-nav .nav-logo .logo-tagline {
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

.landing-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
}

.landing-nav .nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Beautiful outline button style for Pricing and Login */
.landing-nav .nav-links a.nav-btn-outline {
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.02);
}

.landing-nav .nav-links a.nav-btn-outline:hover {
  color: var(--text-white);
  border-color: var(--border-glass-focus);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

/* Primary solid button style for Contact Us */
.landing-nav .nav-links a.nav-cta {
  color: var(--text-white) !important;
  background: var(--gradient-magenta);
  border: none;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.25);
}

.landing-nav .nav-links a.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.landing-nav .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.landing-nav .nav-toggle span {
  display: block;
  inline-size: 22px;
  block-size: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --------------------------------------------------------------------------
   2. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(4rem, 10vh, 8rem) clamp(3rem, 8vh, 6rem);
  padding-inline: clamp(1rem, 5vw, 3rem);
  background: var(--bg-dark-deep);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind hero */
.hero-section::before {
  content: "";
  position: absolute;
  inset-block-start: -30%;
  inset-inline-start: 50%;
  translate: -50% 0;
  inline-size: 800px;
  block-size: 800px;
  background: radial-gradient(circle, rgba(142, 45, 226, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-section .hero-headline {
  font-family: var(--font-headings);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-white);
  max-inline-size: 800px;
  margin-block-end: 2rem;
}

.hero-section .hero-paragraph {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-muted);
  max-inline-size: 600px;
  margin-block-end: 3rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-block-end: 4.5rem;
}

/* Video placeholder */
.hero-video-wrapper {
  inline-size: 100%;
  max-inline-size: 900px;
  aspect-ratio: 16 / 9;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium), 0 0 60px rgba(142, 45, 226, 0.08);
}

.hero-video-wrapper .play-button {
  inline-size: 72px;
  block-size: 72px;
  border-radius: 50%;
  background: var(--gradient-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 24px rgba(236, 72, 153, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-video-wrapper .play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(236, 72, 153, 0.55);
}

.hero-video-wrapper .play-button::after {
  content: "";
  display: block;
  inline-size: 0;
  block-size: 0;
  border-block: 12px solid transparent;
  border-inline-start: 20px solid var(--text-white);
  margin-inline-start: 4px;
}

/* --------------------------------------------------------------------------
   3. Feature Pillars
   -------------------------------------------------------------------------- */
.feature-section {
  padding-block: clamp(3rem, 6vh, 5rem);
  padding-inline: clamp(1rem, 5vw, 3rem);
  background: var(--bg-dark-deep);
}

.feature-row {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  max-inline-size: 1100px;
  margin-inline: auto;
  margin-block-end: clamp(3rem, 6vh, 5rem);
}

.feature-row:last-child {
  margin-block-end: 0;
}

/* Alternate layout for even rows */
.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
  min-inline-size: 0;
}

.feature-content h3 {
  font-family: var(--font-headings);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  margin-block-end: 1rem;
}

.feature-content p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-muted);
  margin-block-end: 1.5rem;
}

.feature-content .feature-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-magenta);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s ease, color 0.25s ease;
}

.feature-content .feature-link::after {
  content: "→";
  transition: translate 0.25s ease;
}

.feature-content .feature-link:hover {
  color: var(--color-orange);
  gap: 0.65rem;
}

.feature-content .feature-link:hover::after {
  translate: 4px 0;
}

.feature-image {
  flex: 1;
  min-inline-size: 0;
}

.feature-image img {
  inline-size: 100%;
  block-size: auto;
  border-radius: 16px;
  display: block;
  box-shadow: var(--shadow-premium);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(142, 45, 226, 0.1);
}

/* --------------------------------------------------------------------------
   4. Reviews / Testimonials
   -------------------------------------------------------------------------- */
.reviews-section {
  padding-block: clamp(3rem, 6vh, 5rem);
  padding-inline: clamp(1rem, 5vw, 3rem);
  background: var(--bg-dark-deep);
  overflow: hidden;
}

.reviews-section .section-heading {
  text-align: center;
  margin-block-end: 2.5rem;
}

/* -------------------------------------
   NEW TESTIMONIALS CAROUSEL
-------------------------------------- */
.carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.reviews-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-block-end: 1rem;
  padding-block-start: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* Ensure children are centered if there is space */
  align-items: stretch;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
}

/* Original Review Card Styling Restored */
.review-card {
  width: 100%;
  max-width: 700px;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 3rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-card:hover {
  border-color: var(--border-glass-focus);
  box-shadow: var(--shadow-premium);
}

.review-card .review-stars {
  display: flex;
  gap: 2px;
  margin-block-end: 1rem;
  color: var(--color-yellow);
  font-size: 0.95rem;
  justify-content: center;
}

.review-card .review-quote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  margin-block-end: 2rem;
  flex-grow: 1;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-dark-card); /* Changed to match theme better */
  color: var(--text-white);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.carousel-nav-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-focus);
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav-btn.prev-btn {
  left: -22px; /* Half outside the container */
}

.carousel-nav-btn.next-btn {
  right: -22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots .dot.active {
  background: #2563EB;
}

@media (max-width: 768px) {
  .carousel-nav-btn.prev-btn {
    left: -10px;
  }
  .carousel-nav-btn.next-btn {
    right: -10px;
  }
  .reviews-carousel {
    padding: 2.5rem 1.5rem;
  }
}
.review-card .review-author {
  display: flex;
  flex-direction: column; /* Stack avatar above author name/role */
  align-items: center;
  gap: 0.5rem;
  margin-block-start: auto; /* Strict alignment at card base */
}

.review-card .review-avatar {
  inline-size: 52px;
  block-size: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-glass-focus);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-white);
}

.review-card .review-name {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.3;
}

.review-card .review-role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-inactive);
}

/* --------------------------------------------------------------------------
   5. Pricing Section
   -------------------------------------------------------------------------- */
.pricing-section {
  padding-block: clamp(4rem, 8vh, 6rem);
  padding-inline: clamp(1rem, 5vw, 3rem);
  background: linear-gradient(180deg, var(--bg-dark-deep) 0%, rgba(14, 10, 24, 1) 100%);
}

.pricing-section .pricing-header {
  text-align: center;
  margin-block-end: 2.5rem;
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  padding: 4px;
  margin-block-start: 1.25rem;
  margin-block-end: 0.75rem;
}

.billing-toggle .toggle-option {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.billing-toggle .toggle-option.active {
  color: var(--text-white);
  background: var(--gradient-magenta);
  box-shadow: 0 2px 12px rgba(236, 72, 153, 0.3);
}

.billing-toggle .toggle-option:not(.active):hover {
  color: var(--text-primary);
}

.pricing-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-inactive);
  text-align: center;
  margin-block-end: 2.5rem;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-inline-size: 1200px;
  margin-inline: auto;
  align-items: stretch; /* mathematically stretch all cards in the row to the tallest item */
  justify-items: stretch; /* force all grid columns to stretch uniformly */
}

.pricing-card {
  position: relative;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* force card frame to scale with stretched grid cell */
  min-height: 520px; /* unified minimum baseline height */
  inline-size: 100%; /* force card to occupy full width of its column gutter */
  width: 100%;
}

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

/* Popular card — gradient border effect */
.pricing-card.popular {
  border-color: transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.3), var(--shadow-premium), 0 0 40px rgba(236, 72, 153, 0.08);
}

.pricing-card.popular::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1px;
  background: var(--gradient-logo);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-card .popular-badge {
  position: absolute;
  inset-block-start: -12px;
  inset-inline-start: 50%;
  translate: -50% 0;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-white);
  background: var(--gradient-magenta);
  padding-block: 4px;
  padding-inline: 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card .plan-name {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-block-end: 0.5rem;
}

.pricing-card .plan-price {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-block-end: 0.25rem;
  min-height: 4.5rem; /* equal price block height across all frames */
  display: flex;
  align-items: baseline;
}

.pricing-card .plan-price .currency {
  font-size: 0.5em;
  font-weight: 600;
  vertical-align: super;
  color: var(--text-muted);
}

.pricing-card .plan-price .period {
  font-size: 0.35em;
  font-weight: 400;
  color: var(--text-inactive);
}

.price-yearly {
  display: none;
}

.pricing-card .plan-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-inactive);
  margin-block-end: 1.5rem;
  line-height: 1.5;
  min-height: 2.5rem; /* equal description block height across all frames */
}

.pricing-card .plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-block-end: 2rem;
  flex: 1 1 auto; /* stretch feature list */
}

.pricing-card .plan-features li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
}

.pricing-card .plan-features li i {
  flex-shrink: 0;
  margin-block-start: 3px;
  font-size: 0.9rem;
  inline-size: 1.25rem; /* uniform visual gutter width */
  display: inline-flex;
  justify-content: center;
}

.pricing-card .plan-features li .fa-check {
  color: var(--color-magenta); /* brand ticker color */
}

.pricing-card .plan-features li.feature-disabled {
  color: var(--text-inactive);
  opacity: 0.55;
}

.pricing-card .plan-features li.feature-disabled .fa-xmark {
  color: var(--text-inactive);
}

/* Beautiful Action Button Styles for all pricing plans */
.btn-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass-focus);
  padding-block: 0.75rem;
  padding-inline: 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-block-start: auto; /* aligns strictly to the bottom of the card frame */
  inline-size: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-plan:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
}

.btn-plan:active {
  transform: translateY(0);
}

.btn-plan-popular {
  background: var(--gradient-magenta);
  border: none;
  color: var(--text-white) !important;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-plan-popular:hover {
  background: var(--gradient-logo);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.45);
  border: none;
}

/* --------------------------------------------------------------------------
   6. FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
  padding-block: clamp(4rem, 8vh, 6rem);
  padding-inline: clamp(1rem, 5vw, 3rem);
  background: var(--bg-dark-deep);
}

.faq-section .section-heading {
  text-align: center;
  margin-block-end: 2.5rem;
}

.faq-list {
  max-inline-size: 760px;
  margin-inline: auto;
}

.faq-item {
  border-block-end: 1px solid var(--border-glass);
}

.faq-item summary {
  font-family: var(--font-headings);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 600;
  color: var(--text-primary);
  padding-block: 1.25rem;
  padding-inline: 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.25s ease;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: "";
}

/* Toggle icon */
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.35s ease, color 0.25s ease;
  inline-size: 1.5rem;
  text-align: center;
}

.faq-item[open] summary::after {
  content: "×";
  transform: rotate(90deg);
  color: var(--color-magenta);
}

.faq-item summary:hover {
  color: var(--text-white);
}

.faq-item .faq-answer {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  padding-block-end: 1.25rem;
  padding-inline-end: 2rem;
  animation: faq-slide-in 0.35s ease forwards;
}

@keyframes faq-slide-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   7. Landing Footer
   -------------------------------------------------------------------------- */
.landing-footer {
  padding-block: clamp(2.5rem, 5vh, 4rem);
  padding-inline: clamp(1rem, 5vw, 3rem);
  background: var(--bg-dark-deep);
  border-block-start: 1px solid var(--border-glass);
  text-align: center;
}

.landing-footer .footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem; /* Generous gap */
  margin-block-end: 2rem;
  list-style: none;
}

.landing-footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 54px; /* Increased circular wrapper size */
  block-size: 54px; /* Increased circular wrapper size */
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 1.4rem; /* Scale up icon text font size */
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.landing-footer .footer-social a:hover {
  background: rgba(236, 72, 153, 0.12);
  color: var(--color-magenta);
  border-color: rgba(236, 72, 153, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

.landing-footer .footer-social a svg,
.landing-footer .footer-social a i {
  inline-size: 24px; /* Scale up icon inside */
  block-size: 24px; /* Scale up icon inside */
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-footer .footer-social a .fa-x-twitter,
.landing-footer .footer-social a .fa-x-twitter::before {
  color: var(--text-muted) !important;
  -webkit-text-fill-color: var(--text-muted) !important;
}

.landing-footer .footer-social a .fa-x-twitter svg,
.landing-footer .footer-social a .fa-x-twitter svg path {
  fill: var(--text-muted) !important;
}

.landing-footer .footer-social a:hover .fa-x-twitter,
.landing-footer .footer-social a:hover .fa-x-twitter::before {
  color: var(--color-magenta) !important;
  -webkit-text-fill-color: var(--color-magenta) !important;
}

.landing-footer .footer-social a:hover .fa-x-twitter svg,
.landing-footer .footer-social a:hover .fa-x-twitter svg path {
  fill: var(--color-magenta) !important;
}

.landing-footer .footer-brand-row {
  margin-block-end: 1rem;
}

.landing-footer .footer-brand-name {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-white);
}

.landing-footer .footer-copyright {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-inactive);
}

.landing-footer .footer-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-block-start: 0.25rem;
  font-style: italic;
}

.landing-footer .footer-tagline span {
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. Utility Classes
   -------------------------------------------------------------------------- */

/* Animated gradient text */
.text-gradient {
  background: var(--gradient-logo);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* Primary CTA button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  background: var(--gradient-magenta);
  padding-block: 0.75rem;
  padding-inline: 2rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(236, 72, 153, 0.45), 0 0 60px rgba(236, 72, 153, 0.12);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(236, 72, 153, 0.3);
}

/* Outline button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  padding-block: 0.75rem;
  padding-inline: 2rem;
  border: 1px solid var(--border-glass-focus);
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  transform: translateY(-1px);
}

.btn-outline:active {
  transform: translateY(0);
}

/* Section label pill */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-magenta);
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.18);
  padding-block: 0.3rem;
  padding-inline: 0.85rem;
  border-radius: 999px;
  margin-block-end: 1rem;
}

/* Section heading */
.section-heading {
  font-family: var(--font-headings);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Section subheading */
.section-subheading {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-block-start: 0.75rem;
  max-inline-size: 600px;
}

/* Center utility for section headers */
.pricing-header .section-subheading,
.faq-section .section-subheading,
.reviews-section .section-subheading {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   9. Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Tablet — max 1024px */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile — max 768px */
@media (max-width: 768px) {
  /* Nav */
  .landing-nav .nav-toggle {
    display: flex;
  }

  .landing-nav .nav-links {
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: 0;
    block-size: 100dvh;
    inline-size: min(300px, 80vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-block-start: 5rem;
    padding-inline: 2rem;
    background: rgba(10, 8, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-inline-start: 1px solid var(--border-glass);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  .landing-nav .nav-links.open {
    transform: translateX(0);
  }

  .landing-nav .nav-links li {
    inline-size: 100%;
  }

  .landing-nav .nav-links a {
    display: block;
    padding-block: 0.85rem;
    font-size: 1rem;
    border-block-end: 1px solid var(--border-glass);
  }

  .landing-nav .nav-links a::after {
    display: none;
  }

  /* Hero */
  .hero-section {
    padding-block: clamp(3rem, 8vh, 5rem) clamp(2rem, 5vh, 3rem);
  }

  .hero-video-wrapper .play-button {
    inline-size: 56px;
    block-size: 56px;
  }

  /* Features — stack vertically */
  .feature-row,
  .feature-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .feature-content .feature-link {
    justify-content: center;
  }

  .feature-image img {
    max-inline-size: 480px;
    margin-inline: auto;
  }

  /* Reviews */
  .review-card {
    flex: 0 0 85vw;
  }

  /* Pricing — single column */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-inline-size: 420px;
    margin-inline: auto;
  }

  /* FAQ */
  .faq-item summary {
    font-size: 0.95rem;
    padding-block: 1rem;
  }
}

/* Small mobile — max 480px */
@media (max-width: 480px) {
  .hero-section .hero-headline {
    font-size: 1.85rem;
  }

  .btn-primary,
  .btn-outline {
    inline-size: 100%;
    justify-content: center;
  }

  .billing-toggle .toggle-option {
    padding-inline: 0.85rem;
    font-size: 0.8rem;
  }

  .pricing-card .plan-price {
    font-size: 2rem;
  }
}

/* --------------------------------------------------------------------------
   10. Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .text-gradient {
    animation: none;
  }

  .faq-item .faq-answer {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
