/* ============================================
   Guminert – Primary typeface (local, no CDN)
   ============================================ */
@font-face {
  font-family: "Neue Haas Grotesk";
  src:
    url("../font/NeueHaasGrotesk-Regular.woff2") format("woff2"),
    url("../font/NeueHaasGrotesk-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  overflow-x: hidden;
  width: 100%;
  /* Use native scroll for smoother desktop scrolling (smooth via JS for anchor links only) */
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Neue Haas Grotesk", sans-serif;
  font-weight: 400;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  padding-top: 72px;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography hierarchy – balanced weight, modern SaaS feel */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Neue Haas Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
h3 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
}
h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Buttons – medium / semi-bold */
button,
[type="button"],
[type="submit"],
[type="reset"],
.btn,
a.btn {
  font-family: "Neue Haas Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Global overflow safety */
img,
svg,
video,
canvas {
  max-width: 100%;
}

.container {
  max-width: 1570px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   Lucide Icon System - Reusable Icon Classes
   ============================================ */
:root {
  --primary-color: #7c3aed;
  --primary-hover: #6d28d9;
  --icon-transition: all 0.3s ease;
}

.icon {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
  color: #ffffff;
  transition: var(--icon-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-md {
  width: 20px;
  height: 20px;
}

.icon-lg {
  width: 28px;
  height: 28px;
}

.icon-xl {
  width: 32px;
  height: 32px;
}

.icon-white {
  color: #ffffff;
}

.icon-dark {
  color: #1a1a2e;
}

.icon-muted {
  color: #6b7280;
}

.icon-success {
  color: #10b981;
}

.icon-warning {
  color: #f59e0b;
}

.icon-error {
  color: #ef4444;
}

.feature-card:hover .icon,
.info-card:hover .icon,
.card:hover .icon {
  transform: translateY(-3px);
}

.btn .icon,
.button .icon,
a .icon {
  transition: transform 0.3s ease;
}

.btn:hover .icon,
.button:hover .icon,
a:hover .icon {
  transform: translateX(3px);
}

.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1) 0%,
    rgba(124, 58, 237, 0.05) 100%
  );
  transition: var(--icon-transition);
}

.icon-wrapper:hover {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(124, 58, 237, 0.1) 100%
  );
  transform: translateY(-2px);
}

.icon-wrapper-sm {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.icon-wrapper-lg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.icon-inline {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 8px;
}

.icon-right {
  margin-left: 8px;
  margin-right: 0;
}

/* Header Styles - promote to layer for smoother scroll with backdrop-filter */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    padding 0.3s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo a:hover {
  opacity: 0.8;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo a:hover .logo-img {
  transform: scale(1.05);
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* Header Drawer (Desktop: inline, Mobile: off-canvas) */
.header-drawer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.mobile-drawer-overlay {
  display: none;
}

/* Hide mobile menu logo on desktop */
.mobile-menu-logo {
  display: none;
}

.nav-link {
  text-decoration: none;
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  white-space: nowrap;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #000000;
  background: rgba(37, 99, 235, 0.05);
}

.nav-link:hover::before {
  width: calc(100% - 32px);
}

.nav-link.active {
  color: #000000;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.08);
}

.nav-link.active::before {
  width: calc(100% - 32px);
}

.btn-get-started {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.btn-get-started::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-get-started:hover::before {
  left: 100%;
}

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

.btn-get-started svg {
  transition: transform 0.3s ease;
}

.btn-get-started:hover svg {
  transform: translateX(2px);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #1f2937;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

/* Hero Base (About, Affiliate) + Index Hero Landing */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  isolation: isolate;
}

/* Prevent layout overflow inside hero sections */
.hero-content,
.ai-content {
  max-width: 100%;
}

.hero-left,
.hero-right,
.ai-left,
.ai-right {
  min-width: 0;
}

.dashboard-mockup,
.ai-bg-image,
.ai-hero-image {
  max-width: 100%;
  height: auto;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/section1-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  overflow: hidden;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(139, 92, 246, 0.12) 25%,
    rgba(168, 85, 247, 0.08) 45%,
    rgba(192, 132, 252, 0.04) 65%,
    transparent 85%
  );
  border-radius: 50%;
  filter: blur(100px);
  animation: floatGlowBlob 12s ease-in-out infinite;
  /* Optimize for scroll performance - remove will-change, use contain */
  contain: layout style paint;
  right: -5%;
  /* Hardware acceleration for smooth animation */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  pointer-events: none;
}

.hero-background::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 35%;
  width: 750px;
  height: 750px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.12) 0%,
    rgba(139, 92, 246, 0.1) 25%,
    rgba(59, 130, 246, 0.08) 45%,
    rgba(147, 197, 253, 0.04) 65%,
    transparent 85%
  );
  border-radius: 50%;
  filter: blur(90px);
  animation: floatGlowBlob 14s ease-in-out infinite reverse;
  /* Optimize for scroll performance - remove will-change, use contain */
  contain: layout style paint;
  /* Hardware acceleration for smooth animation */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  pointer-events: none;
}

@keyframes floatGlowBlob {
  0%,
  100% {
    opacity: 0.6;
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    opacity: 0.8;
    transform: translate3d(20px, -30px, 0) scale(1.05);
  }
  66% {
    opacity: 0.7;
    transform: translate3d(-15px, 20px, 0) scale(0.98);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 120px;
  align-items: center;
  padding: 0;
  margin: 0;
}

/* Left Section - Content */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 640px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  z-index: 3;
  /* Optimize for scroll performance */
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
  contain: layout style;
}

.hero-left::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  right: -120px;
  bottom: -200px;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 50%,
    rgba(255, 255, 255, 0.95) 55%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0.4) 70%,
    transparent 100%
  );
  z-index: -1;
  pointer-events: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Hero typography – tuned for balance (avoids heavy-weight glyph unevenness) */
.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin: 0;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.hero-headline {
  font-size: 64px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
  font-family: "Neue Haas Grotesk", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-description {
  font-size: 20px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-family: "Neue Haas Grotesk", sans-serif;
}

/* CTA Buttons */
.hero-cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-primary-cta {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 20px rgba(37, 99, 235, 0.3),
    0 0 0 0 rgba(37, 99, 235, 0.4);
  position: relative;
  overflow: hidden;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.btn-primary-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(37, 99, 235, 0.4),
    0 0 0 4px rgba(37, 99, 235, 0.1);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-primary-cta:hover::before {
  left: 100%;
}

.btn-secondary-cta {
  background: transparent;
  color: #475569;
  border: 1.5px solid #e2e8f0;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.btn-secondary-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-secondary-cta:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #334155;
  transform: translateY(-1px);
}

.btn-secondary-cta:hover svg {
  transform: scale(1.1);
}

/* About page hero buttons (were missing base styles) */
.btn-start-trial {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(87, 0, 153, 0.25);
  position: relative;
  overflow: hidden;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.btn-start-trial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-start-trial:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(87, 0, 153, 0.32);
}

.btn-start-trial:hover::before {
  transform: translateX(120%);
}

.btn-secondary-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: #1f2937;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: "Neue Haas Grotesk", sans-serif;
}

.btn-secondary-ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(15, 23, 42, 0.18);
}

.hero-trust-text {
  font-size: 14px;
  color: #333333;
  margin: 0;
  font-weight: 500;
  font-family: "Neue Haas Grotesk", sans-serif;
}

/* Right Section - Mockup Container */
.hero-right {
  position: relative;
  height: 720px;
  opacity: 0;
  animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  z-index: 2;
  /* Optimize for scroll performance */
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
  contain: layout style;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.mockup-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-container::before {
  display: none;
}

.mockup-container::after {
  display: none;
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.mockup-wrapper::before {
  display: none;
}

.dashboard-mockup {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  /* Simplified transform - removed expensive 3D perspective for better performance */
  transform: translate3d(0, 0, 0);
  transition: none;
  animation: none;
  will-change: auto;
  /* Reduced filter complexity - single shadow instead of multiple for better performance */
  filter: drop-shadow(0 20px 60px rgba(37, 99, 235, 0.2));
  mix-blend-mode: normal;
  opacity: 1;
  /* Optimize rendering */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  contain: layout style paint;
}

/* Hero image float animation - disabled (commented out)
@keyframes floatMockup {
    0%, 100% {
        transform: perspective(1200px) rotateY(-3deg) rotateX(3deg) translate3d(0, 0, 0);
    }
    50% {
        transform: perspective(1200px) rotateY(-3deg) rotateX(3deg) translate3d(0, -15px, 0);
    }
}
*/

/* ========== Hero Landing (Index) - Premium SaaS ========== */
.hero-landing {
  position: relative;
  padding: 50px 0 50px;
  overflow: hidden;
  isolation: isolate;
}
.hero-landing__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-landing__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #ffffff 100%);
}
.hero-landing__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
  animation: heroLandingGlowFloat 20s ease-in-out infinite;
}
.hero-landing__glow--1 {
  top: -20%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    transparent 65%
  );
  opacity: 0.5;
}
.hero-landing__glow--2 {
  bottom: -25%;
  left: -15%;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.12) 0%,
    transparent 65%
  );
  opacity: 0.5;
  animation-delay: -6s;
}
.hero-landing__glow--3 {
  top: 40%;
  left: 45%;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.1) 0%,
    transparent 70%
  );
  opacity: 0.5;
  animation-delay: -12s;
}
@keyframes heroLandingGlowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate3d(24px, -20px, 0) scale(1.05);
    opacity: 0.8;
  }
}
.hero-landing__particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(99, 102, 241, 0.15), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(124, 58, 237, 0.12), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(14, 165, 233, 0.18), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(99, 102, 241, 0.1), transparent);
  background-size:
    220px 220px,
    260px 260px,
    180px 180px,
    260px 260px;
  opacity: 0.5;
  mix-blend-mode: multiply;
  animation: heroLandingParticlesShift 28s linear infinite;
}
@keyframes heroLandingParticlesShift {
  0% {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0;
  }
  100% {
    background-position:
      220px 0,
      -260px 0,
      0 -180px,
      260px 0;
  }
}
.hero-landing__container {
  position: relative;
  z-index: 1;
}
.hero-landing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.hero-landing__left {
  max-width: 640px;
  color: #1e293b;
}
.hero-landing__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.08);
  margin-bottom: 20px;
}
.hero-landing__title {
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #0f172a;
  margin: 0 0 20px 0;
}
.hero-landing__subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin: 0 0 28px 0;
}
.hero-landing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.hero-landing__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-landing__btn--primary {
  background: linear-gradient(135deg, #4c1d95, #4f46e5, #0ea5e9);
  color: #ffffff;
  box-shadow:
    0 4px 24px rgba(79, 70, 229, 0.4),
    0 0 0 1px rgba(79, 70, 229, 0.2);
}
.hero-landing__btn--primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 8px 32px rgba(79, 70, 229, 0.5),
    0 0 0 1px rgba(79, 70, 229, 0.3);
}
.hero-landing__btn--secondary {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(99, 102, 241, 0.4);
  color: #4f46e5;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-landing__btn--secondary:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.6);
  color: #4338ca;
  transform: translateY(-1px);
}
.hero-landing__hint {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}
.hero-landing__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-landing__visual {
  position: relative;
  width: 100%;
  max-width: 640px;
  transform-style: preserve-3d;
  animation: heroLandingDashboardFloat 8s ease-in-out infinite;
}
@keyframes heroLandingDashboardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}
.hero-dashboard {
  position: relative;
  border-radius: 24px;
  padding: 20px 20px 18px;
  background: linear-gradient(
    145deg,
    #ffffff 0%,
    #f8fafc 50%,
    #f1f5f9 100%
  );
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 24px 64px rgba(15, 23, 42, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}
.hero-dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.hero-dashboard__store {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-dashboard__store-logo {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: conic-gradient(from 200deg, #4f46e5, #c7d2fe, #0ea5e9, #4f46e5);
  /* box-shadow: 0 4px 16px rgba(79, 70, 229, 0.25); */
}
img.hero-dashboard__store-logo {
  display: block;
  object-fit: contain;
  background: none;
}
.hero-dashboard__store-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-dashboard__store-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}
.hero-dashboard__store-status {
  font-size: 0.75rem;
  color: #64748b;
}
.hero-dashboard__pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #475569;
  background: rgba(241, 245, 249, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
}
.hero-dashboard__pill--success {
  border-color: rgba(34, 197, 94, 0.4);
  color: #15803d;
  background: rgba(34, 197, 94, 0.1);
}
.hero-dashboard__body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.15fr);
  gap: 16px;
}
.hero-dashboard__panel {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 14px 14px 12px;
}
.hero-dashboard__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 10px;
}
.hero-dashboard__badge {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-size: 0.7rem;
  font-weight: 600;
}
.hero-dashboard__products {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-dashboard__product-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  opacity: 0;
  transform: translateY(8px);
}
.hero-dashboard__product-thumb {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-dashboard__product-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-dashboard__product-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
}
.hero-dashboard__product-meta {
  font-size: 0.72rem;
  color: #64748b;
}
.hero-dashboard__product-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
}
/* Product card carousel - 3-card perspective */
.hero-dashboard__panel--carousel {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: none;
}
.hero-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 320px;
  background: #f3f9ff;
  border-radius: 20px;
}
.hero-carousel__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.hero-carousel__badge {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 10;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(2, 6, 23, 0.95) 100%);
  color: #e2e8f0;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.hero-carousel__viewport {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-carousel__stage {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-carousel__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.15);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-carousel__card--left {
  transform: translate(-50%, -50%) translateX(-220px) scale(0.85);
  filter: none;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}
.hero-carousel__card--center {
  transform: translate(-50%, -50%) translateX(0) scale(1);
  filter: blur(0);
  opacity: 1;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
}
.hero-carousel__card--center:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18), 0 12px 24px rgba(0, 0, 0, 0.12);
}
.hero-carousel__card--right {
  transform: translate(-50%, -50%) translateX(220px) scale(0.85);
  filter: none;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}
.hero-carousel__card--hidden {
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-400px) scale(0.7);
  pointer-events: none;
  z-index: 0;
}
.hero-carousel__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8fafc;
  border-radius: 20px 20px 0 0;
}
.hero-carousel__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-carousel__btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(135deg, #4c1d95, #4f46e5, #0ea5e9);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.hero-carousel__btn:hover {
  background: #3b82f6de;
  opacity: 0.95;
}

/* Mobile: single card, badge below product box, animation works */
@media (max-width: 768px) {
  .hero-carousel {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
  }
  .hero-carousel__viewport {
    min-height: 280px;
    order: 1;
    flex-shrink: 0;
  }
  .hero-carousel__stage {
    height: 260px;
  }
  .hero-carousel__card {
    width: 180px;
  }
  .hero-carousel__card--left,
  .hero-carousel__card--right {
    filter: blur(0);
    opacity: 0;
    visibility: hidden;
  }
  .hero-carousel__card--left {
    transform: translate(-50%, -50%) translateX(-180px) scale(0.85);
  }
  .hero-carousel__card--right {
    transform: translate(-50%, -50%) translateX(180px) scale(0.85);
  }
  .hero-carousel__badge {
    position: static;
    order: 2;
    align-self: center;
    margin-top: 16px;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__card {
    transition: opacity 0.3s ease, filter 0.3s ease;
  }
}
.hero-dashboard__row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 10px;
}
.hero-dashboard__orders {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-dashboard__order {
  align-items: center;
  font-size: 0.75rem;
  color: #475569;
}
.hero-dashboard__order-id {
  font-weight: 600;
  color: #0f172a;
}
.hero-dashboard__order-name {
  font-weight: 500;
}
.hero-dashboard__order-meta {
  font-size: 0.72rem;
  color: #64748b;
}
.hero-dashboard__order-amount {
  font-weight: 600;
  color: #15803d;
}
.hero-dashboard__panel--revenue {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.hero-dashboard__revenue-label {
  font-size: 0.75rem;
  color: #64748b;
}
.hero-dashboard__revenue-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ca8a04;
}
.hero-dashboard__revenue-sub {
  font-size: 0.75rem;
  color: #64748b;
}
/* Activity cards wrapper: absolute on desktop (floating), inline between products & carousel on mobile */
.hero-activities {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.hero-activities .hero-activity {
  pointer-events: auto;
}
.hero-activity {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 12px 32px rgba(15, 23, 42, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(8px);
}
.hero-activity__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  animation: heroLandingDotPulse 2s ease-in-out infinite;
}
.hero-activity__icon-wrap {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
}
.hero-activity__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-activity__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f172a;
}
.hero-activity__meta {
  font-size: 0.7rem;
  color: #64748b;
}
@keyframes heroLandingDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}
.hero-activity--store {
  top: 435px;
  left: 56%;
  animation: heroLandingStorePanel 18s ease-in-out infinite;
}
.hero-activity--order {
  bottom: 15%;
  right: 15%;
  animation: heroLandingOrderPanel 18s ease-in-out infinite;
}
.hero-activity--payment {
  bottom: 20px;
  left: 55%;
  animation: heroLandingPaymentPanel 18s ease-in-out infinite;
}
@keyframes heroLandingStorePanel {
  0%,
  8% {
    opacity: 0;
    transform: translateY(8px);
  }
  12%,
  26% {
    opacity: 1;
    transform: translateY(0);
  }
  32%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}
@keyframes heroLandingOrderPanel {
  0%,
  34% {
    opacity: 0;
    transform: translateY(8px);
  }
  38%,
  54% {
    opacity: 1;
    transform: translateY(0);
  }
  60%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}
@keyframes heroLandingPaymentPanel {
  0%,
  58% {
    opacity: 0;
    transform: translateY(8px);
  }
  62%,
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  86%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}
.hero-dashboard__product-card--1 {
  animation: heroLandingProductIn 18s ease-out infinite;
}
.hero-dashboard__product-card--2 {
  animation: heroLandingProductIn 18s ease-out infinite;
  animation-delay: 0.6s;
}
.hero-dashboard__product-card--3 {
  animation: heroLandingProductIn 18s ease-out infinite;
  animation-delay: 1.1s;
}
@keyframes heroLandingProductIn {
  0%,
  9% {
    opacity: 0;
    transform: translateY(12px);
  }
  14%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  .hero-landing {
    padding: 72px 0 88px;
  }
  .hero-landing__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 56px;
  }
  .hero-landing__visual {
    max-width: 560px;
  }
}
@media (max-width: 1024px) {
  .hero-landing {
    padding: 64px 0 80px;
  }
  .hero-landing__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }
  .hero-landing__left {
    order: -1;
    text-align: center;
    max-width: 100%;
  }
  .hero-landing__actions {
    justify-content: center;
  }
  .hero-landing__visual {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero-landing__visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
    animation-duration: 10s;
  }
  /* Activity cards between Products panel and Carousel on mobile */
  .hero-activities {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    grid-column: 1 / -1;
  }
  .hero-activity {
    position: static;
    opacity: 1;
    transform: none;
    margin-top: 0;
    width: 100%;
    max-width: 320px;
    min-height: 56px;
    align-self: center;
  }
  .hero-activity--store {
    animation: heroLandingStorePanel 18s ease-in-out infinite;
  }
  .hero-activity--order {
    animation: heroLandingOrderPanel 18s ease-in-out infinite;
  }
  .hero-activity--payment {
    animation: heroLandingPaymentPanel 18s ease-in-out infinite;
  }
  .hero-landing {
    padding: 52px 0 64px;
  }
  .hero-landing__grid {
    gap: 40px;
    text-align: center;
  }
  .hero-landing__glow {
    filter: blur(60px);
    opacity: 0.45;
  }
  .hero-landing__particles {
    opacity: 0.3;
  }
  .hero-dashboard__body {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-dashboard__row {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 480px) {
  .hero-landing__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-landing__btn {
    width: 100%;
  }
  .hero-activity {
    max-width: 300px;
  }
}

/* Marquee Stripes Section */
.marquee-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  /* Optimize rendering performance */
  contain: layout style paint;
  will-change: contents;
}

.marquee-stripe {
  width: 100%;
  padding: 24px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  /* Optimize for performance */
  transform: translateZ(0);
  will-change: contents;
}

.marquee-stripe-top {
  border-bottom: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.marquee-stripe-bottom {
  border-top: none;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.03);
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScrollLeft 30s linear infinite;
  will-change: transform;
  /* Hardware acceleration for smooth animation */
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
  -webkit-font-smoothing: antialiased;
}

.marquee-content-reverse {
  animation: marqueeScrollRight 30s linear infinite;
  /* Hardware acceleration for smooth animation */
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
  -webkit-font-smoothing: antialiased;
}

.marquee-item {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.marquee-item:hover {
  color: #6b21a8;
}

.marquee-item-2 {
  font-size: 18px;
  font-weight: 700;
  color: #1a83ec;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.marquee-item-2:hover {
  color: #6b21a8;
}

.marquee-separator {
  font-size: 18px;
  color: #cbd5e1;
  font-weight: 400;
  flex-shrink: 0;
}

/* Marquee Animations - Optimized for performance */
@keyframes marqueeScrollLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marqueeScrollRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Responsive Marquee */
@media (max-width: 968px) {
  .marquee-stripe {
    padding: 20px 0;
  }

  .marquee-item {
    font-size: 16px;
  }

  .marquee-content {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .marquee-stripe {
    padding: 8px 0;
  }

  .marquee-item {
    font-size: 14px;
  }

  .marquee-content {
    gap: 20px;
  }
}

/* Floating Notifications Container */
.notifications-container {
  position: absolute;
  top: 60px;
  bottom: auto;
  right: calc(50% - 180px);
  width: 280px;
  height: 300px;
  z-index: 10;
  pointer-events: none;
  overflow: visible;
}

.notification-card {
  position: absolute;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

/* Notification Position States - Overlap Method */
.notification-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity, filter;
}

/* Burst animation - sliding in from top */
.notification-card.position-burst-in {
  top: -80px;
  z-index: 15;
  opacity: 0;
  transform: translateY(0) scale(0.85);
  filter: blur(6px);
}

/* Stacked positions for burst effect */
.notification-card.position-stack-1 {
  top: 0;
  z-index: 8;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
  animation: floatNotification1 0.8s ease-in-out infinite;
}

.notification-card.position-stack-2 {
  top: 85px;
  z-index: 7;
  opacity: 0.9;
  transform: translateY(0) scale(0.98);
  filter: blur(0.5px);
  animation: floatNotification2 0.8s ease-in-out infinite;
  animation-delay: 0.1s;
}

.notification-card.position-stack-3 {
  top: 170px;
  z-index: 6;
  opacity: 0.8;
  transform: translateY(0) scale(0.96);
  filter: blur(1px);
  animation: floatNotification3 0.8s ease-in-out infinite;
  animation-delay: 0.2s;
}

.notification-card.position-stack-4 {
  top: 255px;
  z-index: 5;
  opacity: 0.65;
  transform: translateY(0) scale(0.94);
  filter: blur(1.5px);
}

.notification-card.position-stack-5 {
  top: 340px;
  z-index: 4;
  opacity: 0.5;
  transform: translateY(0) scale(0.92);
  filter: blur(2px);
}

.notification-card.position-stack-6 {
  top: 425px;
  z-index: 3;
  opacity: 0.35;
  transform: translateY(0) scale(0.9);
  filter: blur(2.5px);
}

.notification-card.position-stack-7 {
  top: 510px;
  z-index: 2;
  opacity: 0.2;
  transform: translateY(0) scale(0.88);
  filter: blur(3px);
}

.notification-card.position-stack-8 {
  top: 595px;
  z-index: 1;
  opacity: 0.1;
  transform: translateY(0) scale(0.86);
  filter: blur(3.5px);
}

/* New notification sliding in from bottom (laptop screen) - slides up to top */
.notification-card.position-slide-in {
  top: 280px;
  bottom: auto;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  filter: blur(4px);
}

/* Front notification - fully visible at top (black mark position) */
.notification-card.position-front {
  top: 0;
  bottom: auto;
  z-index: 5;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
  animation: floatNotification1 0.8s ease-in-out infinite;
}

/* Moving up - going behind */
.notification-card.position-moving-down {
  top: 0;
  bottom: auto;
  z-index: 4;
  opacity: 0.6;
  transform: translateY(-100px) scale(0.9);
  filter: blur(3px);
}

/* Behind - hidden */
.notification-card.position-behind {
  top: -100px;
  bottom: auto;
  z-index: 1;
  opacity: 0;
  transform: translateY(-100px) scale(0.85);
  filter: blur(4px);
  pointer-events: none;
}

/* Hidden - waiting at bottom */
.notification-card.position-hidden {
  top: 280px;
  bottom: auto;
  z-index: 0;
  opacity: 0;
  transform: translateY(0) scale(0.9);
  filter: blur(4px);
  pointer-events: none;
}

/* Initial positions - all hidden at bottom, will be animated by JavaScript */
.notification-card-1,
.notification-card-2,
.notification-card-3,
.notification-card-4,
.notification-card-5,
.notification-card-6,
.notification-card-7,
.notification-card-8 {
  top: 280px;
  bottom: auto;
  z-index: 0;
  opacity: 0;
  transform: translateY(0) scale(0.85);
  filter: blur(6px);
  pointer-events: none;
}

/* Continuous Floating Animations - Fast Mode (from bottom) */
@keyframes floatNotification1 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatNotification2 {
  0%,
  100% {
    transform: translateY(0px) scale(0.95);
  }
  50% {
    transform: translateY(-8px) scale(0.95);
  }
}

@keyframes floatNotification3 {
  0%,
  100% {
    transform: translateY(0px) scale(0.9);
  }
  50% {
    transform: translateY(-6px) scale(0.9);
  }
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.notification-icon-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
}

.notification-icon-analytics {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
}

.notification-icon-payment {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #ffffff;
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
  line-height: 1.3;
}

.notification-subtitle {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.notification-card-1 .notification-subtitle {
  color: #f97316;
}

.notification-card-2 .notification-subtitle {
  color: #10b981;
}

.notification-card-3 .notification-subtitle {
  color: #3b82f6;
}

.notification-subtitle.color-orange {
  color: #f97316;
}

.notification-subtitle.color-green {
  color: #10b981;
}

.notification-subtitle.color-blue {
  color: #3b82f6;
}

.notification-card-3 .notification-subtitle {
  color: #3b82f6;
}

/* Responsive adjustments for notifications */
@media (max-width: 1200px) {
  .notifications-container {
    right: calc(50% - 140px);
    width: 240px;
    height: 280px;
    top: 50px;
  }
}

@media (max-width: 968px) {
  .notifications-container {
    right: calc(50% - 100px);
    width: 200px;
    height: 250px;
    top: 40px;
    bottom: auto;
  }

  .notification-card {
    padding: 12px;
  }

  .notification-card-2 {
    top: 75px;
  }

  .notification-card-3 {
    top: 150px;
  }
}

/* ============================================
   About Page Hero - Premium Agency Design (Full width like other sections)
   ============================================ */
.about-hero-section {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  padding: 50px 0 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 100% 80% at 70% 20%,
      rgba(87, 0, 153, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 80% 60% at 20% 80%,
      rgba(2, 2, 65, 0.03) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Align hero left content with mission-vision section image (same left edge) */
.about-hero-left {
  max-width: 700px;
  gap: 24px;
  margin-left: 0;
  padding-left: 0;
  justify-self: start;
}

.about-hero-left::before {
  display: none;
}

.about-hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #570099;
  margin: 0;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.about-hero-headline {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0;
  font-family: "Neue Haas Grotesk", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.about-hero-headline .highlight-text {
  color: #570099;
  position: relative;
}

.about-hero-subtext {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #475569;
  margin: 0;
  font-weight: 400;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.about-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-about-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Neue Haas Grotesk", sans-serif;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(87, 0, 153, 0.25);
}

.btn-about-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(87, 0, 153, 0.3);
}

.btn-about-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Neue Haas Grotesk", sans-serif;
  text-decoration: none;
  color: #1e293b;
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-about-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
}

.about-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-hero-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.about-hero-stat-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.about-hero-stat-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(15, 23, 42, 0.12),
    transparent
  );
}

.about-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.about-hero-visual {
  width: 100%;
  max-width: 560px;
  position: relative;
}

.about-hero-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(87, 0, 153, 0.06) 50%,
    rgba(2, 2, 65, 0.04) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.about-hero-visual-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 20px 50px -12px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  background: #ffffff;
}

.about-hero-section .hero-about-image {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 24px;
}

.about-hero-section .hero-about-image:hover {
  transform: none;
}

/* About Page Hero Image (legacy / other pages) */
.hero-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

.about-hero-section .hero-image-container {
  padding-top: 0;
}

.hero-about-image {
  width: 100%;
  max-width: 750px;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
}

.hero-about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(87, 0, 153, 0.03) 0%,
    rgba(2, 2, 65, 0.03) 100%
  );
  border-radius: 20px;
  pointer-events: none;
}

.hero-about-image:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* Mission & Vision Section - Premium SaaS Style */
.mission-vision-section {
  padding: 40px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%);
}

.mission-vision-container {
  max-width: 1500px;
  margin: 0 auto;
}

.mission-vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left - Image with floating cards */
.mission-vision-left {
  position: relative;
}

.mission-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: visible;
}

.mission-image {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(148, 163, 184, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-image:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 64px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(148, 163, 184, 0.15);
}

.mission-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(148, 163, 184, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-floating-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 32px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(148, 163, 184, 0.1);
}

.mission-floating-card--1 {
  top: 24px;
  left: -16px;
}

.mission-floating-card--2 {
  bottom: 32px;
  right: -16px;
}

.mission-floating-icon {
  width: 20px;
  height: 20px;
  color: #7c3aed;
  flex-shrink: 0;
}

.mission-floating-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

/* Right - Content */
.mission-vision-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mission-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 8px;
}

.mission-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.03em;
}

.mission-headline-gradient {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #4338ca 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-intro {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Mission & Vision Cards */
.mission-vision-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-card {
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.04),
    0 0 0 1px rgba(148, 163, 184, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 24px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(148, 163, 184, 0.1);
}

.mission-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.mission-card-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.mission-cta-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-get-in-touch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.btn-get-in-touch:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.mission-secondary-cta {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #7c3aed;
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mission-secondary-cta:hover {
  color: #5b21b6;
}

/* Trust Strip */
.mission-trust-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}

.trust-item-small {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.trust-item-small svg {
  color: #10b981;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* How Ziplofy Helps You Grow Section */
.grow-section {
  padding: 40px 0;
  background: #fdfdfd;
  position: relative;
}

.grow-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: start;
}

/* Left Column: Philosophy Panel */
.grow-philosophy-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
  align-self: start;
}

.grow-philosophy-headline {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.grow-philosophy-accent {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, #570099 0%, #020241 100%);
  margin-top: 4px;
  border-radius: 1px;
}

.grow-philosophy-description {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
  max-width: 100%;
}

/* Micro Proof Stats */
.grow-philosophy-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

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

.grow-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.grow-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.grow-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(0, 0, 0, 0.08);
}

/* Right Column: Capability Cards */
.grow-capabilities-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grow-capability-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
  transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 2px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.grow-capability-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(87, 0, 153, 0.04);
  transition: width 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.grow-capability-card:hover,
.grow-capability-card.active {
  background: rgba(87, 0, 153, 0.02);
  box-shadow:
    0 4px 12px rgba(87, 0, 153, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px) scale(1.01);
}

.grow-capability-card.active::before {
  width: 3px;
}

.grow-capability-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #6b7280;
  transition:
    color 0.24s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 2px;
}

.grow-capability-card:hover .grow-capability-icon,
.grow-capability-card.active .grow-capability-icon {
  color: #570099;
  transform: scale(1.05);
}

.grow-capability-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

/* About page: override white icon color for visibility on light background */
.grow-section .grow-capability-icon .icon {
  color: #6b7280;
}
.grow-section .grow-capability-card:hover .grow-capability-icon .icon,
.grow-section .grow-capability-card.active .grow-capability-icon .icon {
  color: #570099;
}

.grow-capability-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.grow-capability-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.grow-capability-subtitle {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.grow-capability-card:hover .grow-capability-title,
.grow-capability-card.active .grow-capability-title {
  color: #570099;
}

.grow-capability-card:hover .grow-capability-subtitle,
.grow-capability-card.active .grow-capability-subtitle {
  color: #4b5563;
}

/* Inactive state - muted */
.grow-capability-card:not(.active) {
  opacity: 0.75;
}

.grow-capability-card:not(.active):hover {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .grow-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .grow-philosophy-column {
    position: static;
  }

  .grow-philosophy-stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .grow-section {
    padding: 60px 0;
  }

  .grow-layout {
    gap: 40px;
  }

  .grow-philosophy-headline {
    font-size: 32px;
  }

  .grow-philosophy-description {
    font-size: 17px;
  }

  .grow-capability-card {
    padding: 28px 24px;
    gap: 20px;
  }

  .grow-capability-title {
    font-size: 22px;
  }

  .grow-capability-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .grow-section {
    padding: 50px 0;
  }

  .grow-capability-card {
    padding: 24px 20px;
    gap: 16px;
  }

  .grow-capability-icon {
    width: 20px;
    height: 20px;
  }

  .grow-capability-title {
    font-size: 20px;
  }

  .grow-capability-subtitle {
    font-size: 14px;
  }

  .grow-stat-value {
    font-size: 20px;
  }
}

/* Why Brands Choose Ziplofy Section */
/* Why Brands Choose Ziplofy Section - Premium Enterprise SaaS Design */
.why-choose-section {
  padding: 40px 0;
  background: #fafbfc;
  position: relative;
}

.why-choose-title {
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.why-choose-subtitle {
  font-size: 18px;
  color: #6b7280;
  text-align: center;
  margin: 0 0 80px 0;
  font-weight: 400;
  line-height: 1.6;
}

/* 2-Column Interactive Grid - Desktop First */
.why-choose-interactive-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: stretch;
}

/* Left: Spotlight Proof Card */
.why-choose-spotlight {
  position: relative;
}

.why-choose-spotlight-card {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.05),
    rgba(255, 255, 255, 1)
  );
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03),
    0 8px 24px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Content Area */
.why-choose-spotlight-content {
  margin-bottom: 32px;
  position: relative;
}

.why-choose-content-wrapper {
  position: relative;
}

/* India Badge */
.why-choose-india-badge {
  display: inline-block;
  background: #f3e8ff;
  color: #6d28d9;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.why-choose-spotlight-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: #111827;
  margin: 0 0 16px 0;
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.why-choose-spotlight-description {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 18px 0;
  font-weight: 400;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Divider */
.why-choose-divider {
  height: 1px;
  background: rgba(147, 51, 234, 0.12);
  margin: 18px 0;
  width: 100%;
}

/* Features Grid */
.why-choose-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.why-choose-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.why-choose-check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #9333ea;
  margin-top: 2px;
}

.why-choose-feature-item-text {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  line-height: 1.5;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

/* Proof Area - Chips */
.why-choose-proof-area {
  flex: 1;
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: auto;
  padding-top: 8px;
}

.why-choose-proof-chip {
  background: #f9fafb;
  border: 1px solid rgba(147, 51, 234, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 140px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-proof-chip:hover {
  background: #f3f4f6;
  border-color: rgba(147, 51, 234, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.08);
}

.why-choose-proof-value {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.why-choose-proof-label {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Right: Feature Pills */
.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  justify-content: flex-start;
}

.why-choose-feature-pill {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.03),
    0 2px 4px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.why-choose-feature-pill::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(87, 0, 153, 0.06);
  transition: width 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-feature-pill:hover,
.why-choose-feature-pill.active {
  background: rgba(87, 0, 153, 0.02);
  border-color: rgba(87, 0, 153, 0.15);
  box-shadow:
    0 2px 4px rgba(87, 0, 153, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
  transform: translateX(2px);
}

.why-choose-feature-pill.active::before {
  width: 3px;
}

.why-choose-feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #6b7280;
  transition:
    color 0.24s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-feature-pill:hover .why-choose-feature-icon,
.why-choose-feature-pill.active .why-choose-feature-icon {
  color: #570099;
  transform: scale(1.05);
}

.why-choose-feature-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.why-choose-feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-choose-feature-title {
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-feature-subtitle {
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.why-choose-feature-pill:hover .why-choose-feature-title,
.why-choose-feature-pill.active .why-choose-feature-title {
  color: #570099;
}

.why-choose-feature-pill:hover .why-choose-feature-subtitle,
.why-choose-feature-pill.active .why-choose-feature-subtitle {
  color: #4b5563;
}

/* Animation States */
.why-choose-spotlight-title.animating-out,
.why-choose-spotlight-description.animating-out {
  opacity: 0;
  transform: translateY(-10px);
}

.why-choose-spotlight-title.animating-in,
.why-choose-spotlight-description.animating-in {
  opacity: 0;
  transform: translateY(10px);
}

/* Smooth fade + slide animation for proof items */
.why-choose-proof-item {
  position: absolute;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.why-choose-proof-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .why-choose-interactive-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-spotlight-card {
    padding: 36px 32px;
  }

  .why-choose-features {
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
  }

  .why-choose-features::-webkit-scrollbar {
    height: 6px;
  }

  .why-choose-features::-webkit-scrollbar-track {
    background: transparent;
  }

  .why-choose-features::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
  }

  .why-choose-feature-pill {
    min-width: 240px;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-subtitle {
    margin-bottom: 50px;
  }

  .why-choose-spotlight-card {
    padding: 32px 24px;
  }

  .why-choose-spotlight-title {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .why-choose-spotlight-description {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .why-choose-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-choose-divider {
    margin: 16px 0;
  }

  .why-choose-proof-chip {
    min-width: 100%;
  }

  .why-choose-feature-pill {
    padding: 18px 20px;
    min-width: 220px;
  }

  .why-choose-feature-title {
    font-size: 16px;
  }

  .why-choose-feature-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .why-choose-spotlight-card {
    padding: 30px 20px 90px;
  }

  .why-choose-spotlight-content {
    margin-bottom: 24px;
  }

  .why-choose-india-badge {
    font-size: 0.7rem;
    padding: 5px 10px;
    margin-bottom: 12px;
  }

  .why-choose-spotlight-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .why-choose-spotlight-description {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .why-choose-divider {
    margin: 14px 0;
  }

  .why-choose-features-grid {
    gap: 10px;
  }

  .why-choose-feature-item-text {
    font-size: 14px;
  }

  .why-choose-proof-chip {
    padding: 14px 18px;
  }

  .why-choose-proof-value {
    font-size: 18px;
  }

  .why-choose-feature-pill {
    padding: 16px 18px;
    min-width: 200px;
  }
}

/* Core Principles Section */
.core-principles-section {
  padding: 100px 0;
  background: #fafbfc;
  position: relative;
}

.core-principles-title {
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.core-principles-subtitle {
  font-size: 18px;
  color: #6b7280;
  text-align: center;
  margin: 0 0 80px 0;
  font-weight: 400;
  line-height: 1.6;
}

.core-principles-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

/* Principle Row - Staggered Layout */
.core-principle-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 0;
}

/* Staggered positioning */
.core-principle-row[data-principle="1"] {
  margin-left: 0;
}

.core-principle-row[data-principle="2"] {
  margin-left: 24px;
}

.core-principle-row[data-principle="3"] {
  margin-left: 48px;
}

.core-principle-row[data-principle="4"] {
  margin-left: 72px;
}

.core-principle-row[data-principle="5"] {
  margin-left: 96px;
}

/* Circular Badge */
.core-principle-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.core-principle-letter {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Neue Haas Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

/* Badge Colors - Soft Pastels */
.core-principle-badge-1 {
  background: #2d6b8c;
}

.core-principle-badge-2 {
  background: #d98c2d;
}

.core-principle-badge-3 {
  background: #8c3d3d;
}

.core-principle-badge-4 {
  background: #4a6e82;
}

.core-principle-badge-5 {
  background: #2d9d8a;
}

/* Pill-shaped Bar */
.core-principle-content {
  flex: 1;
  position: relative;
  margin-left: -32px;
  padding-left: 48px;
  overflow: hidden;
}

.core-principle-bar {
  height: 64px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Bar Colors - Lighter Pastels */
.core-principle-bar-1 {
  background: #74c0e7;
}

.core-principle-bar-2 {
  background: #f9ba7a;
}

.core-principle-bar-3 {
  background: #ec8083;
}

.core-principle-bar-4 {
  background: #678a9c;
}

.core-principle-bar-5 {
  background: #5accc1;
}

.core-principle-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
  font-family: "Neue Haas Grotesk", sans-serif;
  white-space: nowrap;
}

/* Description - Hidden by default, expands on hover */
.core-principle-description {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 32px;
  margin-top: 0;
}

.core-principle-description p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
  padding-top: 16px;
  font-weight: 400;
}

/* Hover States */
.core-principle-row:hover .core-principle-badge,
.core-principle-row.active .core-principle-badge {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.core-principle-row:hover .core-principle-bar,
.core-principle-row.active .core-principle-bar {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  filter: brightness(0.95);
}

.core-principle-row:hover .core-principle-description,
.core-principle-row.active .core-principle-description {
  max-height: 200px;
  opacity: 1;
  padding: 0 32px;
}

.core-principle-row:hover,
.core-principle-row.active {
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .core-principles-section {
    padding: 60px 0;
  }

  .core-principles-subtitle {
    margin-bottom: 50px;
  }

  .core-principles-list {
    gap: 16px;
  }

  /* Reduce stagger on mobile */
  .core-principle-row[data-principle="1"],
  .core-principle-row[data-principle="2"],
  .core-principle-row[data-principle="3"],
  .core-principle-row[data-principle="4"],
  .core-principle-row[data-principle="5"] {
    margin-left: 0;
  }

  .core-principle-badge {
    width: 56px;
    height: 56px;
  }

  .core-principle-letter {
    font-size: 24px;
  }

  .core-principle-bar {
    height: 56px;
    padding: 0 24px;
  }

  .core-principle-content {
    margin-left: -28px;
    padding-left: 40px;
  }

  .core-principle-title {
    font-size: 18px;
  }

  .core-principle-description {
    padding: 0 24px;
  }

  .core-principle-description p {
    font-size: 15px;
    padding-top: 12px;
  }

  .core-principle-row:hover .core-principle-description,
  .core-principle-row.active .core-principle-description {
    max-height: 180px;
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .core-principle-badge {
    width: 48px;
    height: 48px;
  }

  .core-principle-letter {
    font-size: 20px;
  }

  .core-principle-bar {
    height: 48px;
    padding: 0 20px;
  }

  .core-principle-content {
    margin-left: -24px;
    padding-left: 36px;
  }

  .core-principle-title {
    font-size: 16px;
  }
}

/* Featured & Trusted By Leading Media Section */
.media-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
}

.media-section-title {
  font-size: 52px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.media-section-subtitle {
  font-size: 18px;
  color: #666666;
  text-align: center;
  margin: 0 0 64px 0;
  font-weight: 400;
}

.media-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1500px;
  margin: 0 auto;
}

.media-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.media-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(37, 99, 235, 0.3) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.media-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  border-color: rgba(37, 99, 235, 0.15);
}

.media-card:hover::before {
  opacity: 1;
}

.media-card-header {
  padding: 40px 32px 32px;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.media-header-entrepreneur {
  background: linear-gradient(
    135deg,
    rgba(239, 246, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.4) 100%
  );
}

.media-header-yourstory {
  background: linear-gradient(
    135deg,
    rgba(240, 253, 250, 0.8) 0%,
    rgba(255, 255, 255, 0.4) 100%
  );
}

.media-header-theprint {
  background: linear-gradient(
    135deg,
    rgba(255, 247, 237, 0.8) 0%,
    rgba(255, 255, 255, 0.4) 100%
  );
}

.media-card-name {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  margin: 0;
  font-family: "Neue Haas Grotesk", sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.media-card-body {
  padding: 0 32px 36px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.media-card-headline {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.media-card-description {
  font-size: 15px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.media-read-more {
  font-size: 15px;
  color: #2563eb;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  padding: 4px 0;
  position: relative;
}

.media-read-more::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: width 0.3s ease;
}

.media-read-more:hover {
  color: #1d4ed8;
  gap: 8px;
}

.media-read-more:hover::after {
  width: 100%;
}

.media-read-more svg {
  transition: transform 0.3s ease;
}

.media-read-more:hover svg {
  transform: translateX(2px);
}

.media-read-more span {
  position: relative;
  z-index: 1;
}

/* AI Customization Section */
.ai-section {
  background: linear-gradient(
    135deg,
    #e0f2fe 0%,
    #dbeafe 15%,
    #e9d5ff 30%,
    #f3e8ff 50%,
    #faf5ff 70%,
    #ffffff 100%
  );
  padding: 50px 0;
  display: flex;
  align-items: center;
  /* Optimize rendering for smooth scroll - use GPU acceleration */
  contain: layout style paint;
  transform: translate3d(0, 0, 0);
  will-change: auto;
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.12) 0%,
    rgba(139, 92, 246, 0.1) 30%,
    rgba(168, 85, 247, 0.08) 50%,
    transparent 75%
  );
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite;
  /* Optimize for scroll performance */
  contain: layout style paint;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  pointer-events: none;
}

.ai-section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.1) 0%,
    rgba(139, 92, 246, 0.08) 30%,
    rgba(59, 130, 246, 0.06) 50%,
    transparent 75%
  );
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  animation: pulseGlow 10s ease-in-out infinite reverse;
  /* Optimize for scroll performance */
  contain: layout style paint;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translate3d(0, 0, 0) scale(1.1);
  }
}

.ai-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Left Section - AI Text */
.ai-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 600px;
  /* Optimize for scroll performance */
  transform: translate3d(0, 0, 0);
  contain: layout style;
}

.ai-headline {
  font-size: 56px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.03em;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.ai-description {
  font-size: 20px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.ai-cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-generate-ai {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 20px rgba(139, 92, 246, 0.35),
    0 0 0 0 rgba(139, 92, 246, 0.4);
  position: relative;
  overflow: hidden;
  font-family: "Neue Haas Grotesk", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-generate-ai::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-generate-ai:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(139, 92, 246, 0.45),
    0 0 0 4px rgba(139, 92, 246, 0.15);
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
}

.btn-generate-ai:hover::before {
  left: 100%;
}

.btn-watch-demo {
  background: transparent;
  color: #6366f1;
  border: 1.5px solid #e2e8f0;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.btn-watch-demo svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-watch-demo:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #4f46e5;
  transform: translateY(-1px);
}

.btn-watch-demo:hover svg {
  transform: scale(1.1);
}

.ai-trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.trust-indicator-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #475569;
  font-weight: 500;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.trust-indicator-item svg {
  flex-shrink: 0;
}

/* Right Section - AI Mockups */
.ai-right {
  position: relative;
  height: 700px;
  /* Optimize for scroll performance */
  transform: translate3d(0, 0, 0);
  contain: layout style;
}

.ai-mockup-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AI section images (section2-bg behind, section-2 on top) */
.ai-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.4;
  mix-blend-mode: soft-light;
  filter: blur(20px) brightness(1.1) saturate(0.8);
  transform: scale(1.1);
  pointer-events: none;
}

.ai-mockup-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    transparent 50%,
    rgba(139, 92, 246, 0.05) 70%,
    rgba(59, 130, 246, 0.08) 100%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: 24px;
}

.ai-mockup-container::after {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 246, 0.15) 0%,
    rgba(99, 102, 241, 0.1) 30%,
    rgba(59, 130, 246, 0.08) 50%,
    transparent 80%
  );
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

.ai-hero-image {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 40px 100px rgba(15, 23, 42, 0.15))
    drop-shadow(0 0 60px rgba(139, 92, 246, 0.1));
  mix-blend-mode: normal;
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-hero-image:hover {
  transform: translateY(-5px) scale(1.02);
}

@media (max-width: 1200px) {
  .ai-right {
    height: 560px;
  }
  .ai-hero-image {
    width: min(720px, 100%);
  }
  .ai-bg-image {
    opacity: 0.35;
    filter: blur(15px) brightness(1.15) saturate(0.7);
  }
}

@media (max-width: 768px) {
  /* AI section: reduce heavy glow animations on mobile (prevents scroll stutter) */
  .ai-section {
    /* Allow section to grow naturally on mobile (prevents text clipping) */
    display: block;
    align-items: initial;
    /* Prevent fixed header from covering heading when scrolling */
    scroll-margin-top: 88px;
    padding-top: 88px;
    /* Optimize scroll performance on mobile */
    contain: layout style;
    transform: translate3d(0, 0, 0);
    will-change: auto;
    isolation: isolate;
    height: max-content;
  }

  /* Ensure AI content is visible and not clipped by JS animations on mobile */
  .ai-left,
  .ai-right {
    opacity: 1;
    transform: none;
  }

  .ai-section::before,
  .ai-section::after {
    animation: none !important;
    filter: blur(40px);
    opacity: 0.25;
    transform: translate3d(0, 0, 0) !important;
    pointer-events: none;
    contain: layout style paint;
  }

  .ai-right,
  .ai-section .ai-right {
    /* Avoid fixed heights on mobile which can cause scroll "sticking" (override 1200px rule) */
    height: auto;
    overflow: visible;
  }
  .ai-mockup-container {
    overflow: visible;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }
  .ai-bg-image {
    transform: none;
    opacity: 0.3;
    filter: blur(12px) brightness(1.2) saturate(0.6);
    object-fit: contain;
    object-position: center;
  }
  /* AI section image: full image visible on mobile, no cropping; prioritize left content (workflow nodes) */
  .ai-hero-image {
    transform: none !important;
    width: 100%;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 30px 60px rgba(15, 23, 42, 0.12))
      drop-shadow(0 0 40px rgba(139, 92, 246, 0.08));
  }
  .ai-mockup-container::before {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.15) 40%,
      transparent 60%
    );
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-section {
    padding: 60px 0 80px;
  }

  .about-hero-section {
    padding: 48px 0 64px;
  }

  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-hero-left {
    max-width: 100%;
  }

  .about-hero-headline {
    font-size: 42px;
  }

  .about-hero-right {
    order: -1;
  }

  .about-hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-headline {
    font-size: 52px;
  }

  .hero-right {
    height: 550px;
    order: -1;
  }

  .floating-card {
    display: none;
  }

  .hero-about-image {
    max-width: 650px;
    max-height: 600px;
  }

  .hero-cta-buttons {
    flex-wrap: wrap;
  }

  /* Removed unused laptop/phone mockup demo styles */
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header-content {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  /* Mobile Hero Section - Premium Fixes */
  .hero-section {
    min-height: auto;
    padding: 40px 0 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Optimize scroll performance on mobile */
    contain: layout style;
    transform: translate3d(0, 0, 0);
    isolation: isolate;
  }

  /* Disable heavy animations on mobile to prevent scroll lag */
  .hero-background::before,
  .hero-background::after {
    animation: none !important;
    opacity: 0.15 !important;
    filter: blur(60px) !important;
    transform: translate3d(0, 0, 0) !important;
    contain: layout style paint;
  }

  .about-hero-section {
    padding: 40px 0 56px;
  }

  .about-hero-content {
    gap: 40px;
  }

  .about-hero-headline {
    font-size: 34px;
    line-height: 1.2;
  }

  .about-hero-subtext {
    font-size: 17px;
  }

  .about-hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn-about-primary,
  .btn-about-secondary {
    width: 100%;
    justify-content: center;
  }

  .about-hero-trust {
    justify-content: center;
    padding-top: 16px;
  }

  .about-hero-left {
    text-align: center;
  }

  .about-hero-label {
    text-align: center;
  }

  .about-hero-right {
    order: -1;
  }

  .about-hero-section .hero-about-image {
    max-height: 380px;
  }

  .hero-background {
    overflow: hidden;
  }

  /* Soft gradient overlay for better text readability - using hero-section::before */
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.3) 25%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.05) 75%,
      transparent 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  /* Reduce blob animations on mobile for smoother experience */
  .hero-background::before,
  .hero-background::after {
    opacity: 0.2;
    filter: blur(50px);
    animation-duration: 20s;
    /* Optimize for mobile scroll */
    contain: layout style paint;
    transform: translate3d(0, 0, 0);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 20px 0;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .hero-left {
    text-align: center;
    max-width: 100%;
    width: 100%;
    opacity: 1;
    animation: fadeUpMobile 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
  }

  @keyframes fadeUpMobile {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-left::before {
    display: none;
  }

  .hero-right {
    height: auto;
    min-height: 300px;
    max-height: 400px;
    order: 1;
    opacity: 1;
    animation: fadeUpMobile 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    will-change: transform, opacity;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 0;
    overflow: visible;
  }

  .mockup-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .mockup-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .dashboard-mockup {
    transform: scale(0.95) translateY(0) !important;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    will-change: transform;
    /* Improved blending with background - softer shadows for mobile */
    mix-blend-mode: normal;
    filter: drop-shadow(0 12px 40px rgba(37, 99, 235, 0.12))
      drop-shadow(0 6px 20px rgba(99, 102, 241, 0.08))
      drop-shadow(0 0 10px rgba(139, 92, 246, 0.05));
    /* Smooth gradient fade at bottom for better blend - more gradual */
    mask-image: linear-gradient(
      to bottom,
      black 0%,
      black 70%,
      rgba(0, 0, 0, 0.95) 80%,
      rgba(0, 0, 0, 0.85) 85%,
      rgba(0, 0, 0, 0.7) 90%,
      rgba(0, 0, 0, 0.5) 94%,
      rgba(0, 0, 0, 0.3) 97%,
      rgba(0, 0, 0, 0.1) 99%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      black 0%,
      black 70%,
      rgba(0, 0, 0, 0.95) 80%,
      rgba(0, 0, 0, 0.85) 85%,
      rgba(0, 0, 0, 0.7) 90%,
      rgba(0, 0, 0, 0.5) 94%,
      rgba(0, 0, 0, 0.3) 97%,
      rgba(0, 0, 0, 0.1) 99%,
      transparent 100%
    );
    /* Ensure proper alignment */
    margin: 0 auto;
    display: block;
  }

  .hero-headline {
    font-size: 36px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 8px;
  }

  .hero-eyebrow {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 24px;
  }

  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
  }

  .hero-trust-text {
    margin-top: 16px;
    font-size: 13px;
  }

  /* Smooth scrolling and section spacing improvements */
  body {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  /* Ensure sections stack smoothly with consistent spacing */
  .marquee-section {
    margin-bottom: 0;
    padding: 0;
  }

  .ai-section,
  .performance-section,
  .features-section,
  .automation-section,
  .themes-section,
  .selling-section,
  .testimonials-section {
    margin-bottom: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow-x: hidden;
  }

  /* Prevent content from appearing suddenly - smooth transitions (no will-change to avoid scroll jank) */
  section {
    opacity: 1;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
    will-change: auto;
  }

  /* Removed unused laptop/phone/floating-card demo overrides */

  /* AI Section Responsive */
  .ai-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ai-headline {
    font-size: 36px;
  }

  .ai-right {
    height: 280px;
  }
}

/* Performance Section */
.performance-section {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #fafbfc 30%,
    #f8fafc 50%,
    #f1f5f9 70%,
    #eef2f6 100%
  );
  padding: 50px 0;
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.performance-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 120px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Left Section - Performance Text */
.performance-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 640px;
  align-self: start;
  padding-top: 8px;
  position: relative;
  z-index: 1;
}

.performance-headline {
  font-size: 52px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.04em;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.performance-subheading {
  font-size: 19px;
  color: #475569;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
  font-family: "Neue Haas Grotesk", sans-serif;
  letter-spacing: -0.01em;
}

.performance-description {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
  font-family: "Neue Haas Grotesk", sans-serif;
  letter-spacing: -0.01em;
}

.btn-launch-store {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  padding: 20px 40px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 6px 24px rgba(99, 102, 241, 0.4),
    0 0 0 0 rgba(99, 102, 241, 0.3);
  font-family: "Neue Haas Grotesk", sans-serif;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.btn-launch-store::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-launch-store:hover::before {
  left: 100%;
}

.btn-launch-store:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(99, 102, 241, 0.5),
    0 0 0 4px rgba(99, 102, 241, 0.15);
}

.performance-trust-text {
  font-size: 14px;
  color: #94a3b8;
  margin: 12px 0 0 0;
  font-weight: 500;
  font-family: "Neue Haas Grotesk", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* Right Section - Cards Grid */
.performance-right {
  width: 100%;
  align-self: start;
  position: relative;
  z-index: 1;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  grid-template-rows: repeat(2, 1fr);
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.cards-grid .info-card {
  min-height: 260px;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
}

.info-card > * {
  position: relative;
  z-index: 2;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 24px;
  pointer-events: none;
  z-index: 1;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.95);
}

.info-card:hover::before {
  opacity: 0.5;
}

.card-featured {
  grid-row: 1;
  grid-column: 1;
  min-height: auto;
  height: 100%;
  align-self: stretch;
  margin-bottom: 0;
  padding: 24px;
  transform: none;
  z-index: 1;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-featured:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Card Background Colors with Glassmorphism */
.card-enterprise {
  background: linear-gradient(
    135deg,
    rgba(254, 215, 170, 0.45) 0%,
    rgba(253, 186, 116, 0.4) 50%,
    rgba(251, 146, 60, 0.35) 100%
  );
}

.card-enterprise::before {
  background: linear-gradient(
    135deg,
    rgba(254, 215, 170, 0.65) 0%,
    rgba(253, 186, 116, 0.6) 50%,
    rgba(251, 146, 60, 0.55) 100%
  );
}

.card-nocode {
  background: linear-gradient(
    135deg,
    rgba(254, 205, 211, 0.45) 0%,
    rgba(253, 164, 175, 0.4) 50%,
    rgba(251, 113, 133, 0.35) 100%
  );
  grid-row: 1;
  grid-column: 2;
  align-self: stretch;
}

.card-nocode::before {
  background: linear-gradient(
    135deg,
    rgba(254, 205, 211, 0.65) 0%,
    rgba(253, 164, 175, 0.6) 50%,
    rgba(251, 113, 133, 0.55) 100%
  );
}

.card-proplus {
  background: linear-gradient(
    135deg,
    rgba(186, 230, 253, 0.45) 0%,
    rgba(125, 211, 252, 0.4) 50%,
    rgba(56, 189, 248, 0.35) 100%
  );
  grid-row: 2;
  grid-column: 1;
  align-self: stretch;
}

.card-proplus::before {
  background: linear-gradient(
    135deg,
    rgba(186, 230, 253, 0.65) 0%,
    rgba(125, 211, 252, 0.6) 50%,
    rgba(56, 189, 248, 0.55) 100%
  );
}

.card-retail {
  background: linear-gradient(
    135deg,
    rgba(254, 240, 138, 0.45) 0%,
    rgba(253, 224, 71, 0.4) 50%,
    rgba(250, 204, 21, 0.35) 100%
  );
  grid-row: 2;
  grid-column: 2;
  align-self: stretch;
}

.card-retail::before {
  background: linear-gradient(
    135deg,
    rgba(254, 240, 138, 0.65) 0%,
    rgba(253, 224, 71, 0.6) 50%,
    rgba(250, 204, 21, 0.55) 100%
  );
}

.card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(0, 0, 0);
  opacity: 0.35;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.info-card:hover .card-icon {
  opacity: 0.8;
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.card-title {
  font-size: 10px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 10px 0;
  font-family: "Neue Haas Grotesk", sans-serif;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.info-card:hover .card-title {
  opacity: 1;
}

.card-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.card-percentage {
  font-size: 56px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin: 0;
  font-family: "Neue Haas Grotesk", sans-serif;
  letter-spacing: -0.05em;
  transition: color 0.3s ease;
}

.info-card:hover .card-percentage {
  color: #020617;
}

.card-featured .card-percentage {
  font-size: 56px;
}

.card-metric-label {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  font-family: "Neue Haas Grotesk", sans-serif;
  opacity: 0.95;
  letter-spacing: -0.01em;
  transition: opacity 0.3s ease;
}

.info-card:hover .card-metric-label {
  opacity: 1;
}

.card-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(15, 23, 42, 0.12) 50%,
    transparent 100%
  );
  margin: 6px 0 10px 0;
}

.card-description {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  font-family: "Neue Haas Grotesk", sans-serif;
  min-height: 0;
  overflow: hidden;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.info-card:hover .card-description {
  color: #334155;
}

.card-featured .card-description {
  font-size: 13px;
  line-height: 1.6;
}

.card-cta {
  background: rgba(255, 255, 255, 0.6);
  color: #6366f1;
  border: 1.5px solid rgba(99, 102, 241, 0.25);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Neue Haas Grotesk", sans-serif;
  margin-top: 4px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.card-cta:hover {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.6);
  color: #4f46e5;
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Responsive Design for Performance Section */
@media (max-width: 1200px) {
  .performance-section {
    padding: 100px 0;
  }

  .performance-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .performance-left {
    max-width: 100%;
  }

  .performance-headline {
    font-size: 42px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    grid-template-rows: repeat(2, 1fr);
    align-items: stretch;
  }

  .cards-grid .info-card {
    min-height: 280px;
    height: 100%;
  }

  .card-featured {
    grid-row: 1;
    grid-column: 1;
    min-height: 280px;
    max-height: none;
    transform: none;
    padding: 28px;
  }

  .card-featured:hover {
    transform: translateY(-8px);
  }

  .card-retail {
    grid-row: 2;
    grid-column: 2;
  }

  /* Reset hero image transforms on mobile to avoid overflow/jank */
  .dashboard-mockup {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .performance-section {
    padding: 60px 0;
  }

  .performance-content {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
  }

  .performance-left {
    max-width: 100%;
    padding-top: 0;
    gap: 24px;
    text-align: left;
  }

  .performance-headline {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.03em;
  }

  .performance-subheading {
    font-size: 16px;
    line-height: 1.6;
  }

  .performance-description {
    font-size: 16px;
    line-height: 1.7;
  }

  .btn-launch-store {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
  }

  .performance-trust-text {
    text-align: center;
    font-size: 13px;
  }

  .performance-right {
    width: 100%;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    grid-auto-rows: auto;
    align-items: stretch;
    width: 100%;
  }

  .info-card {
    padding: 24px;
    min-height: auto;
    height: auto;
    width: 100%;
    margin: 0;
  }

  .cards-grid .info-card {
    min-height: auto;
    height: auto;
  }

  .card-featured {
    min-height: auto;
    height: auto;
    transform: scale(1);
    padding: 24px;
    grid-row: auto;
  }

  .card-featured:hover {
    transform: translateY(-8px);
  }

  .card-nocode,
  .card-proplus,
  .card-retail {
    margin-top: 0;
    grid-row: auto;
    grid-column: auto;
  }

  .card-percentage {
    font-size: 56px;
  }

  .card-featured .card-percentage {
    font-size: 64px;
  }

  .card-metric-label {
    font-size: 13px;
  }

  .card-title {
    font-size: 11px;
  }

  .card-description {
    font-size: 14px;
  }

  .card-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .performance-section {
    padding: 50px 0;
  }

  .performance-content {
    gap: 32px;
  }

  .performance-left {
    gap: 20px;
  }

  .performance-headline {
    font-size: 28px;
    line-height: 1.25;
  }

  .performance-subheading {
    font-size: 15px;
  }

  .performance-description {
    font-size: 15px;
    line-height: 1.65;
  }

  .btn-launch-store {
    padding: 16px 28px;
    font-size: 15px;
  }

  .performance-trust-text {
    font-size: 12px;
  }

  .cards-grid {
    gap: 16px;
  }

  .info-card {
    padding: 20px;
  }

  .card-featured {
    padding: 20px;
  }

  .card-percentage {
    font-size: 48px;
  }

  .card-featured .card-percentage {
    font-size: 56px;
  }

  .card-metric-label {
    font-size: 12px;
  }

  .card-title {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .card-description {
    font-size: 13px;
    line-height: 1.65;
  }

  .card-cta {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: start;
}

.features-headline-left {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.03em;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.features-headline-right {
  font-size: 20px;
  font-weight: 400;
  color: #475569;
  line-height: 1.7;
  margin: 0;
  font-family: "Neue Haas Grotesk", sans-serif;
}

/* Features Cards */
.features-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
  align-items: start;
}

.feature-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.03) 0%,
    rgba(139, 92, 246, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 24px;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(99, 102, 241, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(99, 102, 241, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover .feature-title {
  color: #6366f1;
}

.feature-card:hover .feature-image {
  transform: scale(1.05);
}

.feature-card-elevated {
  transform: translateY(-12px);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(99, 102, 241, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.feature-card-elevated:hover {
  transform: translateY(-16px);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(99, 102, 241, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.feature-title-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-icon-launch {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #2563eb;
}

.feature-icon-customize {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #8b5cf6;
}

.feature-icon-scale {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #10b981;
}

.feature-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-visual {
  width: 100%;
  height: 240px;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.feature-3d-mockup {
  width: 85%;
  height: 85%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.feature-card:hover .feature-3d-mockup {
  transform: scale(1.02);
}

.feature-stat-image {
  width: 85%;
  height: 85%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.feature-card:hover .feature-stat-image {
  transform: scale(1.02);
}

/* Shopping Cart Visual for Card 1 */
.shopping-cart-visual {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.cart-bag {
  width: 40px;
  height: 50px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.bag-1 {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.bag-2 {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.bag-3 {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Responsive Devices Visual for Card 2 */
.responsive-devices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.device {
  background: #e5e7eb;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.device-screen {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.device-content {
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.green-bg {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.device-desktop {
  width: 120px;
  height: 80px;
  padding: 8px;
}

.device-desktop .device-screen {
  width: 100%;
  height: 100%;
}

.device-laptop {
  width: 100px;
  height: 70px;
  padding: 6px;
}

.device-laptop .device-screen {
  width: 100%;
  height: 100%;
}

.device-tablet {
  width: 70px;
  height: 90px;
  padding: 6px;
}

.device-tablet .device-screen {
  width: 100%;
  height: 100%;
}

.device-phone {
  width: 50px;
  height: 90px;
  padding: 4px;
}

.device-phone .device-screen {
  width: 100%;
  height: 100%;
}

.device-phone .device-content {
  font-size: 8px;
  padding: 6px 8px;
}

/* Analytics Dashboard Visual for Card 3 */
.analytics-dashboard {
  width: 100%;
  height: 100%;
  background: #1f2937;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-header {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
}

.dashboard-title {
  font-size: 12px;
  font-weight: 700;
  color: #1f2937;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.metric-box {
  background: #f9fafb;
  border-radius: 6px;
  padding: 8px;
  text-align: center;
}

.metric-value {
  font-size: 20px;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 9px;
  color: #6b7280;
  font-weight: 500;
}

.dashboard-charts {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 60px;
  margin-top: auto;
}

.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  min-height: 20px;
}

.chart-1 {
  height: 80%;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
}

.chart-2 {
  height: 60%;
  background: #e5e7eb;
}

.chart-3 {
  height: 40%;
  background: #e5e7eb;
}

.chart-pie {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pie-1 {
  background: conic-gradient(#ef4444 0% 40%, #e5e7eb 40% 100%);
}

.pie-2 {
  background: conic-gradient(#3b82f6 0% 60%, #e5e7eb 60% 100%);
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease-in-out;
  font-family: "Neue Haas Grotesk", sans-serif;
  letter-spacing: -0.01em;
}

.feature-description {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin: 0;
  font-weight: 400;
  font-family: "Neue Haas Grotesk", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.feature-description p {
  margin: 0;
}

.feature-card-cta {
  background: transparent;
  color: #6366f1;
  border: 1.5px solid rgba(99, 102, 241, 0.3);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Neue Haas Grotesk", sans-serif;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-card-cta:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.5);
  color: #4f46e5;
  transform: translateX(4px);
}

.features-cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.btn-features-primary {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
  font-family: "Neue Haas Grotesk", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-features-primary:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.45);
}

.btn-features-primary .arrow-icon {
  transition: transform 0.3s ease;
}

.btn-features-primary:hover .arrow-icon {
  transform: translateX(4px);
}

/* Responsive Design for Features Section */
@media (max-width: 1200px) {
  .features-section {
    padding: 100px 0;
  }

  .features-header {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .features-headline-left {
    font-size: 42px;
  }

  .features-headline-right {
    font-size: 18px;
  }

  .features-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
  }

  .feature-card-elevated {
    transform: translateY(0);
  }

  .feature-card-elevated:hover {
    transform: translateY(-8px);
  }

  .feature-visual {
    height: 220px;
  }

  .feature-card {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 80px 0;
  }

  .features-header {
    margin-bottom: 60px;
    gap: 32px;
  }

  .features-headline-left {
    font-size: 36px;
  }

  .features-headline-right {
    font-size: 16px;
  }

  .features-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 60px;
  }

  .feature-card-elevated {
    transform: translateY(0);
  }

  .feature-visual {
    height: 200px;
  }

  .feature-card {
    padding: 28px;
  }

  .feature-icon-wrapper {
    width: 44px;
    height: 44px;
  }

  .feature-icon-wrapper svg {
    width: 18px;
    height: 18px;
  }

  .feature-title-wrapper {
    gap: 12px;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-description {
    font-size: 14px;
  }

  .features-cta-section {
    margin-top: 40px;
  }
}

/* Facebook Instagram Automation Section */
.automation-section {
  background-color: #ffffff;
  padding: 50px 0;
}

/* Top Section - Text and Navigation */
.automation-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.automation-top-left {
  display: flex;
  align-items: center;
}

.automation-intro {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  margin: 0;
}

.automation-top-right {
  display: flex;
  align-items: center;
}

.automation-top-description {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* Navigation Bar */
.automation-nav-bar {
  display: flex;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 50%, #e9ecef 100%);
  border-radius: 16px;
  padding: 8px;
  margin-bottom: 40px;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  opacity: 0.7;
}

.nav-tab:hover {
  color: #1f2937;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.nav-tab.active {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(147, 51, 234, 0.25);
}

.nav-tab.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: underlineSlide 0.3s ease;
}

@keyframes underlineSlide {
  from {
    width: 0;
  }
  to {
    width: 60%;
  }
}

/* Main Content Card */
.automation-card {
  background: radial-gradient(
    ellipse at top right,
    rgba(233, 213, 255, 0.8) 0%,
    rgba(221, 214, 254, 0.6) 40%,
    rgba(196, 181, 253, 0.4) 100%
  );
  border-radius: 24px;
  /* border-top-right-radius: 120px;
    border-bottom-left-radius: 120px; */
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: visible;
  min-height: auto;
}

.automation-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.automation-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.automation-card-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* Tab Content */
.tab-content {
  display: none !important;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  visibility: hidden;
}

.tab-content.active {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left Section - Automation Text (Inside Card) */
.automation-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
}

/* Feature Badge */
.automation-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: #9333ea;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 8px;
}

.automation-headline {
  font-size: 30px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.5px;
}

.automation-description {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 540px;
  margin-top: 8px;
}

.btn-get-started-automation {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  gap: 8px;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(87, 0, 153, 0.3);
}

.btn-get-started-automation::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-get-started-automation:hover::before {
  left: 100%;
}

.btn-get-started-automation:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(87, 0, 153, 0.5),
    0 0 20px rgba(147, 51, 234, 0.4);
}

.btn-get-started-automation:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-get-started-automation .arrow-icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Right Section - Automation Visual */
.automation-right {
  position: relative;
  height: 520px;
  min-height: 450px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Automation Tab Images - Product Style UI Mockup */
.automation-image-container {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .automation-image-container::before {
    content: '● ● ●';
    position: absolute;
    top: 16px;
    left: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 8px;
    z-index: 2;
    font-family: system-ui, -apple-system, sans-serif;
} */

.automation-tab-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 16px;
}

/* Desktop: better alignment and proportions for automation images */
@media (min-width: 1025px) {
  .automation-card-content {
    align-items: center;
  }
  .automation-right {
    min-height: 520px;
    display: flex;
    align-items: center;
  }
  .automation-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }
  .automation-tab-image {
    object-fit: contain;
    object-position: center center;
  }
}

/* For tabs with existing visual containers, keep them on top */
.automation-right .seo-visual-container,
.automation-right .chatbot-visual-container,
.automation-right .automation-visual-container {
  position: relative;
  z-index: 2;
}

/* For tabs with just images - make them full visible */
.automation-right:has(.automation-image-container:only-child)
  .automation-image-container {
  position: relative;
  opacity: 1;
  min-height: 450px;
}

.automation-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #374151;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  min-height: 350px;
}

/* Woman with Laptop */
.woman-laptop {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 300px;
  height: 400px;
}

.woman-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Facebook Post Mockup */
.facebook-post-mockup {
  position: absolute;
  left: 40px;
  top: 60px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.post-header {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.post-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fb-logo {
  font-size: 20px;
  font-weight: 700;
  color: #1877f2;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.search-icon {
  font-size: 16px;
  color: #6b7280;
}

.post-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  flex-shrink: 0;
}

.profile-name {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.post-image-container {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.post-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.post-engagement {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.engagement-icons {
  display: flex;
  gap: 12px;
}

.icon-like,
.icon-comment,
.icon-share {
  font-size: 18px;
  cursor: pointer;
}

.engagement-numbers {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

/* Calendar Widget */
.calendar-widget {
  position: absolute;
  left: 60px;
  bottom: 80px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  width: 280px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.calendar-month {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
}

.calendar-year {
  font-size: 14px;
  font-weight: 700;
  color: #ef4444;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}

.calendar-weekdays span {
  font-size: 10px;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
  text-transform: uppercase;
}

.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-dates span {
  font-size: 12px;
  color: #1f2937;
  text-align: center;
  padding: 6px;
  border-radius: 4px;
  font-weight: 500;
}

.calendar-dates .saturday {
  color: #ef4444;
  font-weight: 700;
}

/* SEO Tools Dashboard */
.seo-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.man-laptop {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 400px;
  flex-shrink: 0;
}

.man-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.seo-dashboard {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  width: 400px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 3;
  flex-shrink: 0;
}

.dashboard-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.dashboard-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-header {
  margin-bottom: 8px;
}

.section-title {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.section-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.item-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.progress-container {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-seo {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.dashboard-graph {
  margin-top: 8px;
}

.graph-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.graph-title {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.graph-period {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
}

.graph-container {
  position: relative;
  height: 200px;
  display: flex;
  gap: 12px;
}

.graph-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 10px;
  color: #9ca3af;
  font-weight: 500;
  min-width: 30px;
}

.graph-chart {
  flex: 1;
  position: relative;
  height: 100%;
}

.line-chart {
  width: 100%;
  height: 100%;
}

/* Chatbot Integration Visual */
.chatbot-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.chatbot-integration-graphic {
  position: relative;
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  border: 2px solid #3b82f6;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.integration-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 30px 0;
  text-align: center;
}

/* Chat Window */
.chat-window {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
  position: relative;
}

.chat-header {
  background: #f3f4f6;
  padding: 12px 16px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.bot-icon {
  font-size: 20px;
}

.bot-name {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

.chat-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}

.bot-message {
  background: #f3f4f6;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  color: #1f2937;
  line-height: 1.5;
  max-width: 80%;
}

.chat-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-btn {
  background: #1e40af;
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.chat-btn:hover {
  background: #2563eb;
}

.chat-option {
  color: #3b82f6;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
}

.chat-input {
  padding: 12px 16px;
  border-top: 1px solid #e5e7eb;
}

.chat-input input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  outline: none;
}

/* Social Integration Icons */
.social-integration-icon {
  position: absolute;
  z-index: 5;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1877f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.icon-circle.instagram-bg {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.icon-circle.twitter-bg {
  background: #1da1f2;
}

.icon-circle.whatsapp-bg {
  background: #25d366;
}

.icon-circle.messenger-bg {
  background: #0084ff;
}

.connection-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 2px;
  border-top: 2px dashed #3b82f6;
  transform-origin: left center;
  z-index: 1;
}

.icon-facebook .connection-line {
  transform: translate(-50%, -50%) rotate(45deg);
  width: 150px;
}

.icon-instagram .connection-line {
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 150px;
}

.icon-twitter .connection-line {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 120px;
}

.icon-whatsapp .connection-line {
  transform: translate(-50%, -50%) rotate(135deg);
  width: 150px;
}

.icon-messenger .connection-line {
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 150px;
}

/* Man with Smartphone */
.man-smartphone {
  position: relative;
  z-index: 6;
  width: 250px;
  height: 400px;
  flex-shrink: 0;
}

.man-phone-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Marketing Visual Container */
.marketing-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fcd34d;
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.marketing-man-laptop {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 400px;
  flex-shrink: 0;
}

.marketing-man-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Marketing Strategy Dashboard */
.marketing-dashboard {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  width: 400px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 3;
  flex-shrink: 0;
}

.marketing-dashboard-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.marketing-dashboard-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.marketing-dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Spending Section */
.spending-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spending-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.spending-amount {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rupee-icon {
  font-size: 18px;
  color: #ef4444;
  font-weight: 700;
}

.amount-value {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
}

/* Pie Chart Section */
.pie-chart-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pie-chart-container {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.pie-chart {
  width: 100%;
  height: 100%;
}

.pie-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.legend-label {
  font-size: 12px;
  color: #1f2937;
  font-weight: 500;
}

/* Growth Section */
.growth-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.growth-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.growth-value {
  display: flex;
  align-items: center;
  gap: 4px;
}

.growth-amount {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.growth-arrow {
  font-size: 18px;
  color: #10b981;
  font-weight: 700;
}

/* Line Chart Section */
.line-chart-section {
  margin-top: 8px;
}

.line-chart-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chart-wrapper {
  display: flex;
  gap: 8px;
  height: 120px;
}

.chart-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 10px;
  color: #9ca3af;
  font-weight: 500;
  min-width: 35px;
  text-align: right;
  padding-right: 8px;
}

.chart-area {
  flex: 1;
  position: relative;
  height: 120px;
}

.marketing-line-chart {
  width: 100%;
  height: 100%;
}

.chart-x-axis {
  display: flex;
  justify-content: space-around;
  margin-left: 43px;
  font-size: 10px;
  color: #6b7280;
  font-weight: 500;
  margin-top: 4px;
}

/* Analytics Visual Container */
.analytics-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #22c55e;
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.analytics-woman-laptop {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 400px;
  flex-shrink: 0;
  order: 2;
}

.analytics-woman-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Analytics Dashboard Card */
.analytics-dashboard-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  width: 400px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 3;
  flex-shrink: 0;
  overflow: hidden;
  order: 1;
  margin-right: -50px;
}

.analytics-top-section {
  background: #1f2937;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.analytics-bottom-section {
  background: #ffffff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.analytics-metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-label {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

.analytics-top-section .metric-label {
  color: #9ca3af;
}

.analytics-bottom-section .metric-label {
  color: #6b7280;
}

.metric-value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.metric-value {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.analytics-bottom-section .metric-value {
  color: #1f2937;
}

.metric-value-large {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 2px;
}

.rupee-symbol {
  font-size: 18px;
  color: #1f2937;
  font-weight: 700;
}

.metric-indicator {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.metric-indicator.increase {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

.metric-indicator.decrease {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

/* Responsive Design for SEO Features */
@media (max-width: 1200px) {
  .seo-features-grid {
    gap: 24px;
  }

  .feature-card {
    padding: 32px;
    min-height: 300px;
  }

  .feature-content {
    gap: 32px;
  }
}

@media (max-width: 968px) {
  .seo-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-right {
    min-height: 180px;
    height: auto;
  }

  .glass-card {
    position: relative;
    margin-bottom: 16px;
  }

  .glass-card-1,
  .glass-card-2,
  .glass-card-3,
  .glass-card-4,
  .glass-card-5 {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 16px;
  }
}

/* Responsive Design for Automation Section */
@media (max-width: 1200px) {
  .automation-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .automation-headline {
    font-size: 40px;
  }

  .automation-right {
    height: 520px;
  }

  .woman-laptop {
    width: 250px;
    height: 350px;
    right: 20px;
  }

  .facebook-post-mockup {
    width: 280px;
    left: 20px;
  }

  .calendar-widget {
    width: 240px;
    left: 40px;
    bottom: 60px;
  }
}

@media (max-width: 768px) {
  .automation-section {
    padding: 80px 0;
  }

  .automation-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .automation-intro {
    font-size: 24px;
  }

  .automation-nav-bar {
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .automation-nav-bar::-webkit-scrollbar {
    display: none;
  }

  .nav-tab {
    flex: 0 0 auto;
    min-width: fit-content;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 12px;
  }

  .automation-card {
    padding: 32px 24px 28px;
  }

  .automation-card-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .automation-headline {
    font-size: 32px;
  }

  .automation-description {
    font-size: 16px;
  }

  .automation-right {
    height: 350px;
  }

  .automation-image-container {
    position: relative;
    height: auto;
    min-height: 300px;
    max-height: 400px;
    overflow: visible;
  }

  .automation-tab-image {
    object-fit: contain;
    object-position: top center;
    height: auto;
    max-height: 400px;
    width: 100%;
    display: block;
  }

  .automation-visual-container {
    padding: 20px;
    min-height: 400px;
  }

  .woman-laptop {
    width: 180px;
    height: 250px;
    right: 10px;
  }

  .facebook-post-mockup {
    width: 240px;
    left: 10px;
    top: 40px;
  }

  .calendar-widget {
    width: 200px;
    left: 20px;
    bottom: 40px;
  }
}

/* Mobile Automation Image Fixes - 480px and below */
@media (max-width: 480px) {
  .automation-card {
    padding: 28px 20px 24px;
  }

  .automation-card-content {
    gap: 28px;
  }

  .automation-right {
    height: auto;
    min-height: 180px;
  }

  .automation-image-container {
    position: relative;
    height: auto;
    min-height: 280px;
    max-height: 350px;
    overflow: visible;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .automation-tab-image {
    object-fit: contain;
    object-position: top center;
    height: auto;
    max-height: 350px;
    width: 100%;
    display: block;
  }

  .automation-right:has(.automation-image-container:only-child)
    .automation-image-container {
    min-height: 165px;
    max-height: 350px;
  }
}

/* Themes Section */
.themes-section {
  background-color: #fafafa;
  padding: 50px 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
}

.themes-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
}

/* Left Section - Themes Text */
.themes-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.themes-left::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -80px;
  width: 520px;
  height: 380px;
  border-radius: 999px;
  background:
    radial-gradient(
      closest-side at 35% 35%,
      rgba(87, 0, 153, 0.18),
      transparent 70%
    ),
    radial-gradient(
      closest-side at 70% 65%,
      rgba(37, 99, 235, 0.16),
      transparent 72%
    );
  filter: blur(28px);
  opacity: 0.55; /* ~8–12% visual weight */
  z-index: -1;
  pointer-events: none;
}

.themes-headline,
.themes-description {
  max-width: 560px;
}

.themes-button-container {
  margin-top: 20px;
  position: relative;
  z-index: 10;
}

.themes-headline {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin: 0;
}

.btn-explore-themes {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  box-shadow: 0 10px 26px rgba(87, 0, 153, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-explore-themes:hover {
  background-color: #4b0085;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(87, 0, 153, 0.22);
}

/* Trust Stats (Left Only) */
.themes-trust-stats {
  display: grid;
  /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
  gap: 14px 28px;
  align-items: start;
  max-width: 560px;
  margin-top: 6px;
}

/* List style for themes trust points */
.themes-trust-list {
  list-style: disc;
  list-style-position: inside;
  padding-left: 0.5em;
  margin: 0;
}

.themes-trust-list .themes-stat {
  display: list-item;
  margin-bottom: 6px;
  padding-left: 0.15em;
}

.themes-trust-list .themes-stat:last-child {
  margin-bottom: 0;
}

.themes-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.themes-stat-text strong {
  color: #374151;
  font-weight: 700;
}

/* Optional: custom bullet (disc) color – use ::marker for list bullets */
.themes-trust-list .themes-stat::marker {
  color: rgba(87, 0, 153, 0.85);
}

/* Right Section - Animated Theme Marquee */
.themes-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.themes-description {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* Marquee Container */
.themes-marquee-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  min-width: 0;
}

/* Marquee Row */
.marquee-row {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
}

/* Marquee Content */
.marquee-content {
  display: flex;
  gap: 36px;
  width: fit-content;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

.marquee-content-reverse {
  animation: marquee-scroll-reverse 40s linear infinite;
}

/* Theme Card - Scoped for Marquee Section Only */
.themes-marquee-container .theme-card,
.marquee-content .theme-card,
.marquee-row .theme-card {
  flex-shrink: 0;
  width: 270px;
  height: 340px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  display: block;
}

.themes-marquee-container .theme-card:hover,
.marquee-content .theme-card:hover,
.marquee-row .theme-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.themes-marquee-container .theme-card-img,
.marquee-content .theme-card-img,
.marquee-row .theme-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Marquee Animations */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.phone-frame {
  width: 200px;
  height: 400px;
  background: #000000;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.theme-content {
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Theme 1 - Smart Watch */
.theme-1 {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.theme-smartwatch {
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.watch-display {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.watch-time {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
}

.theme-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  text-align: center;
}

.theme-btn {
  background-color: #ffffff;
  color: #1e40af;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

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

/* Theme 2 - Women Fashion */
.theme-2 {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.theme-fashion {
  justify-content: space-between;
}

.fashion-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 8px;
  position: relative;
}

.fashion-image::before {
  content: "👓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
}

.theme-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.theme-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.theme-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.theme-fashion .theme-text h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

/* Theme 3 - Modern Sneaker */
.theme-3 {
  background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
}

.theme-sneaker {
  justify-content: space-between;
}

.sneaker-image {
  width: 100%;
  height: 200px;
  background: #ffffff;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sneaker-image::before {
  content: "👟";
  font-size: 64px;
}

.theme-sneaker .theme-text h3 {
  color: #1f2937;
  margin-bottom: 16px;
}

.theme-sneaker .theme-btn {
  background-color: #1e40af;
  color: #ffffff;
}

/* Theme 4 - Men Fashion */
.theme-4 {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.theme-men-fashion {
  justify-content: space-between;
}

.men-fashion-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 8px;
  position: relative;
}

.men-fashion-image::before {
  content: "👔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
}

.theme-men-fashion .theme-text h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

/* Theme 5 - Luxury Handbag */
.theme-5 {
  background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
}

.theme-handbag {
  justify-content: space-between;
}

.handbag-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.handbag-image::before {
  content: "👜";
  font-size: 64px;
}

.theme-handbag .theme-text h3 {
  color: #1f2937;
  margin-bottom: 16px;
}

.theme-handbag .theme-btn {
  background-color: #1f2937;
  color: #ffffff;
}

/* Carousel Navigation */
.carousel-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 10;
}

.carousel-btn {
  background-color: #e5e7eb;
  color: #1f2937;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.carousel-btn:hover {
  background-color: #d1d5db;
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}

/* Responsive Design for Themes Section */
@media (max-width: 1200px) {
  .themes-content {
    grid-template-columns: 1fr;
    gap: 60px;
    overflow: visible;
  }

  .themes-right {
    overflow: visible;
    width: 100%;
  }

  .themes-marquee-container {
    overflow-x: hidden;
    overflow-y: visible;
  }

  .themes-headline {
    font-size: 40px;
  }

  .themes-marquee-container .theme-card,
  .marquee-content .theme-card,
  .marquee-row .theme-card {
    width: 240px;
    height: 300px;
  }

  .marquee-content {
    gap: 32px;
    animation-duration: 35s;
  }

  .marquee-content-reverse {
    animation-duration: 35s;
  }
}

@media (max-width: 768px) {
  .themes-section {
    padding: 80px 0;
  }

  .themes-headline {
    font-size: 32px;
  }

  .themes-trust-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .themes-left::before {
    left: -60px;
    width: 440px;
    height: 340px;
    opacity: 0.5;
  }

  .themes-marquee-container {
    gap: 20px;
  }

  .themes-marquee-container .theme-card,
  .marquee-content .theme-card,
  .marquee-row .theme-card {
    width: 220px;
    height: 280px;
    border-radius: 16px;
  }

  .marquee-content {
    gap: 28px;
    animation-duration: 30s;
  }

  .marquee-content-reverse {
    animation-duration: 30s;
  }
}

@media (max-width: 480px) {
  .themes-marquee-container .theme-card,
  .marquee-content .theme-card,
  .marquee-row .theme-card {
    width: 200px;
    height: 250px;
    border-radius: 14px;
  }

  .marquee-content {
    gap: 24px;
    animation-duration: 25s;
  }

  .marquee-content-reverse {
    animation-duration: 25s;
  }
}

/* Pricing Section */
/* Pricing Section - Premium Redesign */
.pricing-section {
  background-color: #ffffff;
  padding: 40px 0 30px;
  position: relative;
}

.pricing-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.pricing-label {
  font-size: 13px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.pricing-headline {
  font-size: 68px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.pricing-headline .highlight-text {
  color: #570099;
  position: relative;
}

.pricing-subheadline {
  font-size: 28px;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

.pricing-description {
  font-size: 19px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 40px 0;
}

/* CTA Buttons */
.pricing-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.btn-pricing-primary {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(87, 0, 153, 0.3);
}

.btn-pricing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(87, 0, 153, 0.4);
}

.btn-pricing-secondary {
  background: transparent;
  color: #570099;
  border: 2px solid #570099;
  padding: 16px 38px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-pricing-secondary:hover {
  background: #570099;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(87, 0, 153, 0.3);
}

/* Value Pillars */
.pricing-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto 50px;
}

.pricing-feature-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-orange {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.feature-pink {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.feature-blue {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.feature-yellow {
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #e9d5ff;
  transition: transform 0.3s ease;
}

.pricing-feature-box .feature-icon svg {
  width: 28px;
  height: 28px;
}

.pricing-feature-box:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}

.feature-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Trust Line */
.pricing-trust-line {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 1300px;
  margin: 0 auto 0;
}

.pricing-trust-text {
  font-size: 16px;
  font-weight: 600;
  color: #4b5563;
  letter-spacing: 0.3px;
  margin: 0;
}

/* Micro Stats */
.pricing-micro-stats {
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

.pricing-stats-text {
  font-size: 15px;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.2px;
  margin: 0;
}

/* Responsive Design for Pricing Section */
@media (max-width: 1200px) {
  .pricing-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pricing-headline {
    font-size: 52px;
  }

  .pricing-subheadline {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 80px 0 60px;
  }

  .pricing-content {
    margin-bottom: 50px;
  }

  .pricing-headline {
    font-size: 40px;
  }

  .pricing-subheadline {
    font-size: 22px;
  }

  .pricing-description {
    font-size: 17px;
    margin-bottom: 32px;
  }

  .pricing-cta-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 60px;
  }

  .btn-pricing-primary,
  .btn-pricing-secondary {
    width: 100%;
    max-width: 300px;
  }

  .pricing-features {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .pricing-features::-webkit-scrollbar {
    height: 4px;
  }

  .pricing-features::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
  }

  .pricing-features::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
  }

  .pricing-feature-box {
    min-width: 280px;
    scroll-snap-align: start;
    padding: 32px 24px;
  }

  .pricing-trust-line {
    padding: 24px 0;
    margin-bottom: 16px;
  }

  .pricing-trust-text {
    font-size: 14px;
  }

  .pricing-stats-text {
    font-size: 13px;
  }
}

/* Enterprise Section */
/* Ziplofy Enterprise Section - Premium Redesign */
.enterprise-section {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  padding: 50px 0;
  position: relative;
}

.enterprise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 60px;
  align-items: stretch;
}

/* Hero Card (Left Side) */
.enterprise-hero-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 56px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.enterprise-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #570099 0%, #020241 100%);
}

.enterprise-hero-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.06);
}

.enterprise-hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.1;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.enterprise-hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #570099;
  line-height: 1.3;
  margin: 0 0 32px 0;
}

.enterprise-hero-description {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 24px 0;
  flex: 0 0 auto;
}

.enterprise-hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.enterprise-hero-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  line-height: 1.4;
}

.enterprise-hero-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(87, 0, 153, 0.12) 0%,
    rgba(37, 99, 235, 0.1) 100%
  );
  color: #570099;
}

.enterprise-hero-check svg {
  width: 12px;
  height: 12px;
}

.btn-enterprise-primary {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(87, 0, 153, 0.3);
  width: fit-content;
}

.btn-enterprise-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(87, 0, 153, 0.4);
}

/* Feature Cards Grid (Right Side) */
.enterprise-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
  height: 100%;
}

.enterprise-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.enterprise-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(87, 0, 153, 0.2);
}

.enterprise-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e9d5ff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.enterprise-feature-card:hover .enterprise-feature-icon {
  transform: scale(1.1);
}

.enterprise-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

.enterprise-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  margin: 0;
}

.enterprise-feature-text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Trust Strip */
.enterprise-trust-strip {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin: 60px auto 32px;
  max-width: 1400px;
}

.enterprise-trust-text {
  font-size: 16px;
  font-weight: 600;
  color: #4b5563;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}

/* Secondary CTA */
.enterprise-cta-wrapper {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.btn-enterprise-secondary {
  background: transparent;
  color: #570099;
  border: 2px solid #570099;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-enterprise-secondary:hover {
  background: #570099;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(87, 0, 153, 0.3);
}

/* Responsive Design for Enterprise Section */
@media (max-width: 1200px) {
  .enterprise-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .enterprise-hero-card {
    padding: 48px;
  }

  .enterprise-hero-title {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .enterprise-section {
    padding: 80px 0;
  }

  .enterprise-layout {
    gap: 32px;
    margin-bottom: 48px;
  }

  .enterprise-hero-card {
    padding: 40px 32px;
  }

  .enterprise-hero-title {
    font-size: 36px;
  }

  .enterprise-hero-subtitle {
    font-size: 20px;
  }

  .enterprise-hero-description {
    font-size: 16px;
  }

  .enterprise-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .enterprise-feature-card {
    padding: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .enterprise-feature-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .enterprise-feature-title,
  .enterprise-feature-text {
    text-align: center;
  }

  .enterprise-trust-strip {
    margin: 48px auto 24px;
  }

  .enterprise-trust-text {
    font-size: 14px;
  }
}

/* Scale Confidently Section */
.scale-section {
  /* background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%); */
  padding: 30px;
  position: relative;
}

.scale-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.scale-heading {
  font-size: 52px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.1;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.scale-subtitle {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.scale-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.scale-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.scale-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #570099 0%, #020241 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.scale-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(87, 0, 153, 0.15);
}

.scale-card:hover::before {
  transform: scaleX(1);
}

.scale-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e9d5ff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.scale-card:hover .scale-card-icon {
  transform: scale(1.1);
}

.scale-card-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

.scale-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  margin: 0;
}

.scale-card-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Trust Line */
.scale-trust-line {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 1400px;
  margin: 0 auto;
}

.scale-trust-text {
  font-size: 16px;
  font-weight: 600;
  color: #4b5563;
  letter-spacing: 0.3px;
  margin: 0;
}

/* Responsive Design for Scale Section */
@media (max-width: 1200px) {
  .scale-section {
    padding: 100px 0;
  }

  .scale-header {
    margin-bottom: 60px;
  }

  .scale-heading {
    font-size: 44px;
  }

  .scale-subtitle {
    font-size: 18px;
  }

  .scale-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
  }

  .scale-card {
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  .scale-section {
    padding: 80px 0;
  }

  .scale-header {
    margin-bottom: 48px;
  }

  .scale-heading {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .scale-subtitle {
    font-size: 16px;
  }

  .scale-features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .scale-features::-webkit-scrollbar {
    height: 4px;
  }

  .scale-features::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
  }

  .scale-features::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
  }

  .scale-card {
    min-width: 280px;
    scroll-snap-align: start;
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .scale-card-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .scale-card-title,
  .scale-card-description {
    text-align: center;
  }

  .scale-trust-line {
    padding-top: 32px;
  }

  .scale-trust-text {
    font-size: 14px;
  }
}

/* Pricing Plans Section – Scrollable Feature Cards */
.pricing-plans-section {
  background-color: #ffffff;
  padding: 30px 0;
}

.pricing-plans-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.plans-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.plans-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto 64px;
  align-items: start;
}

/* Fixed Height Card Structure */
.pricing-plan-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 640px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.pricing-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(147, 51, 234, 0.3);
}

/* Premium Plan - Highlighted */
.plan-premium {
  border: 2px solid rgba(147, 51, 234, 0.4);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(147, 51, 234, 0.15);
  overflow: visible;
}

.plan-premium:hover {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 16px 48px rgba(147, 51, 234, 0.25);
  border-color: rgba(147, 51, 234, 0.5);
}

/* Most Popular Badge */
.plan-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
  z-index: 10;
  white-space: nowrap;
}

/* Card Header (Fixed) */
.plan-card-header {
  padding: 32px 28px 24px;
  flex-shrink: 0;
}

.plan-badge {
  background: rgba(147, 51, 234, 0.1);
  color: #9333ea;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  width: fit-content;
  margin-bottom: 12px;
}

.plan-description {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* Scrollable Features Container */
.plan-features-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 28px;
  margin: 0;
  scroll-behavior: smooth;
  /* Thin scrollbar for Firefox */
  scrollbar-width: thin;
  scrollbar-color: rgba(147, 51, 234, 0.15) transparent;
}

/* Custom scrollbar for Webkit browsers */
.plan-features-container::-webkit-scrollbar {
  width: 6px;
}

.plan-features-container::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

.plan-features-container::-webkit-scrollbar-thumb {
  background: rgba(147, 51, 234, 0.15);
  border-radius: 10px;
  transition: background 0.3s ease;
}

/* More visible scrollbar on hover */
.pricing-plan-card:hover .plan-features-container::-webkit-scrollbar-thumb {
  background: rgba(147, 51, 234, 0.3);
}

.plan-features-container::-webkit-scrollbar-thumb:hover {
  background: rgba(147, 51, 234, 0.5);
}

/* Features List */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 8px;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.pricing-plan-card:hover .plan-feature {
  opacity: 1;
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #10b981;
  margin-top: 2px;
}

/* Card Footer (Fixed at Bottom) */
.plan-card-footer {
  padding: 20px 28px 28px;
  flex-shrink: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  margin-top: auto;
  border-radius: 0 0 20px 20px;
}

.plan-btn {
  background: #111827;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: #1f2937;
}

.plan-btn-premium {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.3);
}

.plan-btn-premium:hover {
  background: linear-gradient(135deg, #7c3aed, #db2777);
  box-shadow: 0 6px 24px rgba(147, 51, 234, 0.4);
}

.plan-btn-basic,
.plan-btn-custom {
  background: #ffffff;
  color: #111827;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.plan-btn-basic:hover,
.plan-btn-custom:hover {
  background: #f9fafb;
  border-color: rgba(147, 51, 234, 0.3);
  color: #9333ea;
}

.plan-cta-note {
  font-size: 0.8125rem;
  color: #9ca3af;
  text-align: center;
  margin: 0;
}

/* Trust Strip */
.pricing-plans-trust {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-plans-trust-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.2px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pricing-plans-grid {
    max-width: 100%;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .pricing-plans-section {
    padding: 40px 0;
  }
  .pricing-plans-header {
    margin-bottom: 48px;
  }
  .plans-heading {
    font-size: 2rem;
  }
  .plans-subtitle {
    font-size: 1rem;
  }
  .pricing-plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-plan-card {
    height: auto;
    min-height: 580px;
    max-height: 640px;
  }
  .plan-premium {
    transform: scale(1);
    overflow: visible;
    margin-top: 16px;
  }
  .plan-premium .plan-popular-badge {
    top: -16px;
    transform: translateX(-50%);
    z-index: 10;
  }
  .plan-card-header {
    padding: 28px 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .plan-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .plan-description {
    text-align: center;
  }
  .plan-price {
    justify-content: center;
  }
  .plan-features-container {
    padding: 0 24px;
  }
  .plan-features {
    text-align: left;
  }
  .plan-feature {
    justify-content: flex-start;
  }
  .plan-card-footer {
    padding: 20px 24px 24px;
    text-align: center;
  }
  .plan-cta-note {
    text-align: center;
  }
  .price-amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .pricing-plan-card {
    min-height: 520px;
  }
  .price-amount {
    font-size: 2.25rem;
  }
}

/* FAQ Section – Modern SaaS Dark Theme (legacy, scoped to .faq-section-dark only) */
.faq-section-dark {
  background: #0a0a0f;
  background-image:
    radial-gradient(
      ellipse 80% 60% at 20% 30%,
      rgba(139, 92, 246, 0.15),
      transparent 60%
    ),
    radial-gradient(
      ellipse 70% 50% at 80% 70%,
      rgba(59, 130, 246, 0.12),
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 50% 50%,
      rgba(168, 85, 247, 0.1),
      transparent 65%
    );
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.faq-section-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Split Layout */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Left Side - Heading & Description */
.faq-left {
  position: sticky;
  top: 120px;
}

.faq-heading {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.faq-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* Right Side - Glassmorphism Accordion */
.faq-right {
  position: relative;
}

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

/* Glassmorphism FAQ Item */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
  overflow: hidden;
  position: relative;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 92, 246, 0.5),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.15) inset;
  transform: translateY(-2px);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow:
    0 12px 40px rgba(139, 92, 246, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.faq-item.active::before {
  opacity: 1;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 92, 246, 0.8),
    transparent
  );
}

/* Question Row */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  user-select: none;
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.faq-question-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: rgba(139, 92, 246, 0.8);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.faq-item.active .faq-question-icon {
  color: #8b5cf6;
  transform: scale(1.1);
}

.faq-text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-item.active .faq-text {
  color: #ffffff;
}

/* Toggle Button */
.faq-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.faq-toggle:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  transform: scale(1.05);
}

.faq-toggle.active {
  background: rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.5);
  transform: rotate(45deg);
}

.faq-toggle.active:hover {
  background: rgba(139, 92, 246, 0.4);
  border-color: rgba(139, 92, 246, 0.6);
  transform: rotate(45deg) scale(1.05);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.faq-toggle.active .faq-icon {
  color: #ffffff;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s ease,
    opacity 0.4s ease;
  padding: 0;
  opacity: 0;
  visibility: hidden;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 0 0 0;
  opacity: 1;
  visibility: visible;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
  padding-left: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .faq-layout {
    gap: 60px;
  }
}

@media (max-width: 968px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-left {
    position: static;
    text-align: center;
  }

  .faq-heading {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 0;
  }

  .faq-heading {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .faq-description {
    font-size: 1rem;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-text {
    font-size: 1rem;
  }

  .faq-answer p {
    padding-left: 0;
    font-size: 0.875rem;
  }

  .faq-question-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 64px 0;
  }

  .faq-item {
    padding: 16px;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }
}

/* Selling Products Section */
.selling-section {
  background-color: #f9fafb;
  padding: 50px 0;
}

.selling-header {
  text-align: center;
  margin-bottom: 80px;
}

.selling-label {
  font-size: 14px;
  font-weight: 600;
  color: #9333ea;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px 0;
}

.selling-headline {
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
  margin: 0;
}

/* Use Cases Section – Reference layout: header + 4 colored cards */
.use-cases-section.selling-section {
  background: #ffffff;
  padding: 64px 0 80px;
  position: relative;
  padding-left: 40px;
}

.use-cases-vertical-label {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
  letter-spacing: 0.02em;
  white-space: nowrap;
  z-index: 0;
}

.use-cases-section .use-cases-container {
  position: relative;
  z-index: 1;
}

.use-cases-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1470px;
  margin: 0 auto 64px;
}

.use-cases-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.use-cases-header-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.use-cases-description {
  font-size: 17px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

.use-cases-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  align-self: flex-start;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.use-cases-cta-btn:hover {
  background: #1f2937;
  color: #ffffff;
}

.use-cases-section .use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1470px;
  margin: 0 auto;
  min-height: 0;
  padding: 0;
}

.use-cases-section .use-case-card {
  position: relative;
  width: 100%;
  min-height: 350px;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.use-case-card-icon {
  margin-bottom: 16px;
}

.use-case-card-icon .icon {
  color: currentColor;
  opacity: 0.9;
}

.use-cases-section .use-case-card--teal .use-case-card-icon .icon,
.use-cases-section .use-case-card--brown .use-case-card-icon .icon {
  color: #ffffff;
}

.use-cases-section .use-case-card--pink .use-case-card-icon .icon,
.use-cases-section .use-case-card--green .use-case-card-icon .icon {
  color: #1a1a2e;
}

/* Card 1 – Dark teal/blue (reference) */
.use-cases-section .use-case-card--teal {
  background: #1e5d6d;
}

.use-cases-section .use-case-card--teal .use-case-card-title,
.use-cases-section .use-case-card--teal .use-case-card-desc {
  color: #ffffff;
}

/* Card 2 – Light pink (reference) */
.use-cases-section .use-case-card--pink {
  background: #fecdd9;
}

.use-cases-section .use-case-card--pink .use-case-card-title,
.use-cases-section .use-case-card--pink .use-case-card-desc {
  color: #000000;
}

/* Card 3 – Light green (reference) */
.use-cases-section .use-case-card--green {
  background: #d4edda;
}

.use-cases-section .use-case-card--green .use-case-card-title,
.use-cases-section .use-case-card--green .use-case-card-desc {
  color: #000000;
}

/* Card 4 – Dark reddish-brown (reference) */
.use-cases-section .use-case-card--brown {
  background: #803429;
}

.use-cases-section .use-case-card--brown .use-case-card-title,
.use-cases-section .use-case-card--brown .use-case-card-desc {
  color: #ffffff;
}

.use-case-card-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px 0;
}

.use-case-card-desc {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

.use-case-card-desc u {
  text-underline-offset: 2px;
}

@media (max-width: 1024px) {
  .use-cases-header-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .use-cases-section .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .use-cases-section .use-case-card {
    min-height: 240px;
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .use-cases-section.selling-section {
    padding: 48px 0 64px;
  }

  .use-cases-vertical-label {
    font-size: 11px;
    left: -4px;
  }

  .use-cases-header-grid {
    margin-bottom: 40px;
  }

  .use-cases-headline {
    font-size: 28px;
  }

  .use-cases-description {
    font-size: 15px;
  }

  .use-cases-section .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .use-cases-section .use-case-card {
    min-height: 200px;
    padding: 22px 20px;
    align-items: center;
    text-align: center;
  }

  .use-case-card-title {
    font-size: 1.125rem;
  }

  .use-case-card-desc {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .use-cases-vertical-label {
    display: none;
  }
}

.selling-content {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

/* Center Background Image */
.selling-center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 50%;
  height: auto;
  max-width: 500px;
  z-index: 1;
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  filter: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Center Circle */
.selling-center {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9333ea 0%, #6b21a8 100%);
  box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
  position: relative;
  z-index: 2;
}

/* Website Header */
.website-header {
  background: #f9fafb;
  padding: 8px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.header-contact {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  font-size: 10px;
  color: #6b7280;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Navigation Bar */
.website-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

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

.nav-link-item {
  font-size: 11px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-link-item:hover {
  color: #3b82f6;
}

.search-box {
  display: flex;
  align-items: center;
  background: #f3f4f6;
  border-radius: 6px;
  padding: 6px 12px;
  gap: 8px;
  flex: 1;
  max-width: 200px;
  margin-left: 20px;
}

.search-input {
  border: none;
  background: transparent;
  font-size: 10px;
  color: #6b7280;
  flex: 1;
  outline: none;
}

.search-input::placeholder {
  color: #9ca3af;
}

.search-icon {
  font-size: 12px;
  color: #6b7280;
}

/* Product Banner */
.product-banner {
  flex: 1;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.banner-content {
  flex: 1;
  z-index: 2;
}

.banner-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.banner-description {
  font-size: 11px;
  color: #d1d5db;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.banner-btn {
  background-color: #f97316;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.banner-btn:hover {
  background-color: #ea580c;
}

.banner-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.product-image-macbook {
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-image-macbook::before {
  content: "💻";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
}

/* Corner Cards Positioning */
.selling-card {
  position: absolute;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 2;
  width: 420px;
  height: 320px;
  display: flex;
  flex-direction: column;
  z-index: 3;
  overflow: hidden;
}

.selling-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.15;
  transition: opacity 0.5s ease;
}

.selling-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Top Left Card */
.selling-card-top-left {
  top: 0;
  left: 0;
}

/* Top Right Card */
.selling-card-top-right {
  top: 0;
  right: 0;
}

/* Bottom Left Card */
.selling-card-bottom-left {
  bottom: 0;
  left: 0;
}

/* Bottom Right Card */
.selling-card-bottom-right {
  bottom: 0;
  right: 0;
}

/* Connecting Lines SVG Container */
.connecting-lines-svg {
  position: absolute;
  top: 0;
  left: 5px;
  width: 99%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

/* Wave Path Styling */
.wave-path {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  animation: waveFlow 4s ease-in-out infinite;
}

.wave-path-1 {
  animation-delay: 0s;
}

.wave-path-2 {
  animation-delay: 1s;
}

.wave-path-3 {
  animation-delay: 2s;
}

.wave-path-4 {
  animation-delay: 3s;
}

/* Wave Flow Animation */
@keyframes waveFlow {
  0% {
    stroke-dasharray: 0 2000;
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    stroke-dasharray: 2000 0;
    opacity: 0.7;
  }
}

/* Box Color Change Animation based on Line Flow */
.selling-card-top-left::before {
  background: linear-gradient(
    135deg,
    #9333ea 0%,
    #6b21a8 25%,
    #f59e0b 50%,
    #ef4444 75%,
    #9333ea 100%
  );
  background-size: 400% 400%;
  animation: boxColorFlow1 4s linear infinite;
}

.selling-card-top-right::before {
  background: linear-gradient(
    135deg,
    #3b82f6 0%,
    #2563eb 25%,
    #10b981 50%,
    #059669 75%,
    #3b82f6 100%
  );
  background-size: 400% 400%;
  animation: boxColorFlow2 4s linear infinite;
}

.selling-card-bottom-left::before {
  background: linear-gradient(
    135deg,
    #10b981 0%,
    #059669 25%,
    #9333ea 50%,
    #6b21a8 75%,
    #10b981 100%
  );
  background-size: 400% 400%;
  animation: boxColorFlow3 4s linear infinite;
}

.selling-card-bottom-right::before {
  background: linear-gradient(
    135deg,
    #f59e0b 0%,
    #ef4444 25%,
    #3b82f6 50%,
    #2563eb 75%,
    #f59e0b 100%
  );
  background-size: 400% 400%;
  animation: boxColorFlow4 4s linear infinite;
}

@keyframes boxColorFlow1 {
  0% {
    background-position: 0% 50%;
    opacity: 0.1;
  }
  25% {
    background-position: 100% 50%;
    opacity: 0.25;
  }
  50% {
    background-position: 200% 50%;
    opacity: 0.15;
  }
  75% {
    background-position: 300% 50%;
    opacity: 0.2;
  }
  100% {
    background-position: 400% 50%;
    opacity: 0.1;
  }
}

@keyframes boxColorFlow2 {
  0% {
    background-position: 400% 50%;
    opacity: 0.1;
  }
  25% {
    background-position: 300% 50%;
    opacity: 0.25;
  }
  50% {
    background-position: 200% 50%;
    opacity: 0.15;
  }
  75% {
    background-position: 100% 50%;
    opacity: 0.2;
  }
  100% {
    background-position: 0% 50%;
    opacity: 0.1;
  }
}

@keyframes boxColorFlow3 {
  0% {
    background-position: 0% 50%;
    opacity: 0.1;
  }
  25% {
    background-position: 100% 50%;
    opacity: 0.25;
  }
  50% {
    background-position: 200% 50%;
    opacity: 0.15;
  }
  75% {
    background-position: 300% 50%;
    opacity: 0.2;
  }
  100% {
    background-position: 400% 50%;
    opacity: 0.1;
  }
}

@keyframes boxColorFlow4 {
  0% {
    background-position: 400% 50%;
    opacity: 0.1;
  }
  25% {
    background-position: 300% 50%;
    opacity: 0.25;
  }
  50% {
    background-position: 200% 50%;
    opacity: 0.15;
  }
  75% {
    background-position: 100% 50%;
    opacity: 0.2;
  }
  100% {
    background-position: 0% 50%;
    opacity: 0.1;
  }
}

.card-title-selling {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.card-description-selling {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
  flex: 1;
  overflow: hidden;
}

/* Responsive Design for Selling Section */
@media (max-width: 1200px) {
  .selling-content {
    min-height: 700px;
    padding: 80px 20px;
  }

  .selling-card {
    width: 280px;
    height: 260px;
    padding: 24px;
  }

  .connecting-line-top-left,
  .connecting-line-top-right,
  .connecting-line-bottom-left,
  .connecting-line-bottom-right {
    width: calc(50vw - 400px);
    max-width: 200px;
  }

  .selling-headline {
    font-size: 40px;
  }

  .center-circle {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 968px) {
  .selling-content {
    min-height: 600px;
    padding: 40px 20px;
    position: relative;
  }

  /* Center image - Made bigger for better visibility on tablets */
  .selling-center-image {
    width: 50%;
    max-width: 220px;
    min-width: 180px;
    z-index: 1;
  }

  /* Cards - Reduced size for better spacing */
  .selling-card {
    position: absolute;
    width: 35%;
    max-width: 145px;
    height: auto;
    min-height: 150px;
    max-height: 170px;
    padding: 14px;
    z-index: 2;
  }

  .selling-card-top-left,
  .selling-card-top-right,
  .selling-card-bottom-left,
  .selling-card-bottom-right {
    width: 35%;
    max-width: 145px;
    height: auto;
    min-height: 150px;
    max-height: 170px;
    padding: 14px;
    position: absolute;
    z-index: 2;
  }

  .selling-card-top-left {
    top: 15px;
    left: 15px;
  }

  .selling-card-top-right {
    top: 15px;
    right: 15px;
  }

  .selling-card-bottom-left {
    bottom: 15px;
    left: 15px;
  }

  .selling-card-bottom-right {
    bottom: 15px;
    right: 15px;
  }

  .connecting-lines-svg {
    display: block;
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .selling-section {
    padding: 40px 0;
    background-color: #ffffff;
  }

  .selling-section .container {
    padding: 0 15px;
  }

  .selling-header {
    margin-bottom: 30px;
  }

  .selling-label {
    font-size: 12px;
  }

  .selling-headline {
    font-size: 24px;
  }

  .selling-content {
    min-height: auto;
    padding: 0;
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Mobile: remove center image + connecting lines */
  .selling-center-image,
  .connecting-lines-svg {
    display: none !important;
  }

  /* Mobile: normal card alignment (no absolute positioning) */
  .selling-card {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    min-height: 170px;
    max-height: none;
    padding: 18px;
    margin: 0;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .selling-card-top-left,
  .selling-card-top-right,
  .selling-card-bottom-left,
  .selling-card-bottom-right {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .card-title-selling {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 700;
  }

  .card-description-selling {
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
  }
}

/* Testimonials Section – Featured + Secondary Slider (premium, conversion-focused) */
.testimonials-section {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  padding: 48px 0 64px;
  overflow-x: hidden;
  overflow-y: visible;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.community-badge {
  display: inline-block;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.testimonials-headline {
  font-size: 48px;
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.testimonials-subtitle {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Featured testimonial – large, highlighted, hierarchy: quote > stars > name > role > company */
.testimonial-featured {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px 56px 40px;
  margin-bottom: 48px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(87, 0, 153, 0.08);
  position: relative;
  overflow: hidden;
}

.testimonial-featured::before {
  content: '"';
  position: absolute;
  top: 24px;
  left: 32px;
  font-size: 72px;
  font-weight: 300;
  color: #570099;
  opacity: 0.12;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-featured-quote {
  font-size: 22px;
  line-height: 1.65;
  color: #374151;
  margin: 0 0 20px 0;
  font-style: normal;
  position: relative;
  z-index: 1;
}

.testimonial-featured-stars {
  font-size: 18px;
  color: #f59e0b;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.testimonial-featured-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-featured-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #e5e7eb;
}

.testimonial-featured-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-featured-name {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  font-style: normal;
}

.testimonial-featured-role {
  font-size: 14px;
  color: #6b7280;
}

.testimonial-featured-company {
  font-size: 14px;
  color: #570099;
  font-weight: 600;
}

/* Secondary testimonials – slider, contained scroll (no page horizontal scroll) */
.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0 24px 0;
  margin-bottom: 30px;
  contain: layout style;
}

.testimonials-carousel {
  display: flex;
  gap: 20px;
  padding: 8px 0 32px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  min-width: 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
}

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

/* Secondary card – quote > stars > name > role > company */
.testimonial-card {
  flex: 0 0 320px;
  min-width: 280px;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border-color: rgba(87, 0, 153, 0.12);
}

.testimonial-card.active {
  border-color: rgba(87, 0, 153, 0.2);
  box-shadow: 0 6px 24px rgba(87, 0, 153, 0.12);
}

.testimonial-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-stars {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #f3f4f6;
  background: #e5e7eb;
}

.testimonial-author-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testimonial-card .author-name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.testimonial-card .author-role {
  font-size: 13px;
  color: #6b7280;
}

.testimonial-card .author-company {
  font-size: 13px;
  color: #570099;
  font-weight: 600;
}

/* Navigation Controls */
.testimonials-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 0;
}

.testimonial-nav-btn {
  background: #ffffff;
  color: #570099;
  border: 2px solid #e5e7eb;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-nav-btn:hover {
  background: #570099;
  color: #ffffff;
  border-color: #570099;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(87, 0, 153, 0.3);
}

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

.testimonial-nav-btn svg {
  width: 20px;
  height: 20px;
}

.testimonial-progress {
  flex: 1;
  max-width: 400px;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}

.testimonial-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #570099 0%, #020241 100%);
  border-radius: 2px;
  width: 20%;
  transition: width 0.3s ease;
}

/* Trust Enhancers */
.testimonials-trust {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 1300px;
  margin: 0 auto;
}

.testimonials-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.rating-stars {
  font-size: 20px;
  color: #fbbf24;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 16px;
  color: #4b5563;
  margin: 0;
}

.rating-text strong {
  color: #1f2937;
  font-weight: 700;
}

.testimonials-trust-text {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
}

/* Responsive – Testimonials (featured + secondary slider) */
@media (max-width: 1200px) {
  .testimonials-headline {
    font-size: 42px;
  }

  .testimonial-featured {
    padding: 40px 40px 36px;
  }

  .testimonial-featured-quote {
    font-size: 20px;
  }

  .testimonial-card {
    flex: 0 0 300px;
    min-width: 260px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 0 48px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-headline {
    font-size: 32px;
    line-height: 1.2;
  }

  .testimonials-subtitle {
    font-size: 16px;
  }

  .testimonial-featured {
    padding: 32px 24px 28px;
    margin-bottom: 32px;
    border-radius: 24px;
  }

  .testimonial-featured::before {
    font-size: 56px;
    top: 16px;
    left: 20px;
  }

  .testimonial-featured-quote {
    font-size: 18px;
    line-height: 1.6;
  }

  .testimonial-featured-stars {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .testimonial-featured-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .testimonial-featured-avatar {
    width: 56px;
    height: 56px;
  }

  .testimonials-carousel-wrapper {
    padding: 0 16px;
    margin-bottom: 36px;
  }

  .testimonials-carousel {
    gap: 16px;
  }

  /* One secondary card per view on mobile; contained scroll */
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 24px 20px;
  }

  .testimonial-text {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .testimonials-navigation {
    gap: 16px;
  }

  .testimonial-progress {
    max-width: 180px;
  }

  .testimonials-trust {
    padding-top: 36px;
  }

  .testimonials-rating {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================
   Testimonials SaaS – Two-row infinite scroll
   ============================================ */
.testimonials-saas-section {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  padding: 20px 0 20px;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  max-width: 100%;
}

.testimonials-saas-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-saas-label {
  display: inline-block;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.testimonials-saas-headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Row – overflow hidden, full width */
.testimonial-row {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 24px;
}

.testimonial-row:last-of-type {
  margin-bottom: 0;
}

/* Track – flex, gap 24px, infinite scroll (JS duplicates cards for seamless loop) */
.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
}

/* Row 1: content scrolls left */
.row-1 .testimonial-track {
  animation: testimonialScrollLeft 40s linear infinite;
}

/* Row 2: content scrolls right */
.row-2 .testimonial-track {
  animation: testimonialScrollRight 40s linear infinite;
}

/* Pause on hover */
.testimonial-row:hover .testimonial-track {
  animation-play-state: paused;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .row-1 .testimonial-track,
  .row-2 .testimonial-track {
    animation: none;
  }
}

@keyframes testimonialScrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes testimonialScrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Card – fixed 320px, rounded, soft shadow, glass/soft white */
.testimonial-saas-card {
  flex: 0 0 320px;
  width: 320px;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.testimonial-saas-quote-icon {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 48px;
  line-height: 1;
  font-family: Georgia, serif;
  color: #94a3b8;
  opacity: 0.6;
}

.testimonial-saas-text {
  font-size: 15px;
  line-height: 1.55;
  color: #374151;
  margin: 0;
  padding-top: 8px;
  padding-left: 4px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-saas-keyword {
  color: #ea580c;
  font-weight: 600;
}

.testimonial-saas-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 4px 0;
}

.testimonial-saas-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-saas-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e5e7eb;
}

.testimonial-saas-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testimonial-saas-name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.testimonial-saas-role {
  font-size: 13px;
  color: #6b7280;
}

.testimonials-saas-trust {
  text-align: center;
  padding-top: 20px;
  margin-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonials-saas-trust-text {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

.testimonials-saas-trust-text strong {
  color: #1f2937;
  font-weight: 600;
}

/* Responsive – testimonials SaaS */
@media (max-width: 1200px) {
  .testimonial-track {
    gap: 24px;
  }
  .testimonial-saas-card {
    flex: 0 0 320px;
    width: 320px;
    min-width: 320px;
    padding: 20px 18px;
  }
  .testimonial-saas-text {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

@media (max-width: 768px) {
  .testimonials-saas-section {
    padding: 40px 16px 40px;
  }
  .testimonials-saas-section .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .testimonials-saas-header {
    margin-bottom: 32px;
  }
  .testimonials-saas-label {
    padding: 6px 14px;
    font-size: 11px;
  }
  .testimonial-row {
    margin-bottom: 20px;
  }
  .testimonial-track {
    gap: 24px;
  }
  .testimonial-saas-card {
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
    padding: 20px 16px;
    border-radius: 16px;
  }
  .testimonial-saas-quote-icon {
    font-size: 36px;
    top: 10px;
    left: 14px;
  }
  .testimonial-saas-text {
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    padding-top: 4px;
  }
  .testimonial-saas-author {
    flex-shrink: 0;
    margin-top: 8px;
  }
  .testimonial-saas-name {
    font-size: 14px;
  }
  .testimonial-saas-role {
    font-size: 12px;
  }
  .testimonials-saas-trust {
    padding-top: 32px;
    margin-top: 12px;
  }
  .testimonials-saas-trust-text {
    font-size: 14px;
  }
  /* Slightly slower on mobile so it’s less distracting */
  .row-1 .testimonial-track {
    animation-duration: 50s;
  }
  .row-2 .testimonial-track {
    animation-duration: 55s;
  }
}

@media (max-width: 480px) {
  .testimonials-saas-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .testimonial-saas-card {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
    padding: 18px 14px;
  }
  .testimonial-saas-quote-icon {
    font-size: 32px;
    top: 10px;
    left: 14px;
  }
  .testimonial-saas-text {
    font-size: 13px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .testimonial-saas-name {
    font-size: 14px;
  }
  .testimonial-saas-role {
    font-size: 12px;
  }
}

/* Footer Section – Premium SaaS Design */
.footer {
  width: 100%;
  background: #f9fafb;
  padding: 60px 0 120px; /* Reduced top padding, increased bottom padding to show watermark properly */
  position: relative;
  overflow: hidden; /* Hide overflow to crop watermark text - only bottom portion visible */
  min-height: 500px; /* Ensure enough space for watermark */
}

/* Oversized ZIPLOFY Brand Watermark at Footer Bottom - Exact Reference Style (like wavespace) */
.footer::after {
  content: "ZIPLOFY";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(200px, 28vw, 300px);
  font-weight: 900;
  font-family: "Satoshi", sans-serif;
  color: rgba(0, 0, 0, 0.18);
  letter-spacing: clamp(10px, 2vw, 15px);
  line-height: 0.7;
  white-space: nowrap;
  z-index: 8;
  pointer-events: none;
  user-select: none;
  /* Only bottom portion visible - creates watermark effect exactly like wavespace */
  height: auto;
  overflow: visible;
  opacity: 0.2;
  text-transform: uppercase;
  /* Ensure it spans full width */
  width: 100%;
  text-align: center;
  /* Bold, prominent look like wavespace reference - dark color for proper visibility */
  font-style: normal;
  text-shadow: none;
  /* Match reference positioning - bottom aligned */
  transform-origin: center bottom;
  /* Ensure proper visibility with dark color */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 1570px;
  margin: 0 auto;
  position: relative;
  z-index: 2; /* Ensure content is above watermark */
  margin-top: -20px; /* Move footer content up */
}

/* Top Section: Brand & CTA */
.footer-top-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Brand Section */
.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.footer-description {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

/* CTA Section */
.footer-cta-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.footer-cta-heading {
  font-size: 1.75rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
}

.footer-cta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer-cta-button:hover .footer-cta-icon {
  transform: rotate(45deg);
}

/* Footer Links Section - 5 Column Grid */
.footer-links-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-link-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Company Section - Now part of 5-column grid, keep for backwards compatibility */
.footer-company-section {
  display: none;
}

.footer-column-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9375rem;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
  width: fit-content;
  line-height: 1.6;
}

.footer-link:hover {
  color: #111827;
  transform: translateX(3px);
}

/* Newsletter Section */
.footer-newsletter-section {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-newsletter-form:focus-within {
  border-color: rgba(234, 179, 8, 0.4);
  box-shadow: 0 4px 16px rgba(234, 179, 8, 0.15);
}

.footer-newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 20px;
  font-size: 0.9375rem;
  color: #111827;
  outline: none;
  font-family: inherit;
}

.footer-newsletter-input::placeholder {
  color: #9ca3af;
}

.footer-newsletter-button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.2);
}

.footer-newsletter-button:hover {
  background: #fbbf24;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.footer-newsletter-button:active {
  transform: scale(0.98);
}

.footer-newsletter-button svg {
  transition: transform 0.3s ease;
  color: #fff;
}

.footer-newsletter-button:hover svg {
  transform: translateX(2px);
}

/* Bottom Section: Social & Legal */
.footer-bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
  color: #111827;
  background: rgba(255, 255, 255, 0.9);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-link {
  font-size: 0.875rem;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.footer-legal-link:hover {
  color: #111827;
  transform: translateY(-1px);
}

.footer-legal-separator {
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 300;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
  .footer-container {
    padding: 56px 48px;
  }

  .footer-top-section {
    gap: 60px;
  }

  .footer-links-section {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .footer {
    padding: 30px 0 110px; /* Reduced top padding, increased bottom padding */
    min-height: 500px;
  }

  .footer-container {
    margin-top: -15px; /* Move footer content up on tablet */
  }

  .footer-container {
    padding: 48px 40px;
  }

  .footer-top-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-cta-section {
    align-items: flex-start;
  }

  .footer-links-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }

  .footer-company-section {
    display: none;
  }

  .footer-bottom-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-legal-links {
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 15px 0 120px; /* Increased bottom padding to accommodate full watermark */
    min-height: 500px; /* Increased min-height to show full text */
  }

  .footer-container {
    margin-top: -15px; /* Move footer content up on mobile to avoid overlap */
  }

  .footer::after {
    font-size: clamp(
      50px,
      15vw,
      70px
    ); /* Adjusted to fit mobile screen width */
    letter-spacing: clamp(
      -2px,
      -0.8vw,
      -5px
    ); /* Tighter spacing to fit full word */
    bottom: -20px; /* Moved up to show full text properly visible */
    color: rgba(
      0,
      0,
      0,
      0.2
    ); /* Darker color for better visibility on mobile */
    opacity: 1;
    /* Ensure text fits within viewport */
    max-width: 100vw;
    overflow: visible;
    white-space: nowrap;
    padding: 0 10px;
    box-sizing: border-box;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    text-align: center;
  }

  .footer-container {
    padding: 40px 32px;
    border-radius: 20px;
  }

  .footer-top-section {
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 48px;
  }

  .footer-cta-heading {
    font-size: 1.5rem;
  }

  .footer-links-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .footer-company-section {
    display: none;
  }

  .footer-newsletter-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .footer-newsletter-form {
    max-width: 100%;
  }

  .footer-bottom-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-legal-links {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 15px 0 100px; /* Increased bottom padding to accommodate full watermark */
    min-height: 420px; /* Increased min-height to show full text */
  }

  .footer-container {
    margin-top: -10px; /* Move footer content up on small mobile */
  }

  .footer::after {
    font-size: clamp(
      65px,
      20vw,
      90px
    ); /* Smaller font size to fit small mobile screens */
    letter-spacing: clamp(
      -5px,
      -0.7vw,
      -8px
    ); /* Tighter spacing to ensure full word visibility */
    bottom: 12px; /* Moved up to show full text properly visible including 'Y' */
    color: rgba(
      0,
      0,
      0,
      0.2
    ); /* Darker color for clear visibility on small mobile */
    opacity: 0.3;
    /* Ensure text fits within viewport - prevent cutoff */
    max-width: 100vw;
    overflow: visible;
    white-space: nowrap;
    padding: 0 12px;
    box-sizing: border-box;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    text-align: center;
  }

  .footer-container {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .footer-top-section {
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .footer-cta-heading {
    font-size: 1.25rem;
  }

  .footer-cta-button {
    padding: 12px 24px;
    font-size: 0.9375rem;
  }

  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-company-section {
    display: none;
  }

  .footer-cta-icon {
    width: 32px;
    height: 32px;
  }

  .team-avatar {
    width: 28px;
    height: 28px;
  }

  .footer-links-section {
    gap: 28px;
  }

  .footer-column-title {
    font-size: 0.8125rem;
  }

  .footer-link {
    font-size: 0.875rem;
  }

  .footer-newsletter-input {
    padding: 12px 16px;
    font-size: 0.875rem;
  }

  .footer-newsletter-button {
    width: 44px;
    height: 44px;
  }

  .footer-social-icon {
    width: 36px;
    height: 36px;
  }

  .footer-legal-link {
    font-size: 0.8125rem;
  }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #1f2937;
  padding: 8px;
}

/* Tablet Styles (max-width: 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .hero-section {
    padding: 50px 0 70px;
  }

  .about-hero-section {
    padding: 44px 0 60px;
  }

  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-hero-headline {
    font-size: 38px;
  }

  .about-hero-right {
    order: -1;
  }

  .about-hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left::before {
    left: -32px;
    right: -32px;
  }

  .hero-headline {
    font-size: 44px;
  }

  .hero-right {
    height: 450px;
    order: -1;
  }

  .floating-card {
    display: none;
  }

  .mission-vision-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-vision-left {
    order: 2;
  }

  .mission-vision-right {
    order: 1;
  }

  .grow-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .grow-brand-column {
    order: 1;
  }

  .grow-cards-column {
    order: 2;
    gap: 24px;
  }

  /* Remove floating offsets on tablet - normal stacking */
  .grow-card-float-up,
  .grow-card-float-center,
  .grow-card-float-down {
    transform: translateY(0) !important;
    margin-top: 0;
    margin-bottom: 0;
  }

  .why-choose-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-card-hero,
  .why-choose-card-2,
  .why-choose-card-3,
  .why-choose-card-4,
  .why-choose-card-5,
  .why-choose-card-6 {
    grid-column: 1;
    grid-row: auto;
  }

  .why-choose-card-hero .why-choose-card-content {
    gap: 24px;
  }

  .india-map-illustration {
    max-width: 100%;
    height: auto;
  }

  .india-map-illustration svg {
    width: 100%;
    height: auto;
  }

  .why-choose-title {
    font-size: clamp(36px, 6vw, 44px);
    margin-bottom: 60px;
  }

  .media-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .media-section-title {
    font-size: 44px;
  }

  .media-card-header {
    padding: 36px 28px 28px;
  }

  .media-card-name {
    font-size: 28px;
  }

  .media-card-body {
    padding: 0 28px 32px;
    gap: 18px;
  }

  .media-card-headline {
    font-size: 20px;
  }

  .mission-vision-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mission-headline {
    font-size: 2rem;
  }

  .mission-image {
    max-height: 420px;
  }

  .mission-floating-card--1 {
    left: 16px;
  }

  .mission-floating-card--2 {
    right: 16px;
  }

  .grow-brand-headline {
    font-size: clamp(32px, 5vw, 44px);
  }

  .why-choose-title {
    font-size: clamp(32px, 5vw, 36px);
    margin-bottom: 60px;
  }

  .header-content {
    gap: 24px;
  }

  .nav {
    gap: 4px;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 14px;
  }

  .btn-get-started {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
  /* Prevent horizontal scroll on mobile - but allow vertical scrolling */
  html {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    position: relative;
    /* Smooth scrolling for mobile */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  body {
    overflow-x: hidden;
    overflow-y: auto !important;
    width: 100%;
    max-width: 100%;
    position: relative;
    /* Ensure smooth scrolling on mobile */
    -webkit-overflow-scrolling: touch;
    /* Allow natural scrolling behavior */
    overscroll-behavior-y: auto;
    /* Prevent any height restrictions */
    min-height: 100vh;
    height: auto;
  }

  /* Ensure all sections don't overflow horizontally but allow vertical scrolling */
  section {
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
  }

  /* Contact page hero section - mobile scrolling fixes */
  .contact-intro-section {
    overflow: visible !important;
    min-height: auto !important;
    height: auto !important;
    position: relative;
    width: 100%;
    max-width: 100%;
    /* Prevent any transform that blocks scrolling */
    transform: none !important;
    /* Ensure proper z-index */
    z-index: 1;
    /* Remove any contain that might block scrolling */
    contain: none;
    /* Prevent fixed positioning issues */
    will-change: auto;
  }

  .contact-intro-section::before,
  .contact-intro-section::after {
    /* Ensure pseudo-elements don't block scrolling */
    pointer-events: none;
    position: absolute;
    z-index: 0;
  }

  .contact-intro-content {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    position: relative;
    z-index: 2;
    /* Stack content vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Prevent transform issues */
    transform: none;
    will-change: auto;
  }

  .contact-intro-title,
  .contact-intro-description {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
  }

  /* Ensure images scale correctly and don't block scrolling */
  .contact-intro-section img {
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    /* Prevent transform issues */
    transform: none;
    will-change: auto;
  }

  /* Disable animations that might interfere with scrolling on mobile */
  .contact-intro-section * {
    /* Reduce animation complexity on mobile for smoother scrolling */
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.2s;
  }

  /* Container */
  .container {
    padding: 0 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* Fix elements that might cause overflow */
  .header-content,
  .hero-content,
  .automation-content,
  .themes-content,
  .selling-content {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Header */
  body {
    padding-top: 64px;
  }

  .header {
    padding: 12px 0;
  }

  .header.scrolled {
    padding: 10px 0;
  }

  .header-content {
    position: relative;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .logo-img {
    height: 32px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .mobile-drawer-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 998;
  }

  .header.menu-open .mobile-drawer-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .header-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(82vw, 340px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.16);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    transform: translate3d(-105%, 0, 0);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 20px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    justify-content: flex-start;
  }

  /* Mobile Menu Logo */
  .mobile-menu-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
    flex-shrink: 0;
  }

  .mobile-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
  }

  .header.menu-open .header-drawer {
    transform: translate3d(0, 0, 0);
  }

  .header-drawer .nav {
    position: static;
    flex: 1 1 auto;
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
    display: flex;
    max-height: none;
    overflow-y: auto;
    margin-top: 0;
    min-height: 0;
  }

  .nav-link {
    font-size: 16px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: left;
  }

  .nav-link::before {
    display: none;
  }

  .btn-get-started {
    padding: 12px 20px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
    margin-top: auto;
    align-self: stretch;
    flex-shrink: 0;
    margin-bottom: 0;
    order: 999;
  }

  /* Hero Section */
  .hero-section {
    padding: 0;
    min-height: auto;
  }

  .about-hero-section {
    padding: 20px 0 20px;
  }

  .about-hero-headline {
    font-size: 28px;
    line-height: 1.25;
  }

  .about-hero-subtext {
    font-size: 16px;
  }

  .about-hero-stat-value {
    font-size: 18px;
  }

  .about-hero-stat-label {
    font-size: 12px;
  }

  .about-hero-visual {
    max-width: 100%;
  }

  .about-hero-section .hero-about-image {
    max-height: 320px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-left {
    max-width: 100%;
    gap: 24px;
  }

  .hero-left::before {
    left: -20px;
    right: -20px;
    top: -100px;
    bottom: -100px;
  }

  .hero-eyebrow {
    font-size: 12px;
  }

  .hero-headline {
    font-size: 36px;
    line-height: 1.15;
  }

  .hero-description {
    font-size: 17px;
    line-height: 1.6;
  }

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
  }

  .hero-trust-text {
    font-size: 13px;
    text-align: center;
  }

  .hero-right {
    height: 300px;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    overflow: visible;
  }

  .mockup-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
  }

  .mockup-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
  }

  .dashboard-mockup {
    transform: scale(0.98) translateY(0) !important;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    /* Improved blending with background - softer shadows and smoother fade for mobile */
    mix-blend-mode: normal;
    filter: drop-shadow(0 8px 30px rgba(37, 99, 235, 0.08))
      drop-shadow(0 4px 12px rgba(99, 102, 241, 0.06))
      drop-shadow(0 0 6px rgba(139, 92, 246, 0.04));
    /* Smooth gradient fade at bottom for better blend - more gradual for mobile */
    mask-image: linear-gradient(
      to bottom,
      black 0%,
      black 60%,
      rgba(0, 0, 0, 0.98) 70%,
      rgba(0, 0, 0, 0.92) 78%,
      rgba(0, 0, 0, 0.82) 84%,
      rgba(0, 0, 0, 0.68) 89%,
      rgba(0, 0, 0, 0.5) 93%,
      rgba(0, 0, 0, 0.32) 96%,
      rgba(0, 0, 0, 0.18) 98%,
      rgba(0, 0, 0, 0.08) 99.5%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      black 0%,
      black 60%,
      rgba(0, 0, 0, 0.98) 70%,
      rgba(0, 0, 0, 0.92) 78%,
      rgba(0, 0, 0, 0.82) 84%,
      rgba(0, 0, 0, 0.68) 89%,
      rgba(0, 0, 0, 0.5) 93%,
      rgba(0, 0, 0, 0.32) 96%,
      rgba(0, 0, 0, 0.18) 98%,
      rgba(0, 0, 0, 0.08) 99.5%,
      transparent 100%
    );
    /* Ensure proper alignment */
    margin: 0 auto;
    display: block;
  }

  .floating-card {
    display: none;
  }

  .hero-about-image {
    max-width: 100%;
    max-height: 450px;
  }

  /* Mission & Vision Section */
  .mission-vision-section {
    padding: 64px 24px;
  }

  .mission-vision-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-vision-left {
    order: 1;
  }

  .mission-vision-right {
    order: 2;
    gap: 24px;
  }

  .mission-headline {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .mission-intro {
    font-size: 1rem;
  }

  .mission-card {
    padding: 20px;
  }

  .mission-card-title {
    font-size: 1rem;
  }

  .mission-card-text {
    font-size: 0.875rem;
  }

  .mission-cta-section {
    gap: 12px;
  }

  .btn-get-in-touch {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .mission-secondary-cta {
    font-size: 0.875rem;
  }

  .mission-image {
    max-height: 360px;
  }

  .mission-floating-card {
    padding: 12px 16px;
  }

  .mission-floating-card--1 {
    top: 16px;
    left: 12px;
  }

  .mission-floating-card--2 {
    bottom: 20px;
    right: 12px;
  }

  .mission-floating-text {
    font-size: 0.8125rem;
  }

  /* Grow Section */
  .grow-section {
    padding: 40px 0;
  }

  .grow-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .grow-brand-column {
    order: 1;
  }

  .grow-cards-column {
    order: 2;
    gap: 24px;
  }

  /* Remove floating offsets on mobile - normal stacking */
  .grow-card-float-up,
  .grow-card-float-center,
  .grow-card-float-down {
    transform: translateY(0) !important;
    margin-top: 0;
    margin-bottom: 0;
  }

  .grow-brand-headline {
    font-size: clamp(32px, 5vw, 40px);
  }

  .grow-brand-description {
    font-size: 17px;
  }

  .grow-value-card {
    padding: 36px 32px;
  }

  .grow-value-title {
    font-size: 20px;
  }

  .grow-value-description {
    font-size: 15px;
  }

  /* Why Choose Section */
  .why-choose-section {
    padding: 0;
  }

  .why-choose-title {
    font-size: clamp(32px, 6vw, 36px);
    margin-bottom: 50px;
    line-height: 1.2;
  }

  .why-choose-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-card-hero,
  .why-choose-card-2,
  .why-choose-card-3,
  .why-choose-card-4,
  .why-choose-card-5,
  .why-choose-card-6 {
    grid-column: 1;
    grid-row: auto;
  }

  .why-choose-card-hero .why-choose-card-content {
    gap: 24px;
  }

  .why-choose-card {
    padding: 32px 28px;
  }

  .why-choose-card-hero .why-choose-card-title {
    font-size: clamp(24px, 5vw, 28px);
  }

  .why-choose-card-hero .why-choose-card-description {
    font-size: 16px;
  }

  .why-choose-card-icon {
    margin-bottom: 12px;
  }

  .why-choose-card-title {
    font-size: 20px;
  }

  .why-choose-card-description {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Media Section */
  .media-section {
    padding: 40px 0;
  }

  .media-section-title {
    font-size: 36px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }

  .media-section-subtitle {
    font-size: 16px;
    margin-bottom: 48px;
  }

  .media-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .media-card {
    border-radius: 18px;
  }

  .media-card-header {
    padding: 32px 24px 24px;
    border-radius: 18px 18px 0 0;
  }

  .media-card-name {
    font-size: 26px;
    letter-spacing: -0.01em;
  }

  .media-card-body {
    padding: 0 24px 28px;
    gap: 16px;
  }

  .media-card-headline {
    font-size: 20px;
    line-height: 1.3;
  }

  .media-card-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .media-read-more {
    font-size: 15px;
  }

  /* AI Section */
  .ai-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ai-headline {
    font-size: 32px;
  }

  /* Performance Section */
  .performance-section {
    padding: 60px 0;
  }

  .performance-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .performance-headline {
    font-size: 32px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Features Section */
  .features-section {
    padding: 60px 0;
  }

  .features-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features-headline-left,
  .features-headline-right {
    font-size: 28px;
  }

  .features-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Automation Section */
  .automation-section {
    padding: 40px 0;
  }

  .automation-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .automation-nav-bar {
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .automation-nav-bar::-webkit-scrollbar {
    display: none;
  }

  .nav-tab {
    flex: 0 0 auto;
    min-width: fit-content;
    white-space: nowrap;
    font-size: 12px;
    padding: 10px 16px;
  }

  /* Themes Section */
  .themes-section {
    padding: 60px 0;
  }

  .themes-content {
    gap: 30px;
  }

  .themes-headline {
    font-size: 32px;
  }

  /* Selling Section */
  .selling-section {
    padding: 60px 0;
  }

  .selling-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .selling-headline {
    font-size: 32px;
  }

  .selling-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* Testimonials Section */
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-headline {
    font-size: 32px;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 40px 0;
  }

  .pricing-headline {
    font-size: 36px;
  }

  .pricing-subheadline {
    font-size: 24px;
  }

  .pricing-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-plans-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Enterprise Section */
  .enterprise-section {
    padding: 40px 0;
  }

  .enterprise-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Scale Section */
  .scale-section {
    padding: 40px 0;
  }

  .scale-heading {
    font-size: 32px;
  }

  .scale-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .main-headline {
    font-size: 28px;
  }

  .mission-headline {
    font-size: 24px;
  }

  .grow-brand-headline {
    font-size: clamp(28px, 6vw, 36px);
  }

  .grow-brand-description {
    font-size: 16px;
  }

  .grow-cards-column {
    gap: 20px;
  }

  /* Remove floating offsets on small mobile */
  .grow-card-float-up,
  .grow-card-float-center,
  .grow-card-float-down {
    transform: translateY(0) !important;
    margin-top: 0;
    margin-bottom: 0;
  }

  .why-choose-title,
  .media-section-title {
    font-size: 24px;
  }

  .grow-value-card {
    padding: 32px 28px;
  }

  .grow-value-title {
    font-size: 18px;
  }

  .grow-value-description {
    font-size: 14px;
  }

  .why-choose-card {
    padding: 28px 24px;
  }

  .why-choose-card-hero .why-choose-card-title {
    font-size: 22px;
  }

  .why-choose-card-hero .why-choose-card-description {
    font-size: 15px;
  }

  .why-choose-card-title {
    font-size: 18px;
  }

  .why-choose-card-description {
    font-size: 14px;
  }

  .media-card {
    padding: 24px 20px;
  }

  .btn-start-trial,
  .btn-get-in-touch {
    padding: 12px 24px;
    font-size: 15px;
  }

  /* Selling Section - Very Small Mobile */
  .selling-section {
    padding: 30px 0;
  }

  .selling-section .container {
    padding: 0 10px;
  }

  .selling-headline {
    font-size: 20px;
  }

  .selling-content {
    min-height: auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Mobile: remove center image + connecting lines */
  .selling-center-image,
  .connecting-lines-svg {
    display: none !important;
  }

  /* Cards: normal stacked layout */
  .selling-card {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto;
    max-height: none;
    padding: 16px;
    border-radius: 14px;
  }

  .selling-card-top-left,
  .selling-card-top-right,
  .selling-card-bottom-left,
  .selling-card-bottom-right {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .card-title-selling {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .card-description-selling {
    font-size: 14px;
    line-height: 1.5;
  }

  .connecting-lines-svg {
    opacity: 0.5;
  }
}

/* ============================================
   PRIVACY POLICY PAGE STYLES
   ============================================ */

/* Privacy Hero Section */
/* Terms Hero Section */
.terms-hero-section {
  position: relative;
  /* min-height: 85vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 100px;
  overflow: hidden;
  background: #0a0a0a;
}

.terms-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(87, 0, 153, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(2, 2, 65, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
  background-size: 100% 100%;
  opacity: 1;
}

.terms-hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.01) 2px,
    rgba(255, 255, 255, 0.01) 4px
  );
  background-size: 100% 4px;
  pointer-events: none;
}

.terms-hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px;
  z-index: 10;
}

/* Corner Accents */
.corner-accent {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  opacity: 0;
  animation: fadeInCorner 1s ease-out forwards;
}

.corner-top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 2px;
  animation-delay: 0.3s;
}

.corner-top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 2px;
  animation-delay: 0.4s;
}

.corner-bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 2px;
  animation-delay: 0.5s;
}

.corner-bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 2px;
  animation-delay: 0.6s;
}

@keyframes fadeInCorner {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Terms Hero Content */
.terms-hero-content {
  position: relative;
  text-align: center;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 1s ease-out 0.2s forwards;
}

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.terms-hero-title {
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: "Neue Haas Grotesk", sans-serif;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terms-hero-subtitle {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 48px 0;
  line-height: 1.6;
  letter-spacing: -0.3px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Trust Indicators */
.terms-trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 56px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 1s ease-out 0.5s forwards;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.trust-badge span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.2px;
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: -75px;
  left: 40%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUpIn 1s ease-out 0.8s forwards;
  z-index: 10;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.3;
  }
}

.scroll-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Legacy Privacy Hero Styles (for backward compatibility) */
/* Privacy Policy Hero Section - Modern Legal-Tech Design */
.privacy-hero-section {
  position: relative;
  /* min-height: 85vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 100px;
  overflow: hidden;
  background: #0a0a0a;
}

.privacy-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(16, 185, 129, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(87, 0, 153, 0.12) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
  background-size: 100% 100%;
  opacity: 1;
}

.privacy-hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.008) 2px,
    rgba(255, 255, 255, 0.008) 4px
  );
  background-size: 100% 4px;
  pointer-events: none;
}

.privacy-hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  z-index: 10;
}

/* Privacy Corner Accents */
.privacy-corner-accent {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  opacity: 0;
  animation: privacyFadeInCorner 1s ease-out forwards;
}

.privacy-corner-top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 2px;
  animation-delay: 0.3s;
}

.privacy-corner-top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 2px;
  animation-delay: 0.4s;
}

.privacy-corner-bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 2px;
  animation-delay: 0.5s;
}

.privacy-corner-bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 2px;
  animation-delay: 0.6s;
}

@keyframes privacyFadeInCorner {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Privacy Hero Content */
.privacy-hero-content {
  position: relative;
  text-align: center;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  animation: privacyFadeUpIn 1s ease-out 0.2s forwards;
}

@keyframes privacyFadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.privacy-hero-title {
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: "Neue Haas Grotesk", sans-serif;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-hero-subtitle {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 48px 0;
  line-height: 1.6;
  letter-spacing: -0.3px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Privacy Trust Indicators */
.privacy-trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 56px;
  opacity: 0;
  transform: translateY(20px);
  animation: privacyFadeUpIn 1s ease-out 0.5s forwards;
}

.privacy-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-trust-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.privacy-trust-badge svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.privacy-trust-badge span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.2px;
}

/* Last Updated Meta */
.privacy-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2px;
  opacity: 0;
  animation: privacyFadeUpIn 1s ease-out 0.7s forwards;
}

.privacy-last-updated svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

/* Privacy Scroll Down Indicator */
.privacy-scroll-indicator {
  position: absolute;
  bottom: -75px;
  left: 40%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: privacyFadeUpIn 1s ease-out 0.8s forwards;
  z-index: 10;
}

.privacy-scroll-mouse {
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.privacy-scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: privacyScrollWheel 2s ease-in-out infinite;
}

@keyframes privacyScrollWheel {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.3;
  }
}

.privacy-scroll-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Legacy Privacy Hero Styles (for backward compatibility) */
.privacy-title {
  font-size: 72px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.2;
  letter-spacing: -1px;
}

.privacy-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
  opacity: 0.9;
}

/* Privacy Content Section */
/* Terms Content Section - Modern Legal-Tech Design */
.terms-content-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  position: relative;
}

.terms-content-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Glassmorphism Table of Contents */
.terms-toc {
  position: sticky;
  top: 120px;
  height: fit-content;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-toc:hover {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.toc-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.toc-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
}

.toc-indicator-line {
  height: 2px;
  background: linear-gradient(90deg, #570099 0%, #020241 100%);
  border-radius: 2px;
  width: 40px;
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.toc-link-number {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  min-width: 24px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.toc-link-text {
  flex: 1;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.toc-link-indicator {
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #570099 0%, #020241 100%);
  border-radius: 2px;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.toc-link:hover {
  background: rgba(87, 0, 153, 0.04);
  color: #1f2937;
}

.toc-link:hover .toc-link-number {
  color: #570099;
}

.toc-link.active {
  background: rgba(87, 0, 153, 0.08);
  color: #000000;
  font-weight: 600;
}

.toc-link.active .toc-link-number {
  color: #570099;
  font-weight: 700;
}

.toc-link.active .toc-link-indicator {
  height: 20px;
  opacity: 1;
}

.toc-link-highlight.active {
  background: rgba(16, 185, 129, 0.1);
}

.toc-link-highlight.active .toc-link-number {
  color: #10b981;
}

.toc-link-highlight.active .toc-link-indicator {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.toc-link-authority.active {
  background: rgba(87, 0, 153, 0.12);
}

.toc-link-authority.active .toc-link-number {
  color: #570099;
  font-size: 12px;
}

/* Terms Content Sections */
.terms-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.terms-section {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 48px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
  scroll-margin-top: 120px;
}

.terms-section:nth-child(1) {
  animation-delay: 0.1s;
}
.terms-section:nth-child(2) {
  animation-delay: 0.15s;
}
.terms-section:nth-child(3) {
  animation-delay: 0.2s;
}
.terms-section:nth-child(4) {
  animation-delay: 0.25s;
}
.terms-section:nth-child(5) {
  animation-delay: 0.3s;
}
.terms-section:nth-child(6) {
  animation-delay: 0.35s;
}
.terms-section:nth-child(7) {
  animation-delay: 0.4s;
}
.terms-section:nth-child(8) {
  animation-delay: 0.45s;
}
.terms-section:nth-child(9) {
  animation-delay: 0.5s;
}
.terms-section:nth-child(10) {
  animation-delay: 0.55s;
}
.terms-section:nth-child(11) {
  animation-delay: 0.6s;
}
.terms-section:nth-child(12) {
  animation-delay: 0.65s;
}
.terms-section:nth-child(13) {
  animation-delay: 0.7s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Number Watermark */
.section-number {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 120px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
  font-family: "Neue Haas Grotesk", sans-serif;
  letter-spacing: -4px;
}

.section-content {
  position: relative;
  z-index: 1;
}

/* Section Icon */
.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(87, 0, 153, 0.1) 0%,
    rgba(2, 2, 65, 0.1) 100%
  );
  border-radius: 12px;
  margin-bottom: 24px;
  color: #570099;
  transition: all 0.3s ease;
}

.section-icon svg {
  width: 24px;
  height: 24px;
}

/* Standard Section Style */
.terms-section-standard {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.terms-section-standard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #570099 0%, #020241 100%);
  border-radius: 16px 0 0 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.terms-section-standard:hover {
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform: translateY(-2px);
}

.terms-section-standard:hover::before {
  opacity: 1;
}

/* Highlighted Section Style (Refund Policy) */
.terms-section-highlight {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05) 0%,
    rgba(5, 150, 105, 0.03) 100%
  );
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow:
    0 4px 16px rgba(16, 185, 129, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.terms-section-highlight .section-number {
  color: rgba(16, 185, 129, 0.08);
}

.section-icon-highlight {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15) 0%,
    rgba(5, 150, 105, 0.1) 100%
  );
  color: #10b981;
}

.terms-section-highlight:hover {
  box-shadow:
    0 8px 32px rgba(16, 185, 129, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transform: translateY(-3px);
}

/* Authority Section Style (Governing Law) */
.terms-section-authority {
  background: linear-gradient(
    135deg,
    rgba(87, 0, 153, 0.08) 0%,
    rgba(2, 2, 65, 0.05) 100%
  );
  border: 2px solid rgba(87, 0, 153, 0.2);
  box-shadow:
    0 8px 32px rgba(87, 0, 153, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(87, 0, 153, 0.1) inset;
}

.terms-section-authority .section-number {
  color: rgba(87, 0, 153, 0.1);
  font-size: 140px;
}

.section-icon-authority {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(87, 0, 153, 0.2) 0%,
    rgba(2, 2, 65, 0.15) 100%
  );
  color: #570099;
  border: 1px solid rgba(87, 0, 153, 0.2);
}

.section-icon-authority svg {
  width: 28px;
  height: 28px;
}

.terms-section-authority:hover {
  box-shadow:
    0 12px 40px rgba(87, 0, 153, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgba(87, 0, 153, 0.15) inset;
  transform: translateY(-4px);
}

/* Header Section Style */
.terms-section-header {
  background: linear-gradient(
    135deg,
    rgba(87, 0, 153, 0.03) 0%,
    rgba(2, 2, 65, 0.02) 100%
  );
  border: 1px solid rgba(87, 0, 153, 0.1);
}

/* Section Typography */
.section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #000000;
  margin: 0 0 20px 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.section-text {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.section-text:last-child {
  margin-bottom: 0;
}

/* Terms List */
.terms-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
}

.terms-list li svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-section-highlight .terms-list li svg {
  color: #10b981;
}

/* Structured Information Groups */
.info-group {
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.info-group:first-of-type {
  margin-top: 16px;
  padding-top: 0;
  border-top: none;
}

.info-group-title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  padding: 8px 0;
}

.info-item svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-section-highlight .info-item svg {
  color: #10b981;
}

.section-text-emphasis {
  font-weight: 600;
  color: #1f2937;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.05);
  border-left: 3px solid #10b981;
  border-radius: 6px;
  margin-top: 16px;
}

/* Privacy Content Section - Uses Same Modern Styles as Terms */
.privacy-content-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  position: relative;
}

.privacy-content-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

/* Privacy TOC uses same glassmorphism style as terms - sticky during content scroll */
.privacy-toc {
  position: sticky;
  top: 120px;
  align-self: start;
  height: max-content;
  /* max-height: calc(100vh - 160px);
    overflow-y: auto; */
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-toc:hover {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

/* Responsive Styles for Privacy Content Section */
@media (max-width: 1024px) {
  .privacy-content-wrapper {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  .privacy-toc {
    padding: 24px 20px;
  }

  .privacy-card {
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  .privacy-content-section {
    padding: 60px 0;
  }

  .privacy-content-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }

  .privacy-toc {
    position: static;
    order: 1;
    max-height: none;
    width: 100%;
  }

  .privacy-content {
    order: 2;
    width: 100%;
  }

  .privacy-card {
    padding: 28px 20px;
    border-radius: 16px;
  }
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.privacy-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.privacy-card-title {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.privacy-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.privacy-card-text {
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.privacy-card-text:last-child {
  margin-bottom: 0;
}

.privacy-subheading {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 20px 0 12px 0;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.privacy-list li {
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.privacy-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #000000;
  font-weight: bold;
}

.terms-refund-card {
  background-color: #ccfbf1;
}

/* Contact Section - How You Can Reach Us */
.contact-section {
  padding: 120px 0;
  background-color: #0a0a0a;
}

.contact-section-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.contact-section-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin: 0 0 60px 0;
  opacity: 0.9;
}

.contact-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

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

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-heading {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.contact-detail {
  font-size: 16px;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

.contact-button-container {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.btn-get-in-touch-contact {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.btn-get-in-touch-contact:hover {
  background-color: #7c3aed;
  transform: translateY(-2px);
}

/* Modern SaaS Contact Hub Section */
.contact-hub-section {
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(87, 0, 153, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(2, 2, 65, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.contact-hub-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.01) 2px,
    rgba(255, 255, 255, 0.01) 4px
  );
  background-size: 100% 4px;
  pointer-events: none;
  opacity: 0.3;
}

.contact-hub-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.contact-hub-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -1px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hub-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Main Contact Card with Glow */
.contact-hub-card {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 80px rgba(87, 0, 153, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-hub-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    rgba(87, 0, 153, 0.4),
    rgba(2, 2, 65, 0.4),
    rgba(87, 0, 153, 0.4)
  );
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(20px);
}

.contact-hub-card:hover::before {
  opacity: 0.6;
}

.contact-hub-card:hover {
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 100px rgba(87, 0, 153, 0.3);
  transform: translateY(-4px);
}

/* Contact Mini-Cards Grid */
.contact-mini-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.contact-mini-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-mini-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #570099 0%, #020241 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.contact-mini-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-mini-card:hover::before {
  transform: scaleX(1);
}

.mini-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(87, 0, 153, 0.2) 0%,
    rgba(2, 2, 65, 0.2) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.contact-mini-card:hover .mini-card-icon {
  background: linear-gradient(
    135deg,
    rgba(87, 0, 153, 0.3) 0%,
    rgba(2, 2, 65, 0.3) 100%
  );
  transform: scale(1.05);
  color: #ffffff;
}

.mini-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.mini-card-detail {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 12px 0;
  line-height: 1.6;
}

.mini-card-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

/* Trust Signals */
.contact-trust-signals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px 0;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-signal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.trust-signal-item svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.trust-signal-item:hover {
  color: rgba(255, 255, 255, 0.9);
}

.trust-signal-item:hover svg {
  color: rgba(255, 255, 255, 0.8);
}

/* CTA Button */
.contact-hub-cta {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-contact-hub {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 16px rgba(87, 0, 153, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-contact-hub::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-contact-hub:hover::before {
  left: 100%;
}

.btn-contact-hub:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(87, 0, 153, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  background: linear-gradient(135deg, #6b21a8 0%, #03035a 100%);
}

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

.btn-contact-hub svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-contact-hub:hover svg {
  transform: translateX(4px);
}

.btn-contact-hub span {
  position: relative;
  z-index: 1;
}

/* Responsive Styles for Terms Content Section */
@media (max-width: 1024px) {
  .terms-content-wrapper {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  .terms-toc {
    padding: 24px 20px;
  }

  .terms-section {
    padding: 40px 32px;
  }

  .section-number {
    font-size: 100px;
    top: 20px;
    right: 24px;
  }
}

@media (max-width: 768px) {
  .terms-content-section {
    padding: 60px 0;
  }

  .terms-content-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .terms-toc {
    position: static;
    order: 2;
    max-height: none;
  }

  .terms-content {
    order: 1;
  }

  .terms-section {
    padding: 32px 24px;
  }

  .section-number {
    font-size: 80px;
    top: 16px;
    right: 20px;
  }

  .section-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }

  .section-icon svg {
    width: 20px;
    height: 20px;
  }

  .section-icon-authority {
    width: 48px;
    height: 48px;
  }

  .section-icon-authority svg {
    width: 24px;
    height: 24px;
  }

  .terms-section-authority .section-number {
    font-size: 100px;
  }
}

/* Responsive Styles for Terms Hero Section */
@media (max-width: 1024px) {
  .terms-hero-section {
    min-height: 75vh;
    padding: 120px 0 80px;
  }

  .terms-hero-container {
    padding: 60px 30px;
  }

  .corner-accent {
    width: 50px;
    height: 50px;
  }

  .terms-trust-indicators {
    gap: 20px;
  }

  .trust-badge {
    padding: 10px 16px;
  }

  .trust-badge span {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .terms-hero-section {
    min-height: 70vh;
    padding: 100px 0 60px;
  }

  .terms-hero-container {
    padding: 50px 20px;
  }

  .corner-accent {
    width: 40px;
    height: 40px;
  }

  .terms-trust-indicators {
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }

  .trust-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .scroll-indicator {
    bottom: 30px;
  }
}

@media (max-width: 480px) {
  .terms-hero-section {
    min-height: 65vh;
    padding: 80px 0 50px;
  }

  .terms-hero-container {
    padding: 40px 16px;
  }

  .corner-accent {
    width: 30px;
    height: 30px;
  }

  .terms-trust-indicators {
    margin-top: 32px;
  }

  .trust-badge {
    padding: 8px 14px;
  }

  .trust-badge svg {
    width: 16px;
    height: 16px;
  }

  .trust-badge span {
    font-size: 12px;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-mouse {
    width: 20px;
    height: 32px;
  }
}

/* Responsive Styles for Privacy Hero Section */
@media (max-width: 1024px) {
  .privacy-hero-section {
    min-height: 75vh;
    padding: 120px 0 80px;
  }

  .privacy-hero-container {
    padding: 60px 30px;
  }

  .privacy-corner-accent {
    width: 50px;
    height: 50px;
  }

  .privacy-trust-indicators {
    gap: 20px;
  }

  .privacy-trust-badge {
    padding: 10px 16px;
  }

  .privacy-trust-badge span {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .privacy-hero-section {
    min-height: 70vh;
    padding: 100px 0 60px;
  }

  .privacy-hero-container {
    padding: 50px 20px;
  }

  .privacy-corner-accent {
    width: 40px;
    height: 40px;
  }

  .privacy-trust-indicators {
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }

  .privacy-trust-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .privacy-scroll-indicator {
    bottom: 30px;
  }
}

@media (max-width: 480px) {
  .privacy-hero-section {
    min-height: 65vh;
    padding: 80px 0 50px;
  }

  .privacy-hero-container {
    padding: 40px 16px;
  }

  .privacy-corner-accent {
    width: 30px;
    height: 30px;
  }

  .privacy-trust-indicators {
    margin-top: 32px;
  }

  .privacy-trust-badge {
    padding: 8px 14px;
  }

  .privacy-trust-badge svg {
    width: 16px;
    height: 16px;
  }

  .privacy-trust-badge span {
    font-size: 12px;
  }

  .privacy-last-updated {
    font-size: 12px;
    padding: 6px 12px;
  }

  .privacy-last-updated svg {
    width: 12px;
    height: 12px;
  }

  .privacy-scroll-indicator {
    bottom: 20px;
  }

  .privacy-scroll-mouse {
    width: 20px;
    height: 32px;
  }
}

/* Responsive Styles for Contact Hub Section */
@media (max-width: 1024px) {
  .contact-hub-section {
    padding: 100px 0;
  }

  .contact-hub-card {
    padding: 40px;
  }

  .contact-mini-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-trust-signals {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .contact-hub-section {
    padding: 80px 0;
  }

  .contact-hub-header {
    margin-bottom: 40px;
  }

  .contact-hub-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .contact-mini-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .contact-mini-card {
    padding: 24px;
  }

  .mini-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .contact-trust-signals {
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
    margin-bottom: 24px;
  }

  .trust-signal-item {
    justify-content: center;
  }

  .btn-contact-hub {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-hub-section {
    padding: 60px 0;
  }

  .contact-hub-card {
    padding: 24px 20px;
  }

  .contact-mini-card {
    padding: 20px;
  }

  .mini-card-title {
    font-size: 16px;
  }

  .mini-card-detail {
    font-size: 14px;
  }

  .btn-contact-hub {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* Responsive Styles for Privacy Page (Legacy) */
@media (max-width: 1024px) {
  .privacy-frame-container {
    width: 95%;
    min-height: 400px;
  }

  .privacy-title {
    font-size: 56px;
  }

  .privacy-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .privacy-hero-section {
    padding: 80px 0;
    min-height: 60vh;
  }

  .privacy-frame-container {
    width: 98%;
    min-height: 350px;
  }

  .privacy-hero-content {
    padding: 60px 20px;
  }

  .privacy-title {
    font-size: 42px;
  }

  .privacy-subtitle {
    font-size: 18px;
  }

  .frame-top {
    gap: 6px;
    padding: 0 10px;
  }

  .frame-top .frame-segment {
    height: 3px;
    min-width: 20px;
  }

  .frame-left,
  .frame-right {
    gap: 6px;
    padding: 0 10px;
  }

  .frame-left .frame-segment,
  .frame-right .frame-segment {
    width: 3px;
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .privacy-title {
    font-size: 32px;
  }

  .privacy-subtitle {
    font-size: 16px;
  }

  .privacy-hero-content {
    padding: 40px 16px;
  }

  /* Terms Content Section Responsive */
  .terms-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .terms-toc {
    position: static;
    order: 2;
    max-height: none;
  }

  .terms-content {
    order: 1;
  }

  .terms-section {
    padding: 32px 24px;
  }

  .section-number {
    font-size: 80px;
    top: 16px;
    right: 20px;
  }

  .section-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }

  .section-icon svg {
    width: 20px;
    height: 20px;
  }

  .section-icon-authority {
    width: 48px;
    height: 48px;
  }

  .section-icon-authority svg {
    width: 24px;
    height: 24px;
  }

  .terms-section-authority .section-number {
    font-size: 100px;
  }

  /* Privacy Content Section Responsive (Legacy) */
  .privacy-content-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .privacy-toc {
    position: static;
    order: 1;
  }

  .privacy-content {
    order: 2;
  }

  .privacy-card {
    padding: 32px 24px;
  }

  .privacy-card-title {
    font-size: 28px;
  }

  .privacy-section-title {
    font-size: 24px;
  }

  /* Contact Section Responsive */
  .contact-section {
    padding: 80px 0;
  }

  .contact-section-title {
    font-size: 36px;
  }

  .contact-section-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .contact-card {
    padding: 40px 32px;
  }

  .contact-card-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 32px;
  }

  .contact-column {
    gap: 32px;
  }

  .contact-heading {
    font-size: 20px;
  }

  .contact-detail {
    font-size: 15px;
  }

  .btn-get-in-touch-contact {
    width: 100%;
    padding: 14px 32px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-section-title {
    font-size: 28px;
  }

  .contact-section-subtitle {
    font-size: 16px;
  }

  .contact-card {
    padding: 32px 24px;
  }

  .contact-heading {
    font-size: 18px;
  }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Intro Section */
/* Contact Hero Section - Premium Editorial Layout */
.contact-hero-section {
  padding: 40px 0 40px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

/* Left: Content Block */
.contact-hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-hero-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.contact-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0;
}

.contact-hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  max-width: 540px;
}

.contact-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-contact-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #2563eb;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-contact-hero-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-contact-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: #2563eb;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid rgba(37, 99, 235, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-contact-hero-secondary:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: #2563eb;
  transform: translateY(-2px);
}

/* Right: Visual Block */
.contact-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 500px;
  border-radius: 20px;
  object-fit: contain;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.15) 0%,
    rgba(139, 92, 246, 0.1) 50%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.contact-dashboard-mockup {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.dashboard-header {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.dashboard-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e8f0;
}

.dashboard-dot:nth-child(1) {
  background: #ef4444;
}

.dashboard-dot:nth-child(2) {
  background: #f59e0b;
}

.dashboard-dot:nth-child(3) {
  background: #10b981;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-card {
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 100%
  );
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.dashboard-card-2 {
  height: 80px;
}

.dashboard-card-3 {
  height: 100px;
}

.btn-contact-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  border: none;
  cursor: pointer;
}

.btn-contact-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-contact-primary svg {
  transition: transform 0.3s ease;
}

.btn-contact-primary:hover svg {
  transform: translateX(2px);
}

.btn-contact-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #ffffff;
  color: #2563eb;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1.5px solid rgba(37, 99, 235, 0.2);
}

.btn-contact-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.05);
}

.btn-contact-secondary svg {
  transition: transform 0.3s ease;
}

.btn-contact-secondary:hover svg {
  transform: translateX(2px);
}

/* Get In Touch Section */
.get-in-touch-section {
  padding: 0 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

/* Contact Info Section - Premium Glassmorphism Cards */
.contact-info-section {
  padding: 40px 0;
  background: #ffffff;
  position: relative;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1500px;
  margin: 0 auto;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-info-icon-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(20px);
}

.contact-info-card:hover .contact-info-icon-bg {
  opacity: 0.3;
  transform: scale(1.2);
}

.contact-info-card:hover .contact-info-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.contact-info-icon-wrapper svg {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-content {
  position: relative;
  z-index: 1;
}

.contact-info-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.contact-info-text {
  font-size: 16px;
  color: #334155;
  margin: 0 0 8px 0;
  font-weight: 600;
  line-height: 1.5;
}

.contact-info-meta {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.contact-info-card:hover .contact-info-meta {
  opacity: 1;
}

/* Card-specific gradient tints */
.contact-info-card-phone {
  background: linear-gradient(
    135deg,
    rgba(204, 251, 241, 0.3) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
}

.contact-info-card-phone .contact-info-icon-bg {
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.4) 0%,
    transparent 70%
  );
}

.contact-info-card-phone .contact-info-icon-wrapper svg {
  color: #14b8a6;
}

.contact-info-card-email {
  background: linear-gradient(
    135deg,
    rgba(255, 244, 230, 0.4) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
}

.contact-info-card-email .contact-info-icon-bg {
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.4) 0%,
    transparent 70%
  );
}

.contact-info-card-email .contact-info-icon-wrapper svg {
  color: #fb923c;
}

.contact-info-card-location {
  background: linear-gradient(
    135deg,
    rgba(254, 249, 195, 0.3) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
}

.contact-info-card-location .contact-info-icon-bg {
  background: radial-gradient(
    circle,
    rgba(234, 179, 8, 0.4) 0%,
    transparent 70%
  );
}

.contact-info-card-location .contact-info-icon-wrapper svg {
  color: #eab308;
}

/* Responsive Styles for Contact Hero & Info Cards */
@media (max-width: 1024px) {
  .contact-hero-layout {
    gap: 60px;
  }

  .contact-hero-title {
    font-size: clamp(32px, 4.5vw, 48px);
  }

  .contact-info-grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding: 60px 0 50px;
  }

  .contact-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero-content {
    order: 1;
  }

  .contact-hero-visual {
    order: 2;
  }

  .contact-hero-image {
    max-width: 100%;
    border-radius: 16px;
  }

  .contact-hero-title {
    font-size: clamp(28px, 6vw, 42px);
  }

  .contact-hero-description {
    font-size: 16px;
  }

  .contact-hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-contact-hero-primary,
  .btn-contact-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .contact-info-section {
    padding: 40px 0;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info-card {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .contact-hero-section {
    padding: 40px 0 32px;
  }

  .contact-hero-title {
    font-size: 28px;
  }

  .contact-hero-description {
    font-size: 15px;
  }

  .contact-info-card {
    padding: 24px;
    border-radius: 20px;
  }

  .contact-info-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .contact-info-title {
    font-size: 18px;
  }

  .contact-info-text {
    font-size: 15px;
  }

  .contact-info-meta {
    font-size: 13px;
  }
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(37, 99, 235, 0.3) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  border-color: rgba(37, 99, 235, 0.15);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.contact-card:hover .contact-card-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.contact-card-icon-wrapper svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.contact-card-text {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Contact Card Background Colors with Premium Gradients */
.contact-card-phone {
  background: linear-gradient(
    135deg,
    rgba(204, 251, 241, 0.4) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
}

.contact-card-phone .contact-card-icon-wrapper {
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.1) 0%,
    rgba(20, 184, 166, 0.05) 100%
  );
  color: #14b8a6;
}

.contact-card-email {
  background: linear-gradient(
    135deg,
    rgba(255, 244, 230, 0.5) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
}

.contact-card-email .contact-card-icon-wrapper {
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.1) 0%,
    rgba(251, 146, 60, 0.05) 100%
  );
  color: #fb923c;
}

.contact-card-location {
  background: linear-gradient(
    135deg,
    rgba(254, 249, 195, 0.4) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
}

.contact-card-location .contact-card-icon-wrapper {
  background: linear-gradient(
    135deg,
    rgba(234, 179, 8, 0.1) 0%,
    rgba(234, 179, 8, 0.05) 100%
  );
  color: #eab308;
}

/* Contact Main Section */
.contact-main-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.contact-main-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Why Contact Us Section */
.contact-why-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-contact-title {
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.why-contact-subtitle {
  font-size: 18px;
  color: #666666;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

.contact-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-reason-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.contact-reason-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(37, 99, 235, 0.15);
}

.contact-reason-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-reason-item:hover .contact-reason-icon-wrapper {
  transform: scale(1.1);
}

.contact-reason-icon-wrapper svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.reason-icon-demo {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1) 0%,
    rgba(239, 68, 68, 0.05) 100%
  );
  color: #ef4444;
}

.reason-icon-pricing {
  background: linear-gradient(
    135deg,
    rgba(234, 179, 8, 0.1) 0%,
    rgba(234, 179, 8, 0.05) 100%
  );
  color: #eab308;
}

.reason-icon-tech {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(37, 99, 235, 0.05) 100%
  );
  color: #2563eb;
}

.reason-icon-partnership {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1) 0%,
    rgba(168, 85, 247, 0.05) 100%
  );
  color: #a855f7;
}

.contact-reason-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.contact-reason-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.contact-reason-description {
  font-size: 15px;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

.contact-trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.08) 0%,
    rgba(34, 197, 94, 0.03) 100%
  );
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.15);
  font-size: 15px;
  color: #166534;
}

.contact-trust-line svg {
  width: 16px;
  height: 16px;
  color: #22c55e;
  flex-shrink: 0;
}

.contact-trust-line strong {
  font-weight: 700;
  color: #15803d;
}

/* Contact Form Section */
.contact-form-section {
  display: flex;
  justify-content: flex-end;
}

.contact-form-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 520px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.contact-form-card:hover {
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.contact-form-subtitle {
  font-size: 16px;
  color: #666666;
  margin: 0 0 32px 0;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 16px;
  font-family: "Neue Haas Grotesk", sans-serif;
  color: #000000;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:hover,
.form-textarea:hover {
  border-color: #d1d5db;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  background-color: #ffffff;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Neue Haas Grotesk", sans-serif;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.btn-send-message {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-send-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

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

.btn-send-message svg {
  transition: transform 0.3s ease;
}

.btn-send-message:hover svg {
  transform: translateX(2px);
}

.form-security {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-security svg {
  width: 16px;
  height: 16px;
  color: #22c55e;
  flex-shrink: 0;
}

/* Map Section */
.map-section {
  padding: 40px 0;
  background-color: #f9fafb;
}

.map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
  .contact-intro-title {
    font-size: 52px;
  }

  .contact-intro-description {
    font-size: 19px;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .contact-card {
    padding: 36px 28px;
  }

  .contact-main-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-form-section {
    justify-content: center;
  }

  .contact-form-card {
    max-width: 100%;
  }

  .why-contact-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .contact-intro-section {
    padding: 60px 0 40px;
    /* Mobile scrolling fixes */
    overflow: visible;
    min-height: auto;
    position: relative;
    width: 100%;
    max-width: 100%;
  }

  .contact-intro-title {
    font-size: 40px;
    letter-spacing: -0.02em;
  }

  .contact-intro-description {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .contact-intro-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-contact-primary,
  .btn-contact-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }

  .get-in-touch-section {
    padding: 0 0 60px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    padding: 32px 24px;
    border-radius: 18px;
  }

  .contact-card-icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .contact-card-icon-wrapper svg {
    width: 22px;
    height: 22px;
  }

  .contact-card-title {
    font-size: 20px;
  }

  .contact-card-text {
    font-size: 15px;
  }

  .contact-main-section {
    padding: 60px 0;
  }

  .contact-main-wrapper {
    gap: 40px;
  }

  .why-contact-title {
    font-size: 32px;
    letter-spacing: -0.02em;
  }

  .why-contact-subtitle {
    font-size: 16px;
  }

  .contact-reasons {
    gap: 16px;
  }

  .contact-reason-item {
    padding: 18px;
    gap: 14px;
  }

  .contact-reason-icon-wrapper {
    width: 44px;
    height: 44px;
  }

  .contact-reason-icon-wrapper svg {
    width: 18px;
    height: 18px;
  }

  .contact-reason-title {
    font-size: 17px;
  }

  .contact-reason-description {
    font-size: 14px;
  }

  .contact-trust-line {
    padding: 14px 18px;
    font-size: 14px;
  }

  .contact-form-card {
    padding: 32px 24px;
    border-radius: 18px;
  }

  .contact-form-title {
    font-size: 24px;
  }

  .contact-form-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .contact-form {
    gap: 20px;
  }

  .form-label {
    font-size: 13px;
  }

  .form-input,
  .form-textarea {
    padding: 12px 14px;
    font-size: 15px;
  }

  .btn-send-message {
    padding: 14px 28px;
    font-size: 15px;
  }

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

  .map-container iframe {
    height: 400px;
  }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Title Section */
/* Modern Blog Hero Section */
.blog-hero-section {
  padding: 40px 0 40px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.blog-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #000000;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -1px;
}

.blog-hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: #4b5563;
  margin: 0 0 40px 0;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Blog Hero CTAs */
.blog-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-blog-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(87, 0, 153, 0.2);
}

.btn-blog-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(87, 0, 153, 0.3);
}

.btn-blog-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-blog-primary:hover svg {
  transform: translateX(2px);
}

.btn-blog-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  background: #ffffff;
  transition: all 0.3s ease;
}

.btn-blog-secondary:hover {
  border-color: rgba(0, 0, 0, 0.2);
  background: #fafbfc;
  transform: translateY(-1px);
}

/* Blog Trust Signals */
.blog-trust-signals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.blog-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

.blog-trust-item svg {
  width: 16px;
  height: 16px;
  color: #10b981;
  flex-shrink: 0;
}

/* Blog Posts Section - Premium SaaS Design */
.blog-posts-section {
  padding: 40px 0 40px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
}

/* Featured Insight Hero */
.blog-featured-insight {
  margin-bottom: 80px;
}

.blog-featured-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.4s ease;
}

.blog-featured-card:hover {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.04);
}

.blog-featured-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-featured-label {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(124, 58, 237, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  width: fit-content;
}

.blog-featured-headline {
  font-size: clamp(42px, 5vw, 48px);
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.blog-featured-description {
  font-size: 19px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  max-width: 100%;
}

.blog-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #7c3aed;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
  margin-top: 8px;
}

.blog-featured-cta:hover {
  color: #6366f1;
  gap: 12px;
}

.blog-featured-cta svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-featured-cta:hover svg {
  transform: translateX(4px);
}

.blog-featured-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-dashboard-mockup {
  width: 100%;
  max-width: 520px;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.blog-featured-card:hover .blog-dashboard-mockup {
  transform: scale(1.03);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

.blog-featured-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.blog-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 2px 6px rgba(0, 0, 0, 0.02);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 24px rgba(124, 58, 237, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(124, 58, 237, 0.15);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #f9fafb;
  position: relative;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

/* Blog Image Placeholders - Using gradients and images */
.blog-image-1 {
  background: linear-gradient(
    90deg,
    #22c55e 0%,
    #22c55e 50%,
    #dcfce7 50%,
    #dcfce7 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-image-1::before {
  content: "ZIPLOFY";
  position: absolute;
  left: 25%;
  font-weight: 800;
  font-size: 28px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-image-1::after {
  content: "shopify";
  position: absolute;
  right: 25%;
  font-weight: 600;
  font-size: 24px;
  color: #16a34a;
}

.blog-image-2 {
  background-image: url("../img/2.jpg");
  background-size: cover;
  background-position: center;
}

.blog-image-3 {
  background-image: url("../img/3.jpg");
  background-size: cover;
  background-position: center;
}

.blog-image-4 {
  background-image: url("../img/4.jpg");
  background-size: cover;
  background-position: center;
}

.blog-image-5 {
  background-image: url("../img/5.jpg");
  background-size: cover;
  background-position: center;
}

.blog-image-6 {
  background-image: url("../img/1.jpg");
  background-size: cover;
  background-position: center;
}

.blog-image-7 {
  background-image: url("../img/mockup-website.jpg");
  background-size: cover;
  background-position: center;
}

/* Fallback for images that don't load */
.blog-image-placeholder {
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
}

.blog-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

/* Blog Category Badges */
.blog-card-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.blog-category-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: capitalize;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.blog-category-badge:hover {
  background: rgba(124, 58, 237, 0.15);
  color: #6366f1;
  transform: translateY(-1px);
}

.blog-card-title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.3px;
}

.blog-card-description {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: auto;
}

.blog-date {
  font-size: 13px;
  font-weight: 400;
  color: #9ca3af;
}

.blog-card-cta {
  font-size: 15px;
  font-weight: 600;
  color: #7c3aed;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.blog-card-cta:hover {
  color: #6366f1;
  gap: 10px;
}

.blog-card-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-cta:hover svg {
  transform: translateX(3px);
}

/* Load More Button */
.blog-load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-load-more:hover {
  border-color: rgba(0, 0, 0, 0.2);
  background: #fafbfc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-load-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-load-more:hover svg {
  transform: translateX(2px);
}

/* Blog CTA Section */
.blog-cta-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.blog-cta-banner {
  display: block;
  background-color: #6b21a8;
  color: #ffffff;
  text-align: center;
  padding: 24px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.blog-cta-banner:hover {
  background-color: #7c3aed;
  transform: translateY(-2px);
}

.blog-cta-banner:last-child {
  margin-bottom: 0;
}

.cta-arrow {
  font-size: 24px;
  font-weight: 700;
}

/* Responsive Styles for Blog Page */
@media (max-width: 1024px) {
  .blog-hero-section {
    padding: 80px 0 60px;
  }

  .blog-hero-ctas {
    gap: 12px;
  }

  .blog-trust-signals {
    gap: 24px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .blog-card-featured {
    grid-template-columns: 1fr;
  }

  .blog-card-featured .blog-card-image {
    min-height: 240px;
  }

  .blog-card-featured .blog-card-content {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .blog-hero-section {
    padding: 60px 0 48px;
  }

  .blog-hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-blog-primary,
  .btn-blog-secondary {
    width: 100%;
    justify-content: center;
  }

  .blog-trust-signals {
    flex-direction: column;
    gap: 16px;
  }

  .blog-posts-section {
    padding: 60px 0 80px;
  }

  .blog-featured-insight {
    margin-bottom: 50px;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 32px;
  }

  .blog-featured-headline {
    font-size: 36px;
  }

  .blog-featured-description {
    font-size: 17px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .blog-card-image {
    height: 200px;
  }

  .blog-card-content {
    padding: 24px;
  }

  .blog-card-title {
    font-size: 20px;
  }

  .blog-card-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .blog-featured-card {
    padding: 32px 24px;
    gap: 32px;
  }

  .blog-featured-headline {
    font-size: 32px;
  }

  .blog-featured-description {
    font-size: 16px;
  }

  .blog-dashboard-mockup {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .blog-posts-section {
    padding: 50px 0 70px;
  }

  .blog-featured-insight {
    margin-bottom: 40px;
  }

  .blog-featured-card {
    padding: 24px 20px;
    gap: 28px;
  }

  .blog-featured-headline {
    font-size: 28px;
  }

  .blog-featured-description {
    font-size: 15px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card-image {
    height: 180px;
  }

  .blog-card-content {
    padding: 20px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .blog-card-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .blog-hero-section {
    padding: 48px 0 40px;
  }

  .blog-hero-title {
    font-size: 28px;
  }

  .blog-hero-subtitle {
    font-size: 15px;
  }

  .blog-trust-item {
    font-size: 13px;
  }

  .blog-card-featured .blog-card-image {
    min-height: 200px;
  }

  .blog-card-featured .blog-card-content {
    padding: 20px;
  }

  .blog-card-image {
    height: 180px;
  }

  .blog-card-content {
    padding: 20px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .blog-card-description {
    font-size: 14px;
  }

  .blog-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-load-more {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   BLOG DETAILS PAGE STYLES
   ============================================ */

/* ============================================
   BLOG DETAIL PAGE - MODERN SAAS DESIGN
   ============================================ */

/* Reading Progress Bar */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.05);
  z-index: 9999;
}

.reading-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
  width: 0%;
  transition: width 0.1s ease;
}

/* Comparison Hero Section */
/* Blog Detail Hero Section - Premium Editorial Layout */
.blog-detail-hero {
  padding: 40px 0 40px;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 40%, #e0e7ff 100%);
  position: relative;
  overflow: hidden;
}

.blog-detail-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.blog-detail-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.blog-detail-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
}

/* Left: Content Block */
.blog-detail-hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-detail-category-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #3b82f6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
  border: 1px solid rgba(59, 130, 246, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-detail-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0;
}

.blog-detail-description {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  max-width: 580px;
}

/* Meta Information */
.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.blog-detail-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-detail-meta-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
}

.blog-detail-meta-value {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.blog-detail-meta-divider {
  width: 1px;
  height: 32px;
  background: #e2e8f0;
}

/* Subtle Divider */
.blog-detail-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6 0%, transparent 100%);
  margin-top: 8px;
  opacity: 0.3;
}

/* Right: Visual Block */
.blog-detail-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 120px;
}

.blog-detail-visual-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-detail-visual-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.blog-detail-card-primary {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(59, 130, 246, 0.2);
}

.blog-detail-card-secondary {
  background: rgba(255, 255, 255, 0.65);
}

.blog-detail-card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-detail-card-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-detail-logo-letter {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-detail-logo-icon {
  font-size: 28px;
}

.blog-detail-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
}

.blog-detail-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-detail-feature-tag {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

/* Blog Article Section - overflow visible so sticky works */
.blog-article-section {
  padding: 60px 0 80px;
  background-color: #f8f9fb;
  overflow: visible;
}

.blog-article-section .container {
  overflow: visible;
}

.blog-article-layout {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Table of Contents - sticky within blog-article-layout; stops when content ends, never overlaps footer */
.article-toc {
  position: sticky;
  top: 120px;
  align-self: start;
  height: max-content;
  width: 280px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  /* max-height: calc(100vh - 120px - 24px);
  overflow-y: auto; */
  overflow-x: hidden;
  z-index: 10;
}

.toc-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f3f4f6;
}

.toc-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.toc-link:hover {
  background-color: #f9fafb;
  color: #3b82f6;
}

.toc-link.active {
  background-color: #eff6ff;
  color: #3b82f6;
}

.toc-link-highlight {
  background-color: #fef3c7;
  color: #92400e;
}

.toc-link-number {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  min-width: 24px;
}

.toc-link.active .toc-link-number {
  color: #3b82f6;
}

.toc-link-text {
  flex: 1;
}

.toc-link-indicator {
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.toc-link.active .toc-link-indicator {
  height: 100%;
}

/* Article Content */
.blog-article-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  /* min-height: 100%; */
  height: max-content;
}

.blog-article-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid #f3f4f6;
}

.blog-article-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #000000;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 16px;
}

.article-author {
  font-weight: 600;
  color: #000000;
}

.article-separator {
  color: #d1d5db;
}

.article-date {
  color: #6b7280;
}

.blog-article-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-category-badge {
  background-color: #f3f4f6;
  color: #4b5563;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-category-badge:hover {
  background-color: #e5e7eb;
  color: #000000;
}

/* Article Sections */
.blog-article-content {
  line-height: 1.8;
}

.article-section {
  margin-bottom: 64px;
  position: relative;
  padding-left: 60px;
}

.section-number-badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.section-content-wrapper {
  position: relative;
}

.article-section-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #000000;
  margin: 0 0 24px 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title-accent {
  width: 4px;
  height: 32px;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
  flex-shrink: 0;
}

.article-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin: 24px 0 16px 0;
}

.article-paragraph {
  font-size: 17px;
  color: #374151;
  line-height: 1.8;
  margin: 0 0 20px 0;
}

/* Platform Cards */
.platform-card-section {
  margin-bottom: 48px;
}

.platform-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 2px solid #f3f4f6;
  transition: all 0.3s ease;
  position: relative;
}

.platform-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.platform-card-featured {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.platform-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.platform-card-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.platform-card-featured .platform-card-number {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
}

.platform-card-title-wrapper {
  flex: 1;
  position: relative;
}

.platform-icon-wrapper {
  width: 48px;
  height: 48px;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #6b7280;
}

.platform-icon-featured {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
}

.platform-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.platform-featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.platform-intro {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.platform-features-list {
  margin-bottom: 32px;
}

.platform-features-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 16px 0;
}

.platform-features-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-features-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
}

.platform-features-items li svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.platform-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.highlight-box {
  padding: 20px;
  border-radius: 12px;
  border: 2px solid transparent;
}

.highlight-box-best {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: #10b981;
}

.highlight-box-limitations {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-color: #ef4444;
}

.highlight-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.highlight-box-header svg {
  color: #10b981;
  flex-shrink: 0;
}

.highlight-box-limitations .highlight-box-header svg {
  color: #ef4444;
}

.highlight-box-title {
  font-size: 15px;
  font-weight: 700;
  color: #065f46;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.highlight-box-limitations .highlight-box-title {
  color: #991b1b;
}

.highlight-box-text {
  font-size: 15px;
  color: #047857;
  line-height: 1.6;
  margin: 0;
}

.highlight-box-limitations .highlight-box-text {
  color: #b91c1c;
}

.highlight-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight-box-list li {
  font-size: 14px;
  color: #b91c1c;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.highlight-box-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.platform-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.platform-cta-btn:hover {
  background: #e5e7eb;
  color: #000000;
  transform: translateX(4px);
}

.platform-cta-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.platform-cta-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Comparison Table */
.comparison-table-section {
  margin-bottom: 64px;
  position: relative;
  padding-left: 60px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  min-width: 800px;
}

.comparison-table thead {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}

.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table th:first-child {
  border-top-left-radius: 12px;
}

.comparison-table th:last-child {
  border-top-right-radius: 12px;
}

.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 15px;
  color: #374151;
}

.comparison-table tbody tr:hover {
  background-color: #f9fafb;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #1f2937;
}

/* Recommendation / TL;DR Section */
.recommendation-section {
  margin-bottom: 64px;
  position: relative;
  padding-left: 60px;
}

.tldr-box {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

.tldr-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f3f4f6;
}

.tldr-header svg {
  color: #3b82f6;
}

.tldr-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.tldr-content {
  margin-bottom: 32px;
}

.tldr-text {
  font-size: 17px;
  color: #374151;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.tldr-text:last-child {
  margin-bottom: 0;
}

.tldr-text strong {
  color: #000000;
  font-weight: 700;
}

.tldr-cta {
  padding-top: 24px;
  border-top: 2px solid #f3f4f6;
}

.btn-tldr-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-tldr-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-width: 90%;
  display: none;
  border: 2px solid #e5e7eb;
}

.floating-cta.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.floating-cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.floating-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-cta-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-cta-title {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
}

.btn-floating-cta {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Related Articles Section - Modern Premium Design */
.related-articles-section {
  padding: 100px 0;
  background-color: #f8f9fb;
  position: relative;
}

.related-articles-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.related-articles-title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  color: #000000;
  margin: 0 0 12px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.related-articles-subtitle {
  font-size: 17px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.related-article-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.related-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.related-article-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #f3f4f6;
}

.related-article-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.blog-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-article-card:hover .blog-image-placeholder {
  transform: scale(1.1);
}

.image-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.related-article-card:hover .image-gradient-overlay {
  opacity: 1;
}

.related-article-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #3b82f6;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.related-article-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.related-article-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.related-article-card:hover .related-article-title {
  color: #3b82f6;
}

.related-article-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.related-article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #9ca3af;
  margin-top: auto;
  padding-top: 8px;
}

.related-article-date {
  font-weight: 500;
  color: #6b7280;
}

.related-article-separator {
  color: #d1d5db;
  font-weight: 600;
}

.related-article-category {
  font-weight: 500;
  color: #6b7280;
}

.related-article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-article-link svg {
  transition: transform 0.3s ease;
}

.related-article-link:hover {
  color: #2563eb;
  gap: 12px;
}

.related-article-link:hover svg {
  transform: translateX(4px);
}

/* Responsive Styles for Blog Details Page */
@media (max-width: 992px) {
  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .article-toc {
    position: static;
    max-height: none;
    order: -1;
  }
}

@media (max-width: 1024px) {
  .blog-article-layout {
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
  }

  .article-toc {
    top: 120px;
    max-height: calc(100vh - 120px - 24px);
    height: max-content;
  }

  .blog-article-section .container {
    overflow: visible;
  }

  .blog-detail-hero-layout {
    gap: 60px;
  }

  .blog-detail-hero-visual {
    top: 100px;
  }

  .blog-article-wrapper {
    padding: 32px;
  }

  .platform-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .highlight-box {
    padding: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .highlight-box-title,
  .highlight-box-text,
  .highlight-box-list li {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .related-articles-section {
    padding: 80px 0;
  }

  .related-articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .blog-detail-hero {
    padding: 60px 0 50px;
  }

  .blog-detail-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-detail-hero-visual {
    position: static;
    order: -1;
  }

  .blog-detail-title {
    font-size: clamp(28px, 6vw, 42px);
  }

  .blog-detail-description {
    font-size: 16px;
  }

  .blog-detail-meta {
    gap: 12px;
  }

  .blog-detail-visual-card {
    padding: 24px;
  }

  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    min-width: 0;
  }

  .article-toc {
    position: static;
    max-height: none;
    order: -1;
    padding: 20px;
  }

  .blog-article-section .container {
    overflow: visible;
  }

  .blog-article-wrapper {
    padding: 26px 18px;
    border-radius: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .blog-article-title,
  .article-section-title,
  .article-subtitle,
  .article-paragraph,
  .platform-card-title,
  .platform-intro,
  .platform-features-title,
  .platform-features-items li,
  .platform-features-items li span,
  .highlight-box-title,
  .highlight-box-text,
  .highlight-box-list li,
  .platform-featured-badge {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
  }

  .blog-article-meta {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .blog-article-title {
    font-size: 30px;
    line-height: 1.18;
  }

  .article-section,
  .comparison-table-section,
  .recommendation-section {
    padding-left: 0;
  }

  .section-number-badge {
    position: static;
    margin-bottom: 20px;
  }

  .blog-article-wrapper {
    padding: 24px 20px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .blog-article-content {
    max-width: 100%;
    overflow-x: hidden;
  }

  .platform-card-section {
    max-width: 100%;
    overflow-x: hidden;
  }

  .platform-card {
    padding: 24px 20px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .platform-card-header {
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
  }

  .platform-card-title-wrapper {
    max-width: 100%;
    min-width: 0;
  }

  .platform-card-title {
    font-size: 22px;
    line-height: 1.3;
    max-width: 100%;
  }

  .platform-intro {
    font-size: 16px;
    max-width: 100%;
  }

  .platform-features-items li {
    font-size: 15px;
    max-width: 100%;
  }

  .platform-features-items li span {
    flex: 1;
    min-width: 0;
    max-width: 100%;
  }

  .comparison-table-wrapper {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 640px;
  }

  .tldr-box {
    padding: 32px 24px;
  }

  .floating-cta {
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: none;
    max-width: none;
  }

  .floating-cta-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .btn-floating-cta {
    width: 100%;
    text-align: center;
  }

  .related-articles-section {
    padding: 60px 0;
  }

  .related-articles-header {
    margin-bottom: 40px;
    padding: 0 16px;
  }

  .related-articles-title {
    font-size: 28px;
  }

  .related-articles-subtitle {
    font-size: 15px;
  }

  .related-articles-grid {
    display: flex;
    grid-template-columns: none;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 24px;
    padding: 0 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .related-articles-grid::-webkit-scrollbar {
    display: none;
  }

  .related-article-card {
    flex: 0 0 calc(100% - 48px);
    max-width: calc(100% - 48px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .related-article-image-wrapper {
    height: 200px;
  }

  .related-article-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .blog-detail-hero {
    padding: 40px 0 32px;
  }

  .blog-detail-hero-layout {
    gap: 32px;
  }

  .blog-detail-title {
    font-size: 28px;
  }

  .blog-detail-description {
    font-size: 15px;
  }

  .blog-detail-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .blog-detail-meta-divider {
    display: none;
  }

  .blog-detail-visual-card {
    padding: 20px;
  }

  .blog-detail-logo-letter {
    font-size: 28px;
  }

  .blog-detail-logo-text {
    font-size: 20px;
  }

  .blog-article-wrapper {
    padding: 24px 16px;
  }

  .blog-article-title {
    font-size: 28px;
  }

  .article-section-title {
    font-size: 22px;
  }

  .article-paragraph {
    font-size: 16px;
  }

  .platform-card {
    padding: 20px 16px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .platform-card-title {
    font-size: 18px;
    line-height: 1.3;
    max-width: 100%;
  }

  .platform-intro {
    font-size: 15px;
    max-width: 100%;
  }

  .platform-features-items li {
    font-size: 14px;
  }

  .platform-features-items li span {
    max-width: 100%;
  }

  .highlight-box {
    padding: 14px;
  }

  .highlight-box-title {
    font-size: 13px;
  }

  .highlight-box-text {
    font-size: 14px;
  }

  .highlight-box-list li {
    font-size: 13px;
  }

  .tldr-box {
    padding: 24px 20px;
  }

  .tldr-title {
    font-size: 20px;
  }

  .tldr-text {
    font-size: 16px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* Small mobile devices - enhanced scrolling fixes */
  html,
  body {
    overflow-x: hidden;
    overflow-y: auto !important;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: auto;
  }

  .contact-intro-section {
    padding: 40px 0 30px;
    /* Mobile scrolling fixes - ensure no blocking */
    overflow: visible !important;
    min-height: auto !important;
    height: auto !important;
    position: relative;
    width: 100%;
    max-width: 100%;
    /* Prevent content clipping */
    contain: none;
    /* Prevent transform issues */
    transform: none !important;
    will-change: auto;
    z-index: 1;
  }

  .contact-intro-section::before,
  .contact-intro-section::after {
    pointer-events: none;
    position: absolute;
    z-index: 0;
  }

  .contact-intro-content {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    position: relative;
    z-index: 2;
    transform: none;
    will-change: auto;
    /* Stack vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-intro-title,
  .contact-intro-description {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
  }

  .contact-intro-section img {
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    transform: none;
    will-change: auto;
  }

  .contact-intro-title {
    font-size: 32px;
    letter-spacing: -0.02em;
  }

  .contact-intro-description {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .btn-contact-primary,
  .btn-contact-secondary {
    font-size: 15px;
    padding: 12px 24px;
  }

  .contact-card {
    padding: 28px 20px;
    gap: 20px;
  }

  .contact-card-icon-wrapper {
    width: 52px;
    height: 52px;
  }

  .contact-card-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }

  .contact-card-title {
    font-size: 19px;
  }

  .contact-card-text {
    font-size: 14px;
  }

  .contact-card-title {
    font-size: 18px;
  }

  .contact-card-text {
    font-size: 15px;
  }

  .contact-main-section {
    padding: 50px 0;
  }

  .contact-main-wrapper {
    gap: 32px;
  }

  .why-contact-title {
    font-size: 28px;
  }

  .why-contact-subtitle {
    font-size: 15px;
  }

  .contact-reason-item {
    padding: 16px;
    gap: 12px;
  }

  .contact-reason-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .contact-reason-icon-wrapper svg {
    width: 16px;
    height: 16px;
  }

  .contact-reason-title {
    font-size: 16px;
  }

  .contact-reason-description {
    font-size: 13px;
  }

  .contact-trust-line {
    padding: 12px 16px;
    font-size: 13px;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .contact-form-title {
    font-size: 22px;
  }

  .contact-form-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .form-input,
  .form-textarea {
    padding: 12px;
    font-size: 14px;
  }

  .btn-send-message {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .privacy-content-wrapper {
    grid-template-columns: 240px 1fr;
    gap: 32px;
  }

  .privacy-toc {
    padding: 24px 20px;
  }

  .toc-title {
    font-size: 18px;
  }

  .toc-link {
    font-size: 13px;
    padding: 6px 10px;
    padding-left: 20px;
  }
}

/* ============================================
   Themes Marketplace Page Styles
   ============================================ */

/* Hero Section */
.themes-marketplace-hero {
  background: #ffffff;
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
}

.themes-marketplace-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left Column: Text Content */
.themes-hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 600px;
}

.themes-marketplace-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(87, 0, 153, 0.08);
  color: #570099;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  letter-spacing: 0.01em;
}

.themes-marketplace-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #1f2937;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.03em;
}

.themes-marketplace-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.themes-hero-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-themes-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(87, 0, 153, 0.25);
  font-family: "Satoshi", sans-serif;
}

.btn-themes-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(87, 0, 153, 0.35);
}

.btn-themes-hero-primary svg {
  transition: transform 0.3s ease;
}

.btn-themes-hero-primary:hover svg {
  transform: translateX(4px);
}

.btn-themes-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: #570099;
  border: 1.5px solid rgba(87, 0, 153, 0.2);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Satoshi", sans-serif;
}

.btn-themes-hero-secondary:hover {
  background: rgba(87, 0, 153, 0.05);
  border-color: rgba(87, 0, 153, 0.4);
  transform: translateY(-2px);
}

/* Right Column: Visual Content */
.themes-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  min-height: 500px;
}

.themes-hero-visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-exploded-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 500px;
}

/* Main Storefront Frame */
.theme-frame-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 320px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-frame-main:hover {
  transform: translate(-50%, -50%) scale(1.02);
}

.theme-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating UI Sections */
.theme-ui-section {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.04);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 6s ease-in-out infinite;
}

.theme-ui-outline {
  width: 40px;
  height: 30px;
  border: 2px solid rgba(87, 0, 153, 0.3);
  border-radius: 4px;
  background: linear-gradient(
    135deg,
    rgba(87, 0, 153, 0.05) 0%,
    rgba(2, 2, 65, 0.05) 100%
  );
  position: relative;
}

.theme-ui-outline::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 1px solid rgba(87, 0, 153, 0.15);
  border-radius: 2px;
}

.theme-ui-label {
  font-size: 13px;
  font-weight: 600;
  color: #570099;
  letter-spacing: 0.01em;
}

/* Homepage UI Section */
.theme-ui-homepage {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

/* Product Grid UI Section */
.theme-ui-products {
  bottom: 15%;
  left: 0%;
  animation-delay: 2s;
}

/* Checkout UI Section */
.theme-ui-checkout {
  top: 60%;
  right: -5%;
  animation-delay: 4s;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-10px) translateX(5px);
  }
  66% {
    transform: translateY(5px) translateX(-5px);
  }
}

/* Accent Highlights */
.theme-ui-section::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    rgba(87, 0, 153, 0.1) 0%,
    rgba(2, 2, 65, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.theme-ui-section:hover::after {
  opacity: 1;
}

/* Filter Section */
.themes-filter-section {
  background: #ffffff;
  padding: 0 0 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.themes-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Satoshi", sans-serif;
}

.filter-tab:hover {
  background: rgba(87, 0, 153, 0.05);
  border-color: rgba(87, 0, 153, 0.2);
  color: #570099;
}

.filter-tab.active {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(87, 0, 153, 0.2);
}

/* Themes Grid Section */
.themes-marketplace-grid-section {
  background: #ffffff;
  padding: 40px 0;
  width: 100%;
  display: block;
  position: relative;
}

.themes-marketplace-grid-section > .container,
.themes-marketplace-grid-section .container {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  display: block;
  position: relative;
}

/* Override global container styles for themes section */
section.themes-marketplace-grid-section .container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.themes-marketplace-grid {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 32px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  align-items: stretch;
  max-width: 100%;
  box-sizing: border-box;
  grid-auto-flow: row;
  overflow: visible;
  position: relative;
}

/* Desktop View - Ensure 2-column grid */
@media (min-width: 1025px) {
  .themes-marketplace-grid-section > .container,
  .themes-marketplace-grid-section .container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .themes-marketplace-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    width: 100%;
    margin: 0 auto;
  }
}

/* Theme Card - Vertical Layout with GoQPE-style Hover Preview */
.theme-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.themes-marketplace-grid .theme-card:hover,
.themes-marketplace-grid-section .theme-card:hover,
#themes-grid .theme-card:hover,
.theme-card:hover {
  transform: scale(1.02) !important;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.12),
    0 8px 16px rgba(87, 0, 153, 0.08) !important;
  border-color: rgba(87, 0, 153, 0.15) !important;
  z-index: 10 !important;
}

/* Preview Viewport Container - Fixed Height with Overflow Hidden */
.theme-card-image-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #f9fafb;
  position: relative;
  flex-shrink: 0;
}

/* Tall Vertical Preview Image - 3x Card Height for Full Page Preview */
.theme-card-image {
  width: 100%;
  height: 960px; /* 3x of 320px viewport - tall vertical preview simulating full webpage */
  object-fit: cover;
  object-position: top center;
  transform: translateY(0);
  transition: transform 5s linear;
  will-change: transform;
}

/* Hover: Image translates upward to simulate scrolling through webpage */
.theme-card:hover .theme-card-image {
  transform: translateY(
    -640px
  ) !important; /* Scroll down to reveal bottom portion (960px - 320px = 640px scroll) */
  transition: transform 5s linear !important;
}

/* Card Content */
.theme-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
  box-sizing: border-box;
  min-height: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Content fades slightly on hover */
.theme-card:hover .theme-card-content {
  opacity: 0.85;
}

.theme-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
  margin: 0;
  padding: 0;
}

.theme-card-name {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
  flex: 1;
  padding: 0;
  display: block;
}

.theme-card-badge {
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex-shrink: 0;
  line-height: 1;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  vertical-align: middle;
}

.theme-card-badge-free {
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
  border: 1px solid rgba(107, 114, 128, 0.15);
}

.theme-card-badge-premium {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(87, 0, 153, 0.2);
}

.theme-card-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  padding: 0;
}

.theme-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
  padding: 0;
}

.theme-feature-chip {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(87, 0, 153, 0.06);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #570099;
  border: 1px solid rgba(87, 0, 153, 0.1);
}

.theme-card-ctas {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding: 0;
  opacity: 1;
}

.btn-theme-live-preview {
  flex: 1;
  padding: 11px 20px;
  background: #ffffff;
  color: #570099;
  border: 1.5px solid rgba(87, 0, 153, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Satoshi", sans-serif;
  text-align: center;
  line-height: 1.2;
  min-height: 42px;
  box-sizing: border-box;
}

.btn-theme-live-preview:hover {
  background: rgba(87, 0, 153, 0.04);
  border-color: rgba(87, 0, 153, 0.3);
}

.btn-theme-use {
  flex: 1;
  padding: 11px 20px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Satoshi", sans-serif;
  box-shadow: 0 2px 6px rgba(87, 0, 153, 0.2);
  text-align: center;
  line-height: 1.2;
  min-height: 42px;
  box-sizing: border-box;
}

.btn-theme-use:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(87, 0, 153, 0.3);
}

/* Platform Benefits Section */
.themes-benefits-section {
  background: #ffffff;
  padding: 40px 0;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  box-sizing: border-box;
}

.themes-benefits-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Editorial Header */
.themes-benefits-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.themes-benefits-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1f2937;
  line-height: 1.15;
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
}

.themes-benefits-subtext {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Quality Engine Container - Base Grid Layout (Desktop Default) */
.quality-engine-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  overflow: visible;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Hide core and rings by default (will show on mobile only) */
.quality-engine-core,
.core-ring-1,
.core-ring-2 {
  display: none;
}

/* Hide connecting lines by default */
.quality-engine-container .connection-lines {
  display: none;
}

/* Tablet: 2-column grid (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .quality-engine-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    max-width: 100%;
    padding: 0 20px !important;
    height: auto !important;
    min-height: auto !important;
    flex-direction: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
  }

  /* Ensure cards are grid items on tablet */
  .orbiting-card {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    align-self: stretch !important;
  }

  /* Ensure card content has equal height */
  .orbiting-card-content {
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* Keep core and rings hidden on tablet */
  .quality-engine-core,
  .core-ring-1,
  .core-ring-2 {
    display: none !important;
  }

  .quality-engine-container .connection-lines {
    display: none !important;
  }
}

/* Desktop: 3-column grid (1024px and above) */
@media (min-width: 1024px) {
  .quality-engine-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    max-width: 1200px;
    padding: 0 !important;
    height: auto !important;
    min-height: auto !important;
    flex-direction: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
  }

  /* Ensure cards are grid items on desktop */
  .orbiting-card {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    align-self: stretch !important;
  }

  /* Ensure card content has equal height */
  .orbiting-card-content {
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* Hide core and rings on desktop */
  .quality-engine-core,
  .core-ring-1,
  .core-ring-2 {
    display: none !important;
  }

  .quality-engine-container .connection-lines {
    display: none !important;
  }
}

/* Central Core - Perfectly Centered */
.quality-engine-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  z-index: 10;
  margin: 0;
}

.core-inner {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 2px solid rgba(87, 0, 153, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #570099;
  box-shadow: 0 4px 20px rgba(87, 0, 153, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: corePulse 4s ease-in-out infinite;
}

.core-inner svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  stroke-width: 1.5;
}

.core-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(87, 0, 153, 0.1);
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
}

.core-ring-1 {
  width: 140px;
  height: 140px;
  animation-delay: 0s;
}

.core-ring-2 {
  width: 160px;
  height: 160px;
  animation-delay: 1.5s;
}

/* Connection Lines */
.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Orbiting Cards - Grid Layout on Desktop */
.orbiting-card {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 5;
  transform-origin: center center;
  display: flex;
  flex-direction: column;
}

.orbiting-card-content {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: cardFloat 6s ease-in-out infinite;
}

.orbiting-card-1 .orbiting-card-content {
  animation-delay: 0s;
}
.orbiting-card-2 .orbiting-card-content {
  animation-delay: 1s;
}
.orbiting-card-3 .orbiting-card-content {
  animation-delay: 2s;
}
.orbiting-card-4 .orbiting-card-content {
  animation-delay: 3s;
}
.orbiting-card-5 .orbiting-card-content {
  animation-delay: 0.5s;
}
.orbiting-card-6 .orbiting-card-content {
  animation-delay: 2.5s;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.orbiting-card:hover .orbiting-card-content {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 8px 32px rgba(87, 0, 153, 0.15);
  border-color: rgba(87, 0, 153, 0.2);
  animation-play-state: paused;
}

.orbiting-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #570099;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.orbiting-card:hover .orbiting-card-icon {
  filter: drop-shadow(0 0 8px rgba(87, 0, 153, 0.4));
  transform: scale(1.1);
}

.orbiting-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
}

.orbiting-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.orbiting-card-description {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  font-weight: 400;
}

/* Animations */
@keyframes corePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(87, 0, 153, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(87, 0, 153, 0.15);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Note: Card positioning is now handled by CSS Grid layout */
/* Individual card transforms removed - grid handles positioning */

/* Draw connecting lines with JavaScript */
.connection-lines line {
  stroke: rgba(87, 0, 153, 0.15);
  stroke-width: 1;
  stroke-dasharray: 4, 4;
  animation: lineDraw 2s ease-in-out infinite;
}

@keyframes lineDraw {
  0%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0.3;
  }
  50% {
    stroke-dashoffset: 8;
    opacity: 0.6;
  }
}

/* Final CTA Section */
.themes-final-cta-section {
  background: linear-gradient(
    135deg,
    rgba(87, 0, 153, 0.05) 0%,
    rgba(2, 2, 65, 0.05) 100%
  );
  padding: 40px 0;
  text-align: center;
}

.themes-final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.themes-final-cta-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.themes-final-cta-subtext {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 40px 0;
}

.btn-themes-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(87, 0, 153, 0.25);
  font-family: "Satoshi", sans-serif;
}

.btn-themes-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(87, 0, 153, 0.35);
}

.btn-themes-primary-cta svg {
  transition: transform 0.3s ease;
}

.btn-themes-primary-cta:hover svg {
  transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .themes-benefits-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .themes-benefits-left {
    max-width: 100%;
  }

  .benefits-visual-grid {
    max-width: 100%;
  }

  .themes-marketplace-grid-section > .container,
  .themes-marketplace-grid-section .container {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1280px;
  }

  /* .themes-marketplace-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    } */

  .themes-benefits-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .benefits-visual-grid {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .themes-marketplace-hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .themes-hero-left {
    max-width: 100%;
    align-items: center;
  }

  .themes-hero-cta-buttons {
    justify-content: center;
  }

  .themes-hero-right {
    min-height: 400px;
  }

  .theme-exploded-container {
    max-width: 100%;
    height: 400px;
  }

  .theme-frame-main {
    width: 320px;
    height: 260px;
  }

  .theme-ui-section {
    padding: 10px 12px;
  }

  .theme-ui-label {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .themes-marketplace-hero {
    padding: 40px 0 40px;
  }

  .themes-marketplace-hero-content {
    gap: 40px;
  }

  .themes-hero-left {
    gap: 24px;
  }

  .themes-marketplace-headline {
    font-size: 2rem;
  }

  .themes-marketplace-subtitle {
    font-size: 1rem;
  }

  .themes-hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-themes-hero-primary,
  .btn-themes-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .themes-hero-right {
    min-height: 300px;
  }

  .theme-exploded-container {
    height: 300px;
  }

  .theme-frame-main {
    width: 280px;
    height: 220px;
  }

  .theme-ui-section {
    padding: 8px 10px;
  }

  .theme-ui-outline {
    width: 32px;
    height: 24px;
  }

  .theme-ui-label {
    font-size: 11px;
  }

  .theme-ui-homepage {
    top: 5%;
    right: 2%;
  }

  .theme-ui-products {
    bottom: 10%;
    left: -2%;
  }

  .theme-ui-checkout {
    top: 75%;
    right: -2%;
  }

  .themes-filter-section {
    padding: 0 0 20px;
  }

  .themes-filter-tabs {
    gap: 8px;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 14px;
  }

  .themes-marketplace-grid-section {
    padding: 20px 0;
  }

  .themes-marketplace-grid-section > .container,
  .themes-marketplace-grid-section .container {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }

  /* .themes-marketplace-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    } */

  .theme-card-image-wrapper {
    height: 280px;
  }

  /* Ensure tall image for hover preview on tablet */
  .theme-card-image {
    height: 960px !important; /* Tall image for scroll preview */
  }

  /* Hover preview animation for tablet - Higher specificity */
  .themes-marketplace-grid .theme-card:hover,
  .themes-marketplace-grid-section .theme-card:hover {
    transform: scale(1.02) !important;
    box-shadow:
      0 20px 48px rgba(0, 0, 0, 0.12),
      0 8px 16px rgba(87, 0, 153, 0.08) !important;
  }

  .themes-marketplace-grid .theme-card:hover .theme-card-image,
  .themes-marketplace-grid-section .theme-card:hover .theme-card-image {
    transform: translateY(
      -680px
    ) !important; /* Scroll for 280px viewport: (960px - 280px) = 680px */
    transition: transform 5s linear !important;
  }

  .themes-marketplace-grid .theme-card:hover .theme-card-content,
  .themes-marketplace-grid-section .theme-card:hover .theme-card-content {
    opacity: 0.85 !important;
  }

  .theme-card-content {
    padding: 20px;
  }

  .theme-card-name {
    font-size: 18px;
  }

  .theme-card-ctas {
    opacity: 1;
  }

  .themes-benefits-section {
    padding: 60px 0;
    overflow-x: hidden;
    width: 100%;
  }

  .themes-benefits-section .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .themes-benefits-content {
    gap: 50px;
    width: 100%;
    overflow-x: hidden;
  }

  .themes-benefits-headline {
    font-size: 2rem;
  }

  .themes-benefits-subtext {
    font-size: 16px;
  }

  /* Mobile: Vertical Stack Layout (<768px) */
  .quality-engine-container {
    height: auto !important;
    min-height: auto;
    max-width: 100%;
    padding: 40px 20px;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
    grid-template-columns: none !important; /* Override grid on mobile */
  }

  /* Hide connecting lines on tablet */
  .quality-engine-container .connection-lines {
    display: none !important;
  }

  /* Center icon at top */
  .quality-engine-core {
    position: relative !important;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    align-self: center;
  }

  .core-inner {
    width: 90px;
    height: 90px;
  }

  .core-inner svg {
    width: 40px;
    height: 40px;
  }

  /* Hide rings on tablet */
  .core-ring-1,
  .core-ring-2 {
    display: none !important;
  }

  /* Stack all cards vertically */
  .orbiting-card {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
    margin-bottom: 16px;
    box-sizing: border-box;
    align-self: stretch;
  }

  .orbiting-card:last-child {
    margin-bottom: 0;
  }

  .orbiting-card-content {
    padding: 24px 20px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    animation: none !important;
    box-sizing: border-box;
  }

  .orbiting-card:hover .orbiting-card-content {
    transform: translateY(-4px) scale(1.02);
    animation: none;
  }

  .orbiting-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .orbiting-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .orbiting-card-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .orbiting-card-description {
    font-size: 13px;
  }

  /* Remove all individual card positioning */
  .orbiting-card-1,
  .orbiting-card-2,
  .orbiting-card-3,
  .orbiting-card-4,
  .orbiting-card-5,
  .orbiting-card-6 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .themes-final-cta-section {
    padding: 40px 0;
  }

  .themes-final-cta-headline {
    font-size: 1.75rem;
  }

  .themes-final-cta-subtext {
    font-size: 1rem;
  }

  .btn-themes-primary-cta {
    padding: 14px 28px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .themes-benefits-section {
    padding: 40px 0;
    overflow-x: hidden;
    width: 100%;
  }

  .themes-benefits-section .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .themes-benefits-content {
    gap: 40px;
    width: 100%;
    overflow-x: hidden;
  }

  .themes-benefits-headline {
    font-size: 1.75rem;
  }

  .themes-benefits-subtext {
    font-size: 15px;
  }

  /* Mobile: Vertical Stack Layout */
  .quality-engine-container {
    height: auto !important;
    min-height: auto;
    max-width: 100%;
    padding: 40px 16px;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
  }

  /* Hide connecting lines on mobile */
  .quality-engine-container .connection-lines {
    display: none !important;
  }

  /* Center icon at top */
  .quality-engine-core {
    position: relative !important;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    align-self: center;
  }

  .core-inner {
    border-width: 1.5px;
    width: 80px;
    height: 80px;
  }

  .core-inner svg {
    width: 36px;
    height: 36px;
  }

  /* Hide rings on mobile */
  .core-ring-1,
  .core-ring-2 {
    display: none !important;
  }

  /* Stack all cards vertically */
  .orbiting-card {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
    margin-bottom: 16px;
    box-sizing: border-box;
    align-self: stretch;
  }

  .orbiting-card:last-child {
    margin-bottom: 0;
  }

  .orbiting-card-content {
    padding: 24px 20px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    animation: none !important;
    box-sizing: border-box;
  }

  .orbiting-card:hover .orbiting-card-content {
    transform: translateY(-4px) scale(1.02);
    animation: none;
  }

  .orbiting-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .orbiting-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .orbiting-card-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .orbiting-card-description {
    font-size: 13px;
  }

  /* Remove all individual card positioning */
  .orbiting-card-1,
  .orbiting-card-2,
  .orbiting-card-3,
  .orbiting-card-4,
  .orbiting-card-5,
  .orbiting-card-6 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .themes-marketplace-hero {
    padding: 40px 0 40px;
  }

  .themes-marketplace-hero-content {
    gap: 32px;
  }

  .themes-hero-left {
    gap: 20px;
  }

  .themes-marketplace-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .themes-marketplace-headline {
    font-size: 1.75rem;
  }

  .themes-hero-right {
    min-height: 250px;
  }

  .theme-exploded-container {
    height: 250px;
  }

  .theme-frame-main {
    width: 240px;
    height: 180px;
  }

  .theme-ui-section {
    padding: 6px 8px;
  }

  .theme-ui-outline {
    width: 28px;
    height: 20px;
  }

  .theme-ui-label {
    font-size: 10px;
  }

  .themes-filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .themes-marketplace-grid-section {
    padding: 40px 0;
  }

  .themes-marketplace-grid-section > .container,
  .themes-marketplace-grid-section .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .themes-marketplace-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .themes-marketplace-grid-section .theme-card,
  .themes-marketplace-grid .theme-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  .theme-card-image-wrapper {
    height: 240px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Ensure tall image for hover preview on mobile */
  .theme-card-image {
    height: 960px !important; /* Tall image for scroll preview */
  }

  /* Hover preview animation for mobile - Higher specificity */
  .themes-marketplace-grid .theme-card:hover,
  .themes-marketplace-grid-section .theme-card:hover,
  #themes-grid .theme-card:hover {
    transform: scale(1.02) !important;
    box-shadow:
      0 20px 48px rgba(0, 0, 0, 0.12),
      0 8px 16px rgba(87, 0, 153, 0.08) !important;
  }

  .themes-marketplace-grid .theme-card:hover .theme-card-image,
  .themes-marketplace-grid-section .theme-card:hover .theme-card-image,
  #themes-grid .theme-card:hover .theme-card-image {
    transform: translateY(
      -720px
    ) !important; /* Scroll for 240px viewport: (960px - 240px) = 720px */
    transition: transform 5s linear !important;
  }

  .themes-marketplace-grid .theme-card:hover .theme-card-content,
  .themes-marketplace-grid-section .theme-card:hover .theme-card-content,
  #themes-grid .theme-card:hover .theme-card-content {
    opacity: 0.85 !important;
  }

  .theme-card-content {
    padding: 20px 16px;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .theme-card-header {
    width: 100%;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .theme-card-name {
    font-size: 18px;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
  }

  .theme-card-badge {
    flex-shrink: 0;
  }

  .theme-card-description {
    font-size: 13px;
    width: 100%;
    line-height: 1.5;
    margin: 0;
    padding: 0;
  }

  .theme-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
    padding: 0;
  }

  .theme-feature-chip {
    padding: 6px 12px;
    font-size: 12px;
    flex-shrink: 0;
    white-space: nowrap;
    display: inline-block;
  }

  .theme-card-ctas {
    flex-direction: column;
    gap: 10px;
    opacity: 1 !important;
    width: 100%;
    margin-top: 8px;
    display: flex !important;
    padding: 0;
  }

  .theme-card:hover .theme-card-ctas {
    opacity: 1 !important;
  }

  .btn-theme-live-preview,
  .btn-theme-use {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    flex: none;
    min-height: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .benefits-visual-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FAQ Help Center Page (faq.html)
   Scoped to body.faq-page to avoid clashes
   ============================================ */
body.faq-page {
  --faq-primary: #5b6cff;
  --faq-accent: #00c2ff;
  --faq-bg: #f9fafc;
  --faq-text: #111111;
  --faq-text-secondary: #6b7280;
  --faq-border: #eaeaea;
  --faq-radius-sm: 12px;
  --faq-radius-md: 18px;
  --faq-radius-lg: 24px;
  --faq-shadow-light: 0 2px 12px rgba(91, 108, 255, 0.06);
  --faq-shadow-medium: 0 8px 24px rgba(91, 108, 255, 0.12);
  --faq-shadow-glow: 0 0 0 3px rgba(91, 108, 255, 0.2);
  --faq-primary-tint: rgba(91, 108, 255, 0.08);
  --faq-space: 8px;
}

body.faq-page {
  font-family:
    "DM Sans",
    "Neue Haas Grotesk",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--faq-bg);
}

body.faq-page .faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  body.faq-page .faq-container {
    padding: 0 24px;
  }
}

body.faq-page .faq-hero {
  padding: 100px 0;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

body.faq-page .faq-hero-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  body.faq-page .faq-hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

body.faq-page .faq-hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faq-primary);
  margin-bottom: 12px;
}

body.faq-page .faq-hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--faq-text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

body.faq-page .faq-hero-desc {
  font-size: 17px;
  color: var(--faq-text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

body.faq-page .faq-search-wrap {
  position: relative;
  margin-bottom: 24px;
}

body.faq-page .faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  pointer-events: none;
}

body.faq-page .faq-search-input {
  width: 100%;
  height: 60px;
  padding: 0 24px 0 52px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

body.faq-page .faq-search-input::placeholder {
  color: #9ca3af;
}

body.faq-page .faq-search-input:focus {
  outline: none;
  border-color: var(--faq-primary);
  box-shadow: 0 4px 24px rgba(91, 108, 255, 0.15);
}

body.faq-page .faq-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

body.faq-page .faq-quick-link {
  display: inline-block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--faq-text-secondary);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

body.faq-page .faq-quick-link:hover {
  color: var(--faq-primary);
  background: rgba(91, 108, 255, 0.08);
  border-color: rgba(91, 108, 255, 0.3);
  transform: translateY(-2px);
}

body.faq-page .faq-hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #5b6cff;
  background: rgba(91, 108, 255, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Right column - preview cards */
body.faq-page .faq-hero-right {
  position: relative;
}

body.faq-page .faq-hero-cards-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(91, 108, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

body.faq-page .faq-hero-preview-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.faq-page .faq-preview-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

body.faq-page .faq-preview-card:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(91, 108, 255, 0.3);
}

body.faq-page .faq-preview-card--offset {
  margin-left: 24px;
}

body.faq-page .faq-preview-num {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--faq-primary);
}

body.faq-page .faq-preview-text {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: var(--faq-text);
}

body.faq-page .faq-preview-arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #9ca3af;
}

body.faq-page .faq-preview-card:hover .faq-preview-arrow {
  color: var(--faq-primary);
}

@media (max-width: 992px) {
  body.faq-page .faq-preview-card--offset {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  body.faq-page .faq-hero-title {
    font-size: 32px;
  }
  body.faq-page .faq-hero-desc {
    font-size: 15px;
  }
}

body.faq-page .faq-categories {
  padding: 40px 0;
}

body.faq-page .faq-categories-header {
  text-align: center;
  margin-bottom: 48px;
}

body.faq-page .faq-categories-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--faq-text);
  margin-bottom: 8px;
}

body.faq-page .faq-categories-subtitle {
  font-size: 17px;
  color: var(--faq-text-secondary);
}

body.faq-page .faq-category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 24px;
}

body.faq-page .faq-category-card--featured {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  body.faq-page .faq-categories {
    padding: 32px 0;
  }
  body.faq-page .faq-categories-header {
    margin-bottom: 32px;
  }
  body.faq-page .faq-categories-title {
    font-size: 28px;
  }
  body.faq-page .faq-categories-subtitle {
    font-size: 15px;
  }
  body.faq-page .faq-category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  body.faq-page .faq-category-card--featured {
    grid-column: 1;
  }
  body.faq-page .faq-category-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 16px;
  }
  body.faq-page .faq-category-card--featured {
    padding: 28px 20px;
  }
  body.faq-page .faq-category-card--medium {
    padding: 24px 20px;
  }
  body.faq-page .faq-category-card--small {
    flex-direction: row;
    padding: 20px;
  }
  body.faq-page .faq-category-icon-wrap {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
  body.faq-page .faq-category-icon-wrap svg {
    width: 22px;
    height: 22px;
  }
  body.faq-page .faq-category-card--featured h3 {
    font-size: 22px;
  }
  body.faq-page .faq-category-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  body.faq-page .faq-category-desc {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

body.faq-page .faq-category-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

body.faq-page .faq-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(91, 108, 255, 0.3);
}

body.faq-page .faq-category-card:hover .faq-category-icon-wrap {
  transform: scale(1.05);
}

body.faq-page .faq-category-card--featured {
  background: linear-gradient(
    135deg,
    rgba(91, 108, 255, 0.06) 0%,
    rgba(0, 194, 255, 0.04) 100%
  );
  padding: 40px;
}

body.faq-page .faq-category-card--medium {
  padding: 36px;
}

body.faq-page .faq-category-card--small {
  padding: 28px;
  flex-direction: column;
}

body.faq-page .faq-category-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(91, 108, 255, 0.12) 0%,
    rgba(0, 194, 255, 0.08) 100%
  );
  border-radius: 50%;
  transition: transform 0.3s ease;
}

body.faq-page .faq-category-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--faq-primary);
}

body.faq-page .faq-category-icon-wrap--sm {
  width: 48px;
  height: 48px;
}

body.faq-page .faq-category-icon-wrap--sm svg {
  width: 22px;
  height: 22px;
}

body.faq-page .faq-category-content {
  flex: 1;
  min-width: 0;
}

body.faq-page .faq-category-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--faq-text);
  margin-bottom: 8px;
}

body.faq-page .faq-category-card--featured h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

body.faq-page .faq-category-card--small h3 {
  font-size: 18px;
}

body.faq-page .faq-category-desc {
  font-size: 15px;
  color: var(--faq-text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

body.faq-page .faq-category-card--featured .faq-category-desc {
  margin-bottom: 20px;
}

body.faq-page .faq-category-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--faq-primary);
  background: rgba(91, 108, 255, 0.12);
  border-radius: 999px;
  margin-right: 16px;
}

body.faq-page .faq-category-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--faq-primary);
}

body.faq-page .faq-category-card:hover .faq-category-cta {
  text-decoration: underline;
}

body.faq-page .faq-category-count {
  font-size: 13px;
  font-weight: 500;
  color: var(--faq-primary);
}

body.faq-page .faq-category-card--small .faq-category-count {
  margin-top: 8px;
}

body.faq-page .faq-popular {
  padding: 40px 0;
  background: linear-gradient(
    180deg,
    rgba(91, 108, 255, 0.04) 0%,
    transparent 100%
  );
}

body.faq-page .faq-popular-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--faq-text);
  text-align: center;
  margin-bottom: calc(var(--faq-space) * 6);
}

body.faq-page .faq-popular-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--faq-space) * 4);
}

@media (max-width: 768px) {
  body.faq-page .faq-popular-grid {
    grid-template-columns: 1fr;
  }
}

body.faq-page .faq-popular-card {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--faq-shadow-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

body.faq-page .faq-popular-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--faq-shadow-medium);
}

body.faq-page .faq-popular-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--faq-text);
  line-height: 1.4;
}

body.faq-page .faq-main {
  padding: 40px 0 40px;
  background: linear-gradient(180deg, #fafbfc 0%, #f5f7fa 50%, #f0f4f8 100%);
}

body.faq-page .faq-main .faq-container {
  position: relative;
}

body.faq-page .faq-mobile-select-wrap {
  display: none;
  margin-bottom: 24px;
}

body.faq-page .faq-mobile-select {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

body.faq-page .faq-main-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}

/* Left: Sticky vertical category nav */
body.faq-page .faq-sidebar {
  position: sticky;
  top: 100px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

body.faq-page .faq-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.faq-page .faq-sidebar-link {
  display: block;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  border-radius: 12px;
  border-left: 3px solid transparent;
  margin-left: -3px;
  padding-left: 21px;
  transition: all 0.3s ease;
}

body.faq-page .faq-sidebar-link:hover {
  background: rgba(91, 108, 255, 0.06);
  color: var(--faq-text);
}

body.faq-page .faq-sidebar-link.active {
  background: rgba(91, 108, 255, 0.08);
  color: var(--faq-primary);
  font-weight: 600;
  border-left-color: var(--faq-primary);
}

/* Right: FAQ content */
body.faq-page .faq-main-content {
  min-width: 0;
}

body.faq-page .faq-main-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--faq-text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

body.faq-page .faq-main-subtitle {
  font-size: 17px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

body.faq-page .faq-main-search-wrap {
  position: relative;
  margin-bottom: 40px;
}

body.faq-page .faq-main-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

body.faq-page .faq-main-search-input {
  width: 100%;
  height: 56px;
  padding: 0 24px 0 52px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

body.faq-page .faq-main-search-input::placeholder {
  color: #9ca3af;
}

body.faq-page .faq-main-search-input:focus {
  outline: none;
  border-color: rgba(91, 108, 255, 0.5);
  box-shadow: 0 4px 20px rgba(91, 108, 255, 0.08);
}

/* Accordion content */
body.faq-page .faq-accordion-content {
  background: transparent;
}

body.faq-page .faq-accordion-section {
  margin-bottom: 48px;
}

body.faq-page .faq-accordion-section:last-of-type {
  margin-bottom: 0;
}

body.faq-page .faq-accordion-section:not(:last-child) {
  padding-bottom: 48px;
  margin-bottom: 0;
  border-bottom: 1px solid #e5e7eb;
}

body.faq-page .faq-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--faq-text);
  margin-bottom: 28px;
  scroll-margin-top: 140px;
}

body.faq-page .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FAQ item – glassmorphism card */
body.faq-page .faq-accordion-content .faq-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  opacity: 0;
  transform: translateY(8px);
}

body.faq-page .faq-accordion-content .faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

body.faq-page .faq-accordion-content .faq-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

body.faq-page .faq-accordion-content .faq-item.visible.is-open {
  box-shadow: 0 12px 40px rgba(91, 108, 255, 0.12);
  border-color: rgba(91, 108, 255, 0.2);
}

body.faq-page .faq-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: background 0.2s ease;
}

body.faq-page .faq-item-header:hover {
  background: rgba(91, 108, 255, 0.04);
}

body.faq-page .faq-item-question {
  font-size: 17px;
  font-weight: 600;
  color: var(--faq-text);
}

body.faq-page .faq-item-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f3f4f6;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

body.faq-page .faq-accordion-content .faq-item.is-open .faq-item-icon-wrap {
  background: rgba(91, 108, 255, 0.12);
}

body.faq-page .faq-item-header:hover .faq-item-icon-wrap {
  background: rgba(91, 108, 255, 0.08);
}

body.faq-page .faq-item-icon {
  width: 18px;
  height: 18px;
  color: #6b7280;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease;
}

body.faq-page .faq-accordion-content .faq-item.is-open .faq-item-icon {
  transform: rotate(45deg);
  color: var(--faq-primary);
}

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

body.faq-page .faq-item-content {
  padding: 0 24px 24px 24px;
}

body.faq-page .faq-item-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #6b7280;
  max-width: 720px;
}

body.faq-page .faq-item.hidden-by-search {
  display: none;
}

/* Per-item feedback */
body.faq-page .faq-item-feedback {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.faq-page .faq-item-feedback .faq-feedback-text {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--faq-text);
  margin-bottom: 12px;
}

body.faq-page .faq-item-feedback .faq-feedback-btns {
  display: flex;
  gap: 8px;
}

body.faq-page .faq-item-feedback .faq-feedback-btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--faq-border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.faq-page .faq-item-feedback .faq-feedback-btn:hover {
  border-color: var(--faq-primary);
  background: var(--faq-primary-tint);
}

body.faq-page .faq-item-feedback .faq-feedback-thanks {
  display: inline-block;
  font-size: 14px;
  color: var(--faq-primary);
  font-weight: 500;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.faq-page .faq-item-feedback .faq-feedback-thanks.visible {
  opacity: 1;
}

/* Tablet: stacked layout, category tabs at top */
@media (max-width: 1024px) {
  body.faq-page .faq-main-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.faq-page .faq-sidebar {
    position: static;
    padding: 16px;
    border-radius: 16px;
  }

  body.faq-page .faq-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  body.faq-page .faq-sidebar-link {
    padding: 10px 18px;
    border-left: none;
    margin-left: 0;
    border-radius: 12px;
  }

  body.faq-page .faq-sidebar-link.active {
    background: rgba(91, 108, 255, 0.1);
    box-shadow: none;
  }

  body.faq-page .faq-section-title {
    font-size: 28px;
  }
}

/* Mobile: dropdown, reduced padding */
@media (max-width: 768px) {
  body.faq-page .faq-sidebar {
    display: none;
  }

  body.faq-page .faq-mobile-select-wrap {
    display: block;
  }

  body.faq-page .faq-main {
    padding: 40px 0;
    background: linear-gradient(180deg, #fafbfc 0%, #f5f7fa 100%);
  }

  body.faq-page .faq-main-title {
    font-size: 28px;
  }

  body.faq-page .faq-main-subtitle {
    font-size: 15px;
  }

  body.faq-page .faq-section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  body.faq-page .faq-accordion-section {
    margin-bottom: 40px;
  }

  body.faq-page .faq-item-header {
    padding: 20px;
  }

  body.faq-page .faq-item-question {
    font-size: 16px;
  }

  body.faq-page .faq-item-content {
    padding: 0 20px 20px 20px;
  }
}

body.faq-page .faq-cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  overflow: hidden;
}

body.faq-page .faq-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 80%,
    rgba(91, 108, 255, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

body.faq-page .faq-cta-box {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

body.faq-page .faq-cta-box.visible {
  opacity: 1;
  transform: translateY(0);
}

body.faq-page .faq-cta-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faq-primary);
  margin-bottom: 16px;
}

body.faq-page .faq-cta-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--faq-text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

body.faq-page .faq-cta-desc {
  font-size: 17px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

body.faq-page .faq-cta-buttons {
  position: relative;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

body.faq-page .faq-cta-buttons::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse 70% 40% at 50% 50%,
    rgba(91, 108, 255, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

body.faq-page .faq-btn-primary {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #5b6cff 0%, #7b8aff 100%);
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(91, 108, 255, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

body.faq-page .faq-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(91, 108, 255, 0.45);
}

body.faq-page .faq-btn-secondary {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: var(--faq-primary);
  background: transparent;
  border: 2px solid rgba(91, 108, 255, 0.4);
  border-radius: 12px;
  transition: all 0.3s ease;
}

body.faq-page .faq-btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--faq-primary);
  background: rgba(91, 108, 255, 0.06);
}

body.faq-page .faq-cta-trust {
  font-size: 14px;
  color: #9ca3af;
}

body.faq-page .faq-footer {
  padding: 100px 0 48px;
  background: #fff;
  border-top: 1px solid var(--faq-border);
}

body.faq-page .faq-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(var(--faq-space) * 8);
  margin-bottom: calc(var(--faq-space) * 8);
}

@media (max-width: 992px) {
  body.faq-page .faq-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  body.faq-page .faq-footer-grid {
    grid-template-columns: 1fr;
  }
}

body.faq-page .faq-footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--faq-text);
  margin-bottom: calc(var(--faq-space) * 3);
}

body.faq-page .faq-footer-column ul {
  list-style: none;
}

body.faq-page .faq-footer-column li {
  margin-bottom: calc(var(--faq-space) * 2);
}

body.faq-page .faq-footer-column a {
  font-size: 14px;
  color: var(--faq-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

body.faq-page .faq-footer-column a:hover {
  color: var(--faq-primary);
}

body.faq-page .faq-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: calc(var(--faq-space) * 3);
  padding-top: 48px;
  border-top: 1px solid var(--faq-border);
}

body.faq-page .faq-footer-social {
  display: flex;
  gap: calc(var(--faq-space) * 2);
}

body.faq-page .faq-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--faq-radius-sm);
  background: var(--faq-bg);
  color: var(--faq-text-secondary);
  transition: all 0.3s ease;
}

body.faq-page .faq-footer-social a:hover {
  background: var(--faq-primary-tint);
  color: var(--faq-primary);
}

body.faq-page .faq-footer-legal {
  display: flex;
  gap: calc(var(--faq-space) * 3);
}

body.faq-page .faq-footer-legal a {
  font-size: 14px;
  color: var(--faq-text-secondary);
  text-decoration: none;
}

body.faq-page .faq-footer-legal a:hover {
  color: var(--faq-primary);
}

body.faq-page .faq-no-results {
  padding: 64px;
  text-align: center;
  font-size: 16px;
  color: var(--faq-text-secondary);
  display: none;
}

body.faq-page .faq-no-results.visible {
  display: block;
}

/* ============================================
   HELP CENTER PAGE (help-center.html)
   Premium SaaS Help Center - Stripe/Shopify/Wix hybrid
   ============================================ */
body.help-center-page {
  --hc-primary: #5b6cff;
  --hc-accent: #00c2ff;
  --hc-bg: #f9fafc;
  --hc-text: #111111;
  --hc-text-secondary: #6b7280;
  --hc-border: #eaeaea;
  --hc-radius-sm: 12px;
  --hc-radius-md: 18px;
  --hc-radius-lg: 24px;
  --hc-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --hc-shadow-hover: 0 8px 24px rgba(91, 108, 255, 0.12);
  --hc-glow: 0 0 0 3px rgba(91, 108, 255, 0.2);
  --hc-tint: rgba(91, 108, 255, 0.08);
  --hc-space: 8px;
}

body.help-center-page {
  font-family: "DM Sans", "Neue Haas Grotesk", sans-serif;
  background: var(--hc-bg);
}

body.help-center-page .hc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  body.help-center-page .hc-container {
    padding: 0 24px;
  }
}

/* 1) Hero – Premium SaaS */
body.help-center-page .hc-hero {
  min-height: 550px;
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
  background: #f9fafc;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(91, 108, 255, 0.12),
      transparent 40%
    ),
    radial-gradient(circle at 80% 80%, rgba(0, 194, 255, 0.1), transparent 40%);
}

body.help-center-page .hc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

body.help-center-page .hc-hero-inner {
  position: relative;
  text-align: center;
  opacity: 0;
  animation: hcHeroFadeIn 0.6s ease forwards;
}

@keyframes hcHeroFadeIn {
  to {
    opacity: 1;
  }
}

/* Badge */
body.help-center-page .hc-hero-badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--hc-text);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
}

/* Heading */
body.help-center-page .hc-hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--hc-text);
  max-width: 800px;
  margin: 0 auto 0;
  letter-spacing: -0.02em;
}

body.help-center-page .hc-hero-highlight {
  background: linear-gradient(90deg, #5b6cff, #00c2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
body.help-center-page .hc-hero-desc {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* Search wrapper */
body.help-center-page .hc-search-wrapper {
  max-width: 760px;
  margin: 40px auto 0;
  position: relative;
}

body.help-center-page .hc-search-wrap {
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 20px 0 24px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

body.help-center-page .hc-search-wrap:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

body.help-center-page .hc-search-wrap.focused {
  border-color: var(--hc-primary);
  box-shadow: 0 0 0 3px rgba(91, 108, 255, 0.2);
  transform: scale(1.01);
}

body.help-center-page .hc-search-icon {
  flex-shrink: 0;
  color: #9ca3af;
  margin-right: 16px;
}

body.help-center-page .hc-search-input {
  flex: 1;
  min-width: 0;
  height: auto;
  padding: 0;
  font-size: 16px;
  font-family: inherit;
  border: none;
  background: transparent;
  box-shadow: none;
}

body.help-center-page .hc-search-input:focus {
  outline: none;
}

body.help-center-page .hc-search-kbd {
  flex-shrink: 0;
  margin-left: 12px;
}

body.help-center-page .hc-kbd {
  display: inline-block;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  background: #f3f4f6;
  border-radius: 8px;
}

@media (max-width: 480px) {
  body.help-center-page .hc-search-kbd {
    display: none;
  }
}

/* Search dropdown */
body.help-center-page .hc-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--hc-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

body.help-center-page .hc-search-wrapper.open .hc-search-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.help-center-page .hc-search-dropdown-section {
  margin-bottom: 16px;
}

body.help-center-page .hc-search-dropdown-section:last-child {
  margin-bottom: 0;
}

body.help-center-page .hc-search-dropdown-title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

body.help-center-page .hc-search-dropdown-item {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--hc-text);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}

body.help-center-page .hc-search-dropdown-item:hover {
  background: var(--hc-tint);
}

/* Pills */
body.help-center-page .hc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

body.help-center-page .hc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--hc-text-secondary);
  background: #f3f4f6;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

body.help-center-page .hc-pill:hover {
  background: rgba(91, 108, 255, 0.08);
  border-color: rgba(91, 108, 255, 0.3);
  color: var(--hc-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 108, 255, 0.12);
}

body.help-center-page .hc-pill-icon {
  font-size: 14px;
}

/* Trust */
body.help-center-page .hc-hero-trust {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 30px;
}

/* Stagger pills (CSS animation) */
body.help-center-page .hc-pill:nth-child(1) {
  animation: hcPillIn 0.4s ease 0.1s both;
}
body.help-center-page .hc-pill:nth-child(2) {
  animation: hcPillIn 0.4s ease 0.15s both;
}
body.help-center-page .hc-pill:nth-child(3) {
  animation: hcPillIn 0.4s ease 0.2s both;
}
body.help-center-page .hc-pill:nth-child(4) {
  animation: hcPillIn 0.4s ease 0.25s both;
}
body.help-center-page .hc-pill:nth-child(5) {
  animation: hcPillIn 0.4s ease 0.3s both;
}

@keyframes hcPillIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.help-center-page .hc-pill:hover {
  animation: none;
}

@media (max-width: 768px) {
  body.help-center-page .hc-hero {
    min-height: auto;
    padding: 40px 0 40px;
  }
}

@media (max-width: 600px) {
  body.help-center-page .hc-hero-title {
    font-size: 32px;
  }
  body.help-center-page .hc-hero-desc {
    font-size: 16px;
  }
}

/* 2) Categories Grid */
body.help-center-page .hc-categories {
  position: relative;
  padding: 40px 0;
  background: #fff;
}

body.help-center-page .hc-categories-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(91, 108, 255, 0.06),
    transparent 60%
  );
  pointer-events: none;
}

body.help-center-page .hc-categories-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 8px;
}

body.help-center-page .hc-categories-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--hc-text);
  text-align: center;
  margin-bottom: 0;
}

body.help-center-page .hc-categories-subtext {
  max-width: 600px;
  margin: 16px auto 60px;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  text-align: center;
}

body.help-center-page .hc-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--hc-text);
  margin-bottom: 40px;
  text-align: center;
}

body.help-center-page .hc-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 1024px) {
  body.help-center-page .hc-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  body.help-center-page .hc-category-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.help-center-page .hc-category-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  body.help-center-page .hc-category-icon-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  body.help-center-page .hc-category-card h3,
  body.help-center-page .hc-category-card p {
    text-align: center;
  }

  body.help-center-page .hc-category-badge {
    margin-left: auto;
    margin-right: auto;
  }

  body.help-center-page .hc-category-arrow {
    position: static;
    transform: none;
    margin-top: 16px;
  }
}

body.help-center-page .hc-category-card {
  display: block;
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

body.help-center-page .hc-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(91, 108, 255, 0.4);
}

body.help-center-page .hc-category-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(91, 108, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(91, 108, 255, 0.06);
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

body.help-center-page .hc-category-card:hover .hc-category-icon-wrap {
  transform: scale(1.02);
}

body.help-center-page .hc-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.help-center-page .hc-category-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--hc-primary);
  transition: transform 0.3s ease;
}

body.help-center-page .hc-category-card:hover .hc-category-icon svg {
  transform: scale(1.1);
}

body.help-center-page .hc-category-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--hc-text);
  margin-bottom: 8px;
}

body.help-center-page .hc-category-card p {
  font-size: 14px;
  color: var(--hc-text-secondary);
  margin-bottom: 20px;
}

body.help-center-page .hc-category-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #5b6cff;
  background: rgba(91, 108, 255, 0.08);
  border-radius: 999px;
}

body.help-center-page .hc-category-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--hc-text-secondary);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

body.help-center-page .hc-category-card:hover .hc-category-arrow {
  transform: translateY(-50%) translateX(4px);
  color: var(--hc-primary);
}

/* Category cards fade-up on scroll */
body.help-center-page .hc-category-card {
  opacity: 0;
  transform: translateY(24px);
}

body.help-center-page .hc-category-card.visible {
  opacity: 1;
  transform: translateY(0);
}

body.help-center-page .hc-category-card.visible:hover {
  transform: translateY(-8px);
}

body.help-center-page .hc-category-card.visible:nth-child(1) {
  transition-delay: 0s;
}
body.help-center-page .hc-category-card.visible:nth-child(2) {
  transition-delay: 0.05s;
}
body.help-center-page .hc-category-card.visible:nth-child(3) {
  transition-delay: 0.1s;
}
body.help-center-page .hc-category-card.visible:nth-child(4) {
  transition-delay: 0.15s;
}
body.help-center-page .hc-category-card.visible:nth-child(5) {
  transition-delay: 0.2s;
}
body.help-center-page .hc-category-card.visible:nth-child(6) {
  transition-delay: 0.25s;
}
body.help-center-page .hc-category-card.visible:nth-child(7) {
  transition-delay: 0.3s;
}
body.help-center-page .hc-category-card.visible:nth-child(8) {
  transition-delay: 0.35s;
}

/* 3) Popular Articles */
body.help-center-page .hc-popular {
  position: relative;
  padding: 40px 0;
  background: #f9fafc;
}

body.help-center-page .hc-popular-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 50%,
    rgba(91, 108, 255, 0.04),
    transparent 70%
  );
  pointer-events: none;
}

body.help-center-page .hc-popular-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #9ca3af;
  margin-bottom: 12px;
}

body.help-center-page .hc-popular-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--hc-text);
  margin-bottom: 0;
}

body.help-center-page .hc-popular-subtext {
  font-size: 16px;
  color: #6b7280;
  margin: 12px 0 60px;
}

body.help-center-page .hc-popular-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  body.help-center-page .hc-popular-grid {
    grid-template-columns: 1fr;
  }
}

body.help-center-page .hc-popular-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

body.help-center-page .hc-popular-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(91, 108, 255, 0.3);
}

body.help-center-page .hc-popular-accent {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  min-height: 40px;
  border-radius: 4px;
  background: linear-gradient(180deg, #5b6cff, #00c2ff);
}

body.help-center-page .hc-popular-content {
  flex: 1;
  margin-left: 20px;
}

body.help-center-page .hc-popular-content h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--hc-text);
  margin-bottom: 6px;
}

body.help-center-page .hc-popular-content p {
  font-size: 14px;
  color: #6b7280;
  margin-top: 6px;
}

body.help-center-page .hc-popular-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 1;
  opacity: 0.6;
  color: var(--hc-text-secondary);
  margin-left: 20px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    color 0.3s ease;
}

body.help-center-page .hc-popular-item:hover .hc-popular-arrow {
  transform: translateX(6px);
  opacity: 1;
  color: var(--hc-primary);
}

/* 4) Guides */
body.help-center-page .hc-guides {
  position: relative;
  padding: 40px 0;
  background: #ffffff;
}

body.help-center-page .hc-guides-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 50%,
    rgba(91, 108, 255, 0.05),
    transparent 70%
  );
  pointer-events: none;
}

body.help-center-page .hc-guides-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #9ca3af;
  margin-bottom: 12px;
}

body.help-center-page .hc-guides-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--hc-text);
  margin-bottom: 0;
}

body.help-center-page .hc-guides-subtext {
  font-size: 16px;
  color: #6b7280;
  margin: 12px 0 60px;
}

body.help-center-page .hc-guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

body.help-center-page .hc-guide-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #eaeaea;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  opacity: 0;
  transform: translateY(24px);
}

body.help-center-page .hc-guide-card.hc-guide-card--visible {
  opacity: 1;
  transform: translateY(0);
}

body.help-center-page .hc-guide-card.hc-guide-card--visible:hover {
  transform: translateY(-6px);
}

body.help-center-page .hc-guide-card--reverse {
  direction: rtl;
}

body.help-center-page .hc-guide-card--reverse > * {
  direction: ltr;
}

body.help-center-page .hc-guide-card:nth-child(1) {
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s,
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
body.help-center-page .hc-guide-card:nth-child(2) {
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.08s,
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
body.help-center-page .hc-guide-card:nth-child(3) {
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.16s,
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

body.help-center-page .hc-guide-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(91, 108, 255, 0.4);
}

@media (max-width: 768px) {
  body.help-center-page .hc-guide-card,
  body.help-center-page .hc-guide-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  body.help-center-page .hc-guide-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  body.help-center-page .hc-guide-badge {
    margin-left: auto;
    margin-right: auto;
  }

  body.help-center-page .hc-guide-content h3,
  body.help-center-page .hc-guide-content p {
    text-align: center;
  }

  body.help-center-page .hc-guide-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

body.help-center-page .hc-guide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 200px;
  border-radius: 24px;
  overflow: hidden;
}

body.help-center-page .hc-guide-visual svg {
  width: 64px;
  height: 64px;
  color: var(--hc-primary);
  opacity: 0.9;
}

body.help-center-page .hc-guide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

body.help-center-page .hc-guide-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--hc-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

body.help-center-page .hc-guide-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #5b6cff;
  background: rgba(91, 108, 255, 0.08);
  border-radius: 999px;
  margin-bottom: 16px;
}

body.help-center-page .hc-guide-content p {
  font-size: 16px;
  color: var(--hc-text-secondary);
  line-height: 1.6;
}

body.help-center-page .hc-guide-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  border-radius: 12px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

body.help-center-page .hc-guide-card:hover .hc-guide-btn {
  background: #4a5aeb;
  transform: translateY(-2px);
}

/* 5) Learning Block */
body.help-center-page .hc-learning {
  padding: 40px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(245, 243, 255, 0.5) 100%
  );
}

body.help-center-page .hc-learning-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

body.help-center-page .hc-learning-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 992px) {
  body.help-center-page .hc-learning-layout {
    grid-template-columns: 1fr;
  }
}

body.help-center-page .hc-learning-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.help-center-page .hc-learning-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eeeeee;
  border-left: 4px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

body.help-center-page .hc-learning-step:hover {
  background: rgba(91, 108, 255, 0.04);
  border-color: rgba(91, 108, 255, 0.2);
}

body.help-center-page .hc-learning-step.active {
  background: rgba(91, 108, 255, 0.08);
  border-left-color: var(--hc-primary);
  box-shadow: 0 4px 16px rgba(91, 108, 255, 0.12);
}

body.help-center-page .hc-learning-step-num {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.5px;
}

body.help-center-page .hc-learning-step.active .hc-learning-step-num {
  color: var(--hc-primary);
}

body.help-center-page .hc-learning-step-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.help-center-page .hc-learning-step-icon svg {
  width: 20px;
  height: 20px;
  stroke: #6b7280;
  transition: stroke 0.3s ease;
}

body.help-center-page .hc-learning-step:hover .hc-learning-step-icon svg,
body.help-center-page .hc-learning-step.active .hc-learning-step-icon svg {
  stroke: var(--hc-primary);
}

body.help-center-page .hc-learning-step-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.help-center-page .hc-learning-step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--hc-text);
}

body.help-center-page .hc-learning-step-desc {
  font-size: 13px;
  color: #6b7280;
}

body.help-center-page .hc-learning-preview {
  position: relative;
  padding: 48px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

body.help-center-page .hc-learning-preview-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
}

body.help-center-page .hc-learning-preview-visual svg {
  width: 100%;
  max-width: 280px;
  height: auto;
  color: var(--hc-primary);
}

body.help-center-page .hc-learning-image {
  width: 50%;
  height: auto;
  display: block;
  border-radius: 16px;
}

body.help-center-page .hc-learning-panel {
  display: none;
}

body.help-center-page .hc-learning-panel.active {
  display: block;
}

body.help-center-page .hc-learning-preview-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--hc-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

body.help-center-page .hc-learning-title-highlight {
  background: linear-gradient(135deg, #5b6cff 0%, #00c2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.help-center-page .hc-learning-preview-desc {
  font-size: 16px;
  color: var(--hc-text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 24px;
}

body.help-center-page .hc-learning-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(91, 108, 255, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

body.help-center-page .hc-learning-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 108, 255, 0.4);
}

/* 6) Support Cards */
body.help-center-page .hc-support-cards {
  padding: 40px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(245, 243, 255, 0.4) 50%,
    rgba(240, 248, 255, 0.3) 100%
  );
}

body.help-center-page .hc-support-header {
  text-align: center;
  margin-bottom: 56px;
}

body.help-center-page .hc-support-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--hc-text);
  margin-bottom: 12px;
}

body.help-center-page .hc-support-subtitle {
  font-size: 18px;
  color: #6b7280;
}

body.help-center-page .hc-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 992px) {
  body.help-center-page .hc-support-grid {
    grid-template-columns: 1fr;
  }
  body.help-center-page .hc-support-card--featured {
    transform: none;
  }
  body.help-center-page .hc-support-card--featured:hover {
    transform: translateY(-6px);
  }
  body.help-center-page .hc-support-card {
    text-align: center;
    align-items: center;
  }
  body.help-center-page .hc-support-icon-wrap {
    margin-left: auto;
    margin-right: auto;
  }
  body.help-center-page .hc-support-card h3,
  body.help-center-page .hc-support-card p {
    text-align: center;
  }
  body.help-center-page .hc-support-badge {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}

body.help-center-page .hc-support-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #eeeeee;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

body.help-center-page .hc-support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(91, 108, 255, 0.2);
}

body.help-center-page .hc-support-card--featured {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(91, 108, 255, 0.12);
  border-color: rgba(91, 108, 255, 0.25);
}

body.help-center-page .hc-support-card--featured:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 24px 56px rgba(91, 108, 255, 0.18);
}

body.help-center-page .hc-support-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(135deg, #5b6cff 0%, #7b8aff 100%);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(91, 108, 255, 0.4);
}

body.help-center-page .hc-support-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    rgba(91, 108, 255, 0.1) 0%,
    rgba(0, 194, 255, 0.06) 100%
  );
  border-radius: 50%;
}

body.help-center-page .hc-support-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--hc-primary);
}

body.help-center-page .hc-support-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--hc-text);
  margin-bottom: 12px;
}

body.help-center-page .hc-support-card p {
  flex: 1;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

body.help-center-page .hc-support-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(91, 108, 255, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

body.help-center-page .hc-support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 108, 255, 0.4);
}

body.help-center-page .hc-support-btn--secondary {
  color: var(--hc-primary);
  background: transparent;
  border: 2px solid rgba(91, 108, 255, 0.4);
  box-shadow: none;
}

body.help-center-page .hc-support-btn--secondary:hover {
  background: rgba(91, 108, 255, 0.06);
  border-color: var(--hc-primary);
}

body.help-center-page
  .hc-support-card:hover
  .hc-support-btn:not(.hc-support-btn--secondary) {
  box-shadow: 0 6px 20px rgba(91, 108, 255, 0.4);
}

/* 7) CTA Block */
body.help-center-page .hc-cta {
  padding: 40px 0;
}

body.help-center-page .hc-cta-box {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px;
  background: var(--hc-tint);
  border-radius: 24px;
  text-align: center;
}

body.help-center-page .hc-cta-box h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--hc-text);
  margin-bottom: 16px;
}

body.help-center-page .hc-cta-box p {
  font-size: 16px;
  color: var(--hc-text-secondary);
  margin-bottom: 32px;
}

body.help-center-page .hc-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

body.help-center-page .hc-cta-primary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  border-radius: var(--hc-radius-sm);
  text-decoration: none;
  box-shadow: var(--hc-shadow);
  transition: all 0.3s ease;
}

body.help-center-page .hc-cta-primary:hover {
  box-shadow: var(--hc-shadow-hover);
}

body.help-center-page .hc-cta-secondary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--hc-primary);
  background: transparent;
  border: 2px solid var(--hc-primary);
  border-radius: var(--hc-radius-sm);
  text-decoration: none;
  transition: all 0.3s ease;
}

body.help-center-page .hc-cta-secondary:hover {
  box-shadow: var(--hc-glow);
}

/* 8) Footer */
body.help-center-page .hc-footer {
  padding: 100px 0 48px;
  background: #fff;
  border-top: 1px solid var(--hc-border);
}

body.help-center-page .hc-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  body.help-center-page .hc-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  body.help-center-page .hc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

body.help-center-page .hc-footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--hc-text);
  margin-bottom: 16px;
}

body.help-center-page .hc-footer-column ul {
  list-style: none;
}

body.help-center-page .hc-footer-column li {
  margin-bottom: 12px;
}

body.help-center-page .hc-footer-column a {
  font-size: 14px;
  color: var(--hc-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

body.help-center-page .hc-footer-column a:hover {
  color: var(--hc-primary);
}

body.help-center-page .hc-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--hc-border);
}

body.help-center-page .hc-footer-social {
  display: flex;
  gap: 12px;
}

body.help-center-page .hc-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--hc-radius-sm);
  background: var(--hc-bg);
  color: var(--hc-text-secondary);
  transition: all 0.3s ease;
}

body.help-center-page .hc-footer-social a:hover {
  background: var(--hc-tint);
  color: var(--hc-primary);
}

body.help-center-page .hc-footer-copy {
  font-size: 14px;
  color: var(--hc-text-secondary);
}
/* ============================================= */
/* Affiliate Page Styles                         */
/* ============================================= */

/* Affiliate page specific variables */
body.affiliate-page {
  --affiliate-primary: #6366f1;
  --affiliate-primary-dark: #4f46e5;
  --affiliate-primary-light: #818cf8;
}

/* Affiliate Page Header Styles */
body.affiliate-page .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    padding 0.3s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}

body.affiliate-page .header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.affiliate-page .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

body.affiliate-page .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

body.affiliate-page .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

body.affiliate-page .logo a:hover {
  opacity: 0.8;
}

body.affiliate-page .logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

body.affiliate-page .logo a:hover .logo-img {
  transform: scale(1.05);
}

body.affiliate-page .nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* Header Drawer (Desktop: inline, Mobile: off-canvas) */
body.affiliate-page .header-drawer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

body.affiliate-page .mobile-drawer-overlay {
  display: none;
}

/* Hide mobile menu logo on desktop */
body.affiliate-page .mobile-menu-logo {
  display: none;
}

body.affiliate-page .nav-link {
  text-decoration: none;
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  white-space: nowrap;
}

body.affiliate-page .nav-link::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.affiliate-page .nav-link:hover {
  color: #000000;
  background: rgba(37, 99, 235, 0.05);
}

body.affiliate-page .nav-link:hover::before {
  width: calc(100% - 32px);
}

body.affiliate-page .nav-link.active {
  color: #000000;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.08);
}

body.affiliate-page .nav-link.active::before {
  width: calc(100% - 32px);
}

body.affiliate-page .btn-get-started {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

body.affiliate-page .btn-get-started::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

body.affiliate-page .btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

body.affiliate-page .btn-get-started:hover::before {
  left: 100%;
}

body.affiliate-page .btn-get-started:active {
  transform: translateY(0);
}

body.affiliate-page .btn-get-started svg {
  transition: transform 0.3s ease;
}

.btn-get-started:hover svg {
  transform: translateX(2px);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #1f2937;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

/* Hero Section - Premium Redesign */
.hero {
  padding: 50px 0 50px;
  background: linear-gradient(
    165deg,
    #f8f7ff 0%,
    #ede9fe 25%,
    #f5f3ff 50%,
    #faf5ff 75%,
    #ffffff 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Animated gradient background */
.hero-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.08) 0%,
    rgba(99, 102, 241, 0.05) 25%,
    rgba(168, 85, 247, 0.06) 50%,
    rgba(139, 92, 246, 0.04) 75%,
    transparent 100%
  );
  animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* Floating decorative shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 20s ease-in-out infinite;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.15) 0%,
    transparent 70%
  );
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.12) 0%,
    transparent 70%
  );
  bottom: -15%;
  left: -10%;
  animation-delay: -5s;
}

.hero-shape-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.1) 0%,
    transparent 70%
  );
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}

.hero-shape-4 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.08) 0%,
    transparent 70%
  );
  top: 20%;
  right: 25%;
  animation-delay: -7s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -30px) rotate(5deg);
  }
  50% {
    transform: translate(-10px, 20px) rotate(-3deg);
  }
  75% {
    transform: translate(15px, 10px) rotate(2deg);
  }
}

/* Grid pattern overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero text animations */
.hero-text {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.hero-badge svg {
  color: #8b5cf6;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #8b5cf6;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
  max-width: 520px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-trust-avatars {
  display: flex;
  align-items: center;
}

.hero-trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.hero-trust-avatar:first-child {
  margin-left: 0;
}

.hero-trust-text {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-trust-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: white;
  box-shadow:
    0 4px 15px rgba(124, 58, 237, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(124, 58, 237, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: var(--text-dark);
  border: 2px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
  border-color: #7c3aed;
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15);
}

/* Hero Visual - Image */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: floatImage 6s ease-in-out infinite;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.dashboard-wrapper {
  position: relative;
  transform-style: preserve-3d;
  animation: floatDashboard 6s ease-in-out infinite;
}

@keyframes floatDashboard {
  0%,
  100% {
    transform: translateY(0) rotateX(2deg) rotateY(-3deg);
  }
  50% {
    transform: translateY(-15px) rotateX(0deg) rotateY(-1deg);
  }
}

.dashboard-mockup {
  /* background: rgba(255, 255, 255, 0.85); */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* border-radius: 24px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.9); */
  padding: 28px;
  /* border: 1px solid rgba(139, 92, 246, 0.1); */
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .dashboard-mockup:hover {
  box-shadow:
    0 35px 60px -15px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 0 60px rgba(139, 92, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
} */

/* Glow effect behind dashboard */
.dashboard-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    ellipse,
    rgba(139, 92, 246, 0.2) 0%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.mockup-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-title-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-title-icon svg {
  width: 18px;
  height: 18px;
  color: white;
}

.mockup-badge {
  padding: 6px 14px;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mockup-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.earnings-display {
  text-align: center;
  margin-bottom: 28px;
  padding: 24px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.05) 0%,
    rgba(99, 102, 241, 0.03) 100%
  );
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.08);
}

.earnings-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.earnings-amount {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.earnings-growth {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #16a34a;
  font-size: 15px;
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 100px;
}

.earnings-growth svg {
  animation: bounceUp 2s ease-in-out infinite;
}

@keyframes bounceUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.chart-container {
  position: relative;
  height: 140px;
  margin-bottom: 24px;
  background: linear-gradient(
    180deg,
    rgba(139, 92, 246, 0.08) 0%,
    transparent 100%
  );
  border-radius: 16px;
  overflow: hidden;
  padding: 16px;
}

.chart-grid {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-grid-line {
  width: 100%;
  height: 1px;
  background: rgba(139, 92, 246, 0.1);
}

.chart-svg {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  height: 80px;
}

.chart-area {
  fill: url(#chartGradient);
  opacity: 0.3;
}

.chart-line-path {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-dot {
  fill: #8b5cf6;
  filter: drop-shadow(0 2px 4px rgba(139, 92, 246, 0.3));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 18px 16px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(139, 92, 246, 0.08);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.2);
}

.stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Floating stat popups */
.floating-stats {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
}

.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatStat 5s ease-in-out infinite;
}

.floating-stat-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.floating-stat-2 {
  bottom: 25%;
  left: -30px;
  animation-delay: -2.5s;
}

@keyframes floatStat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-stat-icon.green {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #16a34a;
}

.floating-stat-icon.purple {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  color: #7c3aed;
}

.floating-stat-icon svg {
  width: 18px;
  height: 18px;
}

.floating-stat-content {
  display: flex;
  flex-direction: column;
}

.floating-stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.floating-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section-gray {
  background: var(--bg-gray);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Commission Section - Premium Redesign */
.commission-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

/* Background decorative elements */
.commission-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.commission-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.commission-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.commission-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.12) 0%,
    transparent 70%
  );
  top: -10%;
  left: -10%;
}

.commission-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.1) 0%,
    transparent 70%
  );
  bottom: -10%;
  right: -5%;
}

.commission-shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.08) 0%,
    transparent 70%
  );
  top: 50%;
  right: 30%;
  transform: translateY(-50%);
}

/* Section Header */
.commission-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 2;
}

.commission-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.commission-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #8b5cf6;
  border-radius: 50%;
}

.commission-section-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.commission-section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Commission Cards Grid */
.commission-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* Base Card Styles */
.commission-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.commission-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.commission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, transparent);
  transition: background 0.4s ease;
}

.commission-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.2);
}

.commission-card:hover::before {
  background: linear-gradient(90deg, #8b5cf6, #6366f1);
}

/* Featured Card (First Card) */
.commission-card.featured {
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.08) 0%,
    rgba(99, 102, 241, 0.05) 100%
  );
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow:
    0 8px 32px rgba(139, 92, 246, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 40px 36px;
}

.commission-card.featured::before {
  background: linear-gradient(90deg, #8b5cf6, #6366f1, #a855f7);
  height: 4px;
}

.commission-card.featured::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.08) 0%,
    transparent 50%
  );
  animation: featuredGlow 6s ease-in-out infinite;
}

@keyframes featuredGlow {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.5;
  }
  50% {
    transform: translate(10%, 10%);
    opacity: 0.8;
  }
}

.commission-card.featured:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 50px rgba(139, 92, 246, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Popular Badge */
.commission-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  z-index: 2;
}

/* Card Icon */
.commission-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.15) 0%,
    rgba(99, 102, 241, 0.1) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.commission-card:hover .commission-icon {
  transform: scale(1.05);
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2) 0%,
    rgba(99, 102, 241, 0.15) 100%
  );
}

.commission-card.featured .commission-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.commission-icon svg {
  width: 28px;
  height: 28px;
  color: #7c3aed;
}

.commission-card.featured .commission-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

/* Commission Number */
.commission-number {
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.commission-card.featured .commission-number {
  font-size: 64px;
}

.commission-number .percent {
  font-size: 0.6em;
  vertical-align: top;
  margin-left: 2px;
}

/* Card Title */
.commission-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.commission-card.featured .commission-title {
  font-size: 20px;
}

/* Card Description */
.commission-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.commission-card.featured .commission-desc {
  font-size: 16px;
}

/* Trust Line */
.commission-trust {
  text-align: center;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.commission-trust-inner {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.commission-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.commission-trust-item svg {
  width: 18px;
  height: 18px;
  color: #22c55e;
}

.commission-trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* How It Works - Premium Redesign */
.how-it-works-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Background decorative elements */
.how-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.how-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: howFloat 20s ease-in-out infinite;
}

.how-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 70%
  );
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.how-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.08) 0%,
    transparent 70%
  );
  bottom: 10%;
  right: -5%;
  animation-delay: -7s;
}

.how-shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.06) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes howFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

/* Section Header */
.how-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 2;
}

.how-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.how-label svg {
  width: 16px;
  height: 16px;
}

.how-section-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.how-section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

/* Step Card */
.step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 48px 36px 44px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #6366f1, #a855f7);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 24px 48px rgba(139, 92, 246, 0.15),
    0 12px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(139, 92, 246, 0.15);
}

.step-card:hover::before {
  opacity: 1;
}

/* Watermark Number */
.step-watermark {
  position: absolute;
  top: 0px;
  right: 5px;
  font-size: 100px;
  font-weight: 900;
  color: rgba(139, 92, 246, 0.04);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: all 0.4s ease;
}

.step-card:hover .step-watermark {
  color: rgba(139, 92, 246, 0.08);
  transform: scale(1.05);
}

/* Step Icon */
.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.12) 0%,
    rgba(99, 102, 241, 0.08) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-icon {
  transform: scale(1.08);
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.18) 0%,
    rgba(99, 102, 241, 0.12) 100%
  );
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.step-icon svg {
  width: 36px;
  height: 36px;
  color: #7c3aed;
  transition: transform 0.3s ease;
}

.step-card:hover .step-icon svg {
  transform: scale(1.1);
}

/* Step Number Badge */
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

/* Step Title */
.step-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

/* Step Description */
.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Bottom Banner */
.how-banner {
  text-align: center;
  margin-top: 64px;
  position: relative;
  z-index: 2;
}

.how-banner-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 36px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow:
    0 8px 32px rgba(139, 92, 246, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.how-banner-inner:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(139, 92, 246, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.how-banner-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-banner-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.how-banner-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.how-banner-text span {
  color: #7c3aed;
}

/* Who Can Join - Premium Redesign */
.who-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

/* Background elements */
.who-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.who-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(139, 92, 246, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(99, 102, 241, 0.05) 0%,
      transparent 50%
    );
}

/* Section Header */
.who-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 2;
}

.who-section-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.who-section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Audience Grid - 2 rows */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.audience-grid-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 680px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 2;
}

/* Audience Card */
.audience-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
}

.audience-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.03) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.audience-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #6366f1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px rgba(139, 92, 246, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(139, 92, 246, 0.1);
}

.audience-card:hover::before {
  opacity: 1;
}

.audience-card:hover::after {
  transform: scaleX(1);
}

/* Card Content */
.audience-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* Audience Icon */
.audience-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.12) 0%,
    rgba(99, 102, 241, 0.08) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card:hover .audience-icon {
  transform: scale(1.08);
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.18) 0%,
    rgba(99, 102, 241, 0.12) 100%
  );
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}

.audience-icon svg {
  width: 28px;
  height: 28px;
  color: #7c3aed;
  transition: transform 0.3s ease;
}

.audience-card:hover .audience-icon svg {
  transform: scale(1.1);
}

/* Card Text Content */
.audience-content {
  flex: 1;
  min-width: 0;
}

.audience-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.audience-arrow {
  width: 24px;
  height: 24px;
  color: #c4b5fd;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.audience-card:hover .audience-arrow {
  color: #7c3aed;
  transform: translateX(4px);
}

.audience-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Bottom Area */
.who-bottom {
  text-align: center;
  position: relative;
  z-index: 2;
}

.who-statement {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.who-statement span {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.who-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 15px rgba(124, 58, 237, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.who-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.who-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(124, 58, 237, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

.who-cta:hover::before {
  left: 100%;
}

.who-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.who-cta:hover svg {
  transform: translateX(3px);
}

/* Benefits Section - Premium Redesign */
.benefits-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Background elements */
.benefits-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.benefits-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.benefits-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.08) 0%,
    transparent 70%
  );
  top: -10%;
  right: -10%;
}

.benefits-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.06) 0%,
    transparent 70%
  );
  bottom: 0;
  left: -5%;
}

/* Section Header */
.benefits-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 2;
}

.benefits-section-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.benefits-section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.benefits-trust-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
}

.benefits-trust-line svg {
  width: 16px;
  height: 16px;
}

/* Featured Benefit Card */
.benefit-featured {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.08) 0%,
    rgba(99, 102, 241, 0.04) 50%,
    rgba(168, 85, 247, 0.06) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 32px;
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow:
    0 8px 32px rgba(139, 92, 246, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 2;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-featured.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #6366f1, #a855f7);
}

.benefit-featured::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.benefit-featured:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(139, 92, 246, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.benefit-featured-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.benefit-featured:hover .benefit-featured-icon {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.4);
}

.benefit-featured-icon svg {
  width: 48px;
  height: 48px;
  color: white;
}

.benefit-featured-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.benefit-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.benefit-featured-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #8b5cf6;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.benefit-featured-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.benefit-featured-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* Benefit Card */
.benefit-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #6366f1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(139, 92, 246, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(139, 92, 246, 0.15);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

/* Benefit Icon */
.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.12) 0%,
    rgba(99, 102, 241, 0.08) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  position: relative;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.08);
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.18) 0%,
    rgba(99, 102, 241, 0.12) 100%
  );
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  color: #7c3aed;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
  transform: scale(1.1);
}

/* Benefit Content */
.benefit-content {
  flex: 1;
  min-width: 0;
}

.benefit-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.benefit-arrow {
  width: 20px;
  height: 20px;
  color: #c4b5fd;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.benefit-card:hover .benefit-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #7c3aed;
}

.benefit-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Dashboard Preview - Premium Redesign */
.dashboard-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

/* Background elements */
.dashboard-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.dashboard-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.dashboard-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 70%
  );
  top: 10%;
  left: -10%;
}

.dashboard-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.08) 0%,
    transparent 70%
  );
  bottom: 10%;
  right: -5%;
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Side - Dashboard Visual */
.dashboard-visual {
  position: relative;
  perspective: 1200px;
}

.dashboard-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 25px 60px -12px rgba(139, 92, 246, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: floatDashboardImage 6s ease-in-out infinite;
}

.dashboard-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

@keyframes floatDashboardImage {
  0%,
  100% {
    transform: translateY(0) rotateX(2deg) rotateY(-2deg);
  }
  50% {
    transform: translateY(-10px) rotateX(0deg) rotateY(0deg);
  }
}

.dashboard-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(
    ellipse,
    rgba(139, 92, 246, 0.15) 0%,
    transparent 60%
  );
  filter: blur(50px);
  z-index: 0;
  animation: dashboardGlow 5s ease-in-out infinite;
}

@keyframes dashboardGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.dashboard-wrapper {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  animation: dashboardFloat 8s ease-in-out infinite;
}

@keyframes dashboardFloat {
  0%,
  100% {
    transform: translateY(0) rotateX(3deg) rotateY(-4deg);
  }
  50% {
    transform: translateY(-12px) rotateX(1deg) rotateY(-2deg);
  }
}

/* Floating Stat Badges */
.dashboard-badges {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10;
}

.dashboard-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: badgeFloat 5s ease-in-out infinite;
}

.dashboard-badge-1 {
  top: -10px;
  right: 20px;
  animation-delay: 0s;
}

.dashboard-badge-2 {
  top: 40%;
  left: -30px;
  animation-delay: -1.5s;
}

.dashboard-badge-3 {
  bottom: 15%;
  right: -20px;
  animation-delay: -3s;
}

.dashboard-badge {
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.dashboard-badge.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: badgeFloat 5s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.dashboard-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-badge-icon.green {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #16a34a;
}

.dashboard-badge-icon.purple {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  color: #7c3aed;
}

.dashboard-badge-icon.blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2563eb;
}

.dashboard-badge-icon svg {
  width: 18px;
  height: 18px;
}

.dashboard-badge-content {
  display: flex;
  flex-direction: column;
}

.dashboard-badge-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.dashboard-badge-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Dashboard Mockup */
.dashboard-mockup-premium {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.12),
    0 10px 25px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.dashboard-mockup-inner {
  background: #1a1a2e;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  min-height: 320px;
}

.dashboard-sidebar {
  width: 180px;
  background: #0f0f1a;
  padding: 20px 12px;
  flex-shrink: 0;
}

.dashboard-sidebar-logo {
  padding: 8px 12px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-sidebar-logo span {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  border-radius: 6px;
}

.dashboard-nav-item {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.dashboard-nav-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.dashboard-nav-item.active {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: white;
}

.dashboard-nav-item.active svg {
  opacity: 1;
}

.dashboard-main {
  flex: 1;
  padding: 20px;
  background: #1e1e32;
}

.dashboard-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dashboard-main-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.dashboard-main-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
}

.dashboard-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dashboard-stat-mini {
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-stat-mini-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.dashboard-stat-mini-value {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.dashboard-chart-area {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  height: 120px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-chart-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
}

/* Right Side - Features */
.dashboard-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-features-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.dashboard-features-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Feature Card */
.dashboard-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(20px);
}

.dashboard-feature.visible {
  opacity: 1;
  transform: translateX(0);
}

.dashboard-feature:hover {
  transform: translateY(-4px) translateX(0);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.15);
}

.dashboard-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.12) 0%,
    rgba(99, 102, 241, 0.08) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.dashboard-feature:hover .dashboard-feature-icon {
  transform: scale(1.08);
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.18) 0%,
    rgba(99, 102, 241, 0.12) 100%
  );
}

.dashboard-feature-icon svg {
  width: 22px;
  height: 22px;
  color: #7c3aed;
}

.dashboard-feature-content {
  flex: 1;
}

.dashboard-feature-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.dashboard-feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.dashboard-feature-badge {
  padding: 3px 10px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.dashboard-feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Bottom CTA */
.dashboard-cta {
  margin-top: 64px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.dashboard-cta-text {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.dashboard-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dashboard-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 15px rgba(124, 58, 237, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

.dashboard-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(124, 58, 237, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

.dashboard-cta-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.dashboard-cta-primary:hover svg {
  transform: translateX(3px);
}

.dashboard-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dashboard-cta-secondary:hover {
  color: #7c3aed;
}

.dashboard-cta-secondary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.dashboard-cta-secondary:hover svg {
  transform: scale(1.1);
}

/* Resources Section - Premium Redesign */
.resources-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Background elements */
.resources-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.resources-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.resources-shape-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.08) 0%,
    transparent 70%
  );
  top: 5%;
  right: -10%;
}

.resources-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.06) 0%,
    transparent 70%
  );
  bottom: 10%;
  left: -8%;
}

/* Section Header */
.resources-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.resources-label {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(99, 102, 241, 0.08) 100%
  );
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.resources-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.resources-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.resources-support {
  font-size: 15px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Resources Grid */
.resources-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* Resource Card */
.resource-card-premium {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(25px);
  position: relative;
  overflow: hidden;
}

.resource-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 50%, #a78bfa 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.resource-card-premium.visible {
  opacity: 1;
  transform: translateY(0);
}

.resource-card-premium:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(139, 92, 246, 0.12),
    0 8px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(139, 92, 246, 0.15);
}

.resource-card-premium:hover::before {
  opacity: 1;
}

.resource-icon-premium {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.12) 0%,
    rgba(99, 102, 241, 0.08) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.resource-icon-premium::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 19px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.3),
    rgba(99, 102, 241, 0.1)
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.resource-card-premium:hover .resource-icon-premium {
  transform: scale(1.1) rotate(3deg);
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.18) 0%,
    rgba(99, 102, 241, 0.12) 100%
  );
}

.resource-card-premium:hover .resource-icon-premium::after {
  opacity: 1;
}

.resource-icon-premium svg {
  width: 28px;
  height: 28px;
  color: #7c3aed;
  transition: transform 0.3s ease;
}

.resource-card-premium:hover .resource-icon-premium svg {
  transform: scale(1.05);
}

.resource-title-premium {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.resource-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #7c3aed;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.resource-link:hover {
  color: #6d28d9;
}

.resource-link:hover svg {
  transform: translateX(4px);
}

/* Resources CTA */
.resources-cta {
  margin-top: 64px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.resources-cta-text {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.resources-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 15px rgba(124, 58, 237, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

.resources-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(124, 58, 237, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

.resources-cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.resources-cta-btn:hover svg {
  transform: translateX(3px);
}

/* Payments Section - Premium Redesign */
.payments-section {
  padding: 40px 0;
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #f0fdf4 30%,
    #f8fafc 70%,
    #ffffff 100%
  );
  position: relative;
  overflow: hidden;
}

/* Background elements */
.payments-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.payments-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.payments-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.08) 0%,
    transparent 70%
  );
  top: 10%;
  left: -10%;
}

.payments-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.06) 0%,
    transparent 70%
  );
  bottom: 10%;
  right: -8%;
}

/* Section Header */
.payments-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.payments-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.payments-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Payments Grid */
.payments-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Left Side - Feature Cards */
.payments-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.payment-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(-20px);
}

.payment-feature-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.payment-feature-card:hover {
  transform: translateY(-5px) translateX(0);
  box-shadow:
    0 15px 40px rgba(34, 197, 94, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: rgba(34, 197, 94, 0.15);
}

.payment-feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    145deg,
    rgba(34, 197, 94, 0.12) 0%,
    rgba(16, 185, 129, 0.08) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.payment-feature-card:hover .payment-feature-icon {
  transform: scale(1.08);
  background: linear-gradient(
    145deg,
    rgba(34, 197, 94, 0.18) 0%,
    rgba(16, 185, 129, 0.12) 100%
  );
}

.payment-feature-icon svg {
  width: 24px;
  height: 24px;
  color: #16a34a;
}

.payment-feature-content {
  flex: 1;
}

.payment-feature-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.payment-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.payment-feature-badge {
  padding: 3px 10px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.payment-feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Right Side - Payment Methods */
.payments-methods-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.02);
}

.methods-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}

.methods-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.method-card-premium {
  padding: 24px 16px;
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.method-card-premium:hover {
  transform: translateY(-4px);
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(34, 197, 94, 0.2);
}

.method-icon-premium {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.method-card-premium:hover .method-icon-premium {
  transform: scale(1.05);
}

.method-icon-premium svg {
  width: 26px;
  height: 26px;
  color: #16a34a;
}

.method-name-premium {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Payout Timeline Visual */
.payout-timeline-visual {
  margin-top: 8px;
}

.timeline-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.timeline-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.timeline-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, #dcfce7 0%, #bbf7d0 50%, #86efac 100%);
  border-radius: 2px;
  z-index: 0;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.timeline-step-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #dcfce7 0%, #bbf7d0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
  transition: all 0.3s ease;
}

.timeline-step:hover .timeline-step-icon {
  transform: scale(1.1);
  background: linear-gradient(145deg, #bbf7d0 0%, #86efac 100%);
}

.timeline-step-icon svg {
  width: 20px;
  height: 20px;
  color: #16a34a;
}

.timeline-step-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  max-width: 70px;
}

/* Payments CTA */
.payments-cta {
  margin-top: 64px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.payments-cta-text {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.payments-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 15px rgba(34, 197, 94, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

.payments-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(34, 197, 94, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

.payments-cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.payments-cta-btn:hover svg {
  transform: translateX(3px);
}

/* FAQ Section - Premium Redesign */
.faq-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8f7ff 0%, #f6f4ff 50%, #faf9ff 100%);
  position: relative;
  overflow: hidden;
}

/* Background elements */
.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.faq-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.faq-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.08) 0%,
    transparent 70%
  );
  top: 5%;
  left: -15%;
}

.faq-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.06) 0%,
    transparent 70%
  );
  bottom: 10%;
  right: -10%;
}

/* FAQ Grid Layout */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Left Side - Content */
.faq-content {
  position: sticky;
  top: 120px;
}

.faq-label {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(99, 102, 241, 0.08) 100%
  );
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.faq-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.faq-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.faq-desc {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 32px;
}

.faq-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.faq-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 15px rgba(124, 58, 237, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(124, 58, 237, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-cta-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-cta-primary:hover svg {
  transform: translateX(3px);
}

.faq-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-cta-secondary:hover {
  color: #7c3aed;
}

.faq-cta-secondary svg {
  width: 16px;
  height: 16px;
}

/* Right Side - FAQ List */
.faq-list-premium {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-premium {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.faq-item-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #8b5cf6 0%, #6366f1 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item-premium:hover {
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.03);
  transform: translateY(-2px);
}

.faq-item-premium.active {
  border-color: rgba(139, 92, 246, 0.15);
  box-shadow:
    0 8px 30px rgba(139, 92, 246, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.03);
}

.faq-item-premium.active::before {
  opacity: 1;
}

.faq-question-premium {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question-premium h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-item-premium:hover .faq-question-premium h3,
.faq-item-premium.active .faq-question-premium h3 {
  color: #7c3aed;
}

.faq-icon-premium {
  width: 32px;
  height: 32px;
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.08) 0%,
    rgba(99, 102, 241, 0.05) 100%
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.faq-icon-premium::before,
.faq-icon-premium::after {
  content: "";
  position: absolute;
  background: #7c3aed;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.faq-icon-premium::before {
  width: 12px;
  height: 2px;
}

.faq-icon-premium::after {
  width: 2px;
  height: 12px;
}

.faq-item-premium.active .faq-icon-premium {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
}

.faq-item-premium.active .faq-icon-premium::before,
.faq-item-premium.active .faq-icon-premium::after {
  background: white;
}

.faq-item-premium.active .faq-icon-premium::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer-premium {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-premium.active .faq-answer-premium {
  max-height: 300px;
}

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

/* Bottom CTA Strip */
.faq-bottom-cta {
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.faq-bottom-content {
  flex: 1;
}

.faq-bottom-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.faq-bottom-text {
  font-size: 16px;
  color: var(--text-muted);
}

.faq-bottom-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.faq-bottom-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid #e2e8f0;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-bottom-outline:hover {
  border-color: #7c3aed;
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.05);
}

.faq-bottom-outline svg {
  width: 18px;
  height: 18px;
}

.faq-bottom-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 15px rgba(124, 58, 237, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-bottom-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(124, 58, 237, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-bottom-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-bottom-primary:hover svg {
  transform: translateX(3px);
}

/* Testimonials Section - Premium Redesign */
.testimonials-section {
  padding: 40px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8f7ff 30%,
    #f6f4ff 70%,
    #ffffff 100%
  );
  position: relative;
  overflow: hidden;
}

/* Background elements */
.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.testimonials-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.testimonials-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.08) 0%,
    transparent 70%
  );
  top: 10%;
  left: -10%;
}

.testimonials-shape-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.06) 0%,
    transparent 70%
  );
  bottom: 10%;
  right: -8%;
}

/* Section Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.testimonials-label {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(99, 102, 241, 0.08) 100%
  );
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.testimonials-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.testimonials-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* Star Rating */
.testimonials-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonials-stars {
  display: flex;
  gap: 4px;
}

.testimonials-stars svg {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
  color: #fbbf24;
}

.testimonials-rating-text {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

.testimonials-rating-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Testimonials Grid */
.testimonials-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* Testimonial Card */
.testimonial-card-premium {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 36px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(25px);
  position: relative;
}

.testimonial-card-premium.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card-premium:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(139, 92, 246, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(139, 92, 246, 0.1);
}

/* Center card emphasis */
.testimonial-card-premium.featured {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 24px 60px rgba(139, 92, 246, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(139, 92, 246, 0.15);
}

.testimonial-card-premium.featured.visible {
  transform: translateY(-8px) scale(1.02);
}

.testimonial-card-premium.featured:hover {
  transform: translateY(-12px) scale(1.02);
}

/* Quote Icon */
.testimonial-quote-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.12) 0%,
    rgba(99, 102, 241, 0.08) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.testimonial-quote-icon svg {
  width: 24px;
  height: 24px;
  color: #7c3aed;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Author Divider */
.testimonial-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #e2e8f0 50%,
    transparent 100%
  );
  margin-bottom: 24px;
}

/* Author Section */
.testimonial-author-premium {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar-premium {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name-premium {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-role-premium {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonial-earnings {
  padding: 6px 14px;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1) 0%,
    rgba(16, 185, 129, 0.08) 100%
  );
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
}

/* Trust Indicators */
.testimonials-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  padding: 32px 48px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(99, 102, 241, 0.06) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  color: #7c3aed;
}

.trust-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Bottom CTA */
.testimonials-cta {
  margin-top: 72px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.testimonials-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.testimonials-cta-text {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.testimonials-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.testimonials-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 15px rgba(124, 58, 237, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonials-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(124, 58, 237, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonials-cta-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.testimonials-cta-primary:hover svg {
  transform: translateX(3px);
}

.testimonials-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  border: 2px solid #e2e8f0;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonials-cta-outline:hover {
  border-color: #7c3aed;
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.05);
}

.testimonials-cta-outline svg {
  width: 18px;
  height: 18px;
}

/* Final CTA - Premium Dark SaaS Redesign */
.final-cta-section {
  padding: 40px 0;
  background: #0b1220;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Radial Glow Background */
.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 246, 0.15) 0%,
    rgba(99, 102, 241, 0.08) 40%,
    transparent 70%
  );
  filter: blur(60px);
  pointer-events: none;
}

/* Grain Texture Overlay */
.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* Secondary Glow */
.final-cta-glow-2 {
  position: absolute;
  bottom: -100px;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.12) 0%,
    transparent 60%
  );
  filter: blur(80px);
  pointer-events: none;
}

.final-cta-glow-3 {
  position: absolute;
  top: -50px;
  right: 15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.1) 0%,
    transparent 60%
  );
  filter: blur(70px);
  pointer-events: none;
}

.final-cta-content-premium {
  position: relative;
  z-index: 2;
  animation: fadeUpCTA 0.8s ease-out;
}

@keyframes fadeUpCTA {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.final-cta-title {
  font-size: 56px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.final-cta-title .gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #818cf8 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta-desc {
  font-size: 19px;
  color: #94a3b8;
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* CTA Buttons */
.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.final-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: white;
  font-size: 17px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 0 30px rgba(124, 58, 237, 0.4),
    0 4px 20px rgba(124, 58, 237, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.final-cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}

.final-cta-primary:hover::before {
  left: 100%;
}

.final-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 50px rgba(124, 58, 237, 0.5),
    0 8px 30px rgba(124, 58, 237, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.2);
}

.final-cta-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.final-cta-primary:hover svg {
  transform: translateX(4px);
}

.final-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.final-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.final-cta-secondary svg {
  width: 20px;
  height: 20px;
}

/* Note Text */
.final-cta-note-premium {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 48px;
}

/* Trust Row */
.final-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.final-cta-trust-icon {
  width: 40px;
  height: 40px;
  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;
}

.final-cta-trust-icon svg {
  width: 20px;
  height: 20px;
  color: #a78bfa;
}

.final-cta-trust-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta .btn {
  box-shadow: var(--shadow-xl);
}

/* Footer Section – Premium SaaS Design */
.footer {
  width: 100%;
  background: #f9fafb;
  padding: 60px 0 120px;
  /* Reduced top padding, increased bottom padding to show watermark properly */
  position: relative;
  overflow: hidden;
  /* Hide overflow to crop watermark text - only bottom portion visible */
  min-height: 500px;
  /* Ensure enough space for watermark */
}

/* Oversized ZIPLOFY Brand Watermark at Footer Bottom - Exact Reference Style (like wavespace) */
.footer::after {
  content: "ZIPLOFY";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(200px, 28vw, 300px);
  font-weight: 900;
  font-family: "Satoshi", sans-serif;
  color: rgba(0, 0, 0, 0.18);
  letter-spacing: clamp(10px, 2vw, 15px);
  line-height: 0.7;
  white-space: nowrap;
  z-index: 8;
  pointer-events: none;
  user-select: none;
  /* Only bottom portion visible - creates watermark effect exactly like wavespace */
  height: auto;
  overflow: visible;
  opacity: 0.2;
  text-transform: uppercase;
  /* Ensure it spans full width */
  width: 100%;
  text-align: center;
  /* Bold, prominent look like wavespace reference - dark color for proper visibility */
  font-style: normal;
  text-shadow: none;
  /* Match reference positioning - bottom aligned */
  transform-origin: center bottom;
  /* Ensure proper visibility with dark color */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 1570px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* Ensure content is above watermark */
  margin-top: -20px;
  /* Move footer content up */
}

/* Top Section: Brand & CTA */
.footer-top-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Brand Section */
.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.footer-description {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

/* CTA Section */
.footer-cta-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.footer-cta-heading {
  font-size: 1.75rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
}

.footer-cta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer-cta-button:hover .footer-cta-icon {
  transform: rotate(45deg);
}

/* Footer Links Section - 5 Column Grid */
.footer-links-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-link-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Company Section - Hidden (now part of 5-column grid) */
.footer-company-section {
  display: none;
}

.footer-column-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9375rem;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
  width: fit-content;
  line-height: 1.6;
}

.footer-link:hover {
  color: #111827;
  transform: translateX(3px);
}

/* Newsletter Section */
.footer-newsletter-section {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-newsletter-form:focus-within {
  border-color: rgba(234, 179, 8, 0.4);
  box-shadow: 0 4px 16px rgba(234, 179, 8, 0.15);
}

.footer-newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 20px;
  font-size: 0.9375rem;
  color: #111827;
  outline: none;
  font-family: inherit;
}

.footer-newsletter-input::placeholder {
  color: #9ca3af;
}

.footer-newsletter-button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.2);
}

.footer-newsletter-button:hover {
  background: #fbbf24;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.footer-newsletter-button:active {
  transform: scale(0.98);
}

.footer-newsletter-button svg {
  transition: transform 0.3s ease;
  color: #fff;
}

.footer-newsletter-button:hover svg {
  transform: translateX(2px);
}

/* Bottom Section: Social & Legal */
.footer-bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
  color: #111827;
  background: rgba(255, 255, 255, 0.9);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-link {
  font-size: 0.875rem;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.footer-legal-link:hover {
  color: #111827;
  transform: translateY(-1px);
}

.footer-legal-separator {
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 300;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
  .footer-container {
    padding: 56px 48px;
  }

  .footer-top-section {
    gap: 60px;
  }

  .footer-links-section {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .footer {
    padding: 30px 0 110px;
    /* Reduced top padding, increased bottom padding */
    min-height: 500px;
  }

  .footer-container {
    margin-top: -15px;
    /* Move footer content up on tablet */
  }

  .footer-container {
    padding: 48px 40px;
  }

  .footer-top-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-cta-section {
    align-items: flex-start;
  }

  .footer-links-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }

  .footer-company-section {
    display: none;
  }

  .footer-bottom-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-legal-links {
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 15px 0 120px;
    /* Increased bottom padding to accommodate full watermark */
    min-height: 500px;
    /* Increased min-height to show full text */
  }

  .footer-container {
    margin-top: -15px;
    /* Move footer content up on mobile to avoid overlap */
  }

  .footer::after {
    font-size: clamp(50px, 15vw, 70px);
    /* Adjusted to fit mobile screen width */
    letter-spacing: clamp(-2px, -0.8vw, -5px);
    /* Tighter spacing to fit full word */
    bottom: -20px;
    /* Moved up to show full text properly visible */
    color: rgba(0, 0, 0, 0.2);
    /* Darker color for better visibility on mobile */
    opacity: 1;
    /* Ensure text fits within viewport */
    max-width: 100vw;
    overflow: visible;
    white-space: nowrap;
    padding: 0 10px;
    box-sizing: border-box;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    text-align: center;
  }

  .footer-container {
    padding: 40px 32px;
    border-radius: 20px;
  }

  .footer-top-section {
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 48px;
  }

  .footer-cta-heading {
    font-size: 1.5rem;
  }

  .footer-links-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .footer-company-section {
    display: none;
  }

  .footer-newsletter-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .footer-newsletter-form {
    max-width: 100%;
  }

  .footer-bottom-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-legal-links {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 15px 0 100px;
    /* Increased bottom padding to accommodate full watermark */
    min-height: 420px;
    /* Increased min-height to show full text */
  }

  .footer-container {
    margin-top: -10px;
    /* Move footer content up on small mobile */
  }

  .footer::after {
    font-size: clamp(65px, 20vw, 90px);
    /* Smaller font size to fit small mobile screens */
    letter-spacing: clamp(-5px, -0.7vw, -8px);
    /* Tighter spacing to ensure full word visibility */
    bottom: 12px;
    /* Moved up to show full text properly visible including 'Y' */
    color: rgba(0, 0, 0, 0.2);
    /* Darker color for clear visibility on small mobile */
    opacity: 0.3;
    /* Ensure text fits within viewport - prevent cutoff */
    max-width: 100vw;
    overflow: visible;
    white-space: nowrap;
    padding: 0 12px;
    box-sizing: border-box;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    text-align: center;
  }

  .footer-container {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .footer-top-section {
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .footer-cta-heading {
    font-size: 1.25rem;
  }

  .footer-cta-button {
    padding: 12px 24px;
    font-size: 0.9375rem;
  }

  .footer-cta-icon {
    width: 32px;
    height: 32px;
  }

  .team-avatar {
    width: 28px;
    height: 28px;
  }

  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-company-section {
    display: none;
  }

  .footer-column-title {
    font-size: 0.8125rem;
  }

  .footer-link {
    font-size: 0.875rem;
  }

  .footer-newsletter-input {
    padding: 12px 16px;
    font-size: 0.875rem;
  }

  .footer-newsletter-button {
    width: 44px;
    height: 44px;
  }

  .footer-social-icon {
    width: 36px;
    height: 36px;
  }

  .footer-legal-link {
    font-size: 0.8125rem;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    padding: 140px 0 100px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-image-wrapper {
    border-radius: 20px;
  }

  .hero-image {
    border-radius: 20px;
  }

  .floating-stat-1 {
    right: -10px;
  }

  .floating-stat-2 {
    left: -10px;
  }

  .commission-section {
    padding: 80px 0;
  }

  .commission-section-title {
    font-size: 36px;
  }

  .commission-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commission-card.featured {
    grid-column: span 2;
  }

  .commission-trust-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .commission-trust-divider {
    display: none;
  }

  /* How It Works - Tablet */
  .how-it-works-section {
    padding: 90px 0;
  }

  .how-section-title {
    font-size: 38px;
  }

  .steps-grid {
    gap: 24px;
  }

  .step-card {
    padding: 40px 32px;
  }

  /* Benefits - Tablet */
  .benefits-section {
    padding: 90px 0;
  }

  .benefits-section-title {
    font-size: 38px;
  }

  .benefit-featured {
    padding: 36px;
    gap: 32px;
  }

  .benefit-featured-icon {
    width: 80px;
    height: 80px;
  }

  .benefit-featured-icon svg {
    width: 40px;
    height: 40px;
  }

  .benefit-featured-title {
    font-size: 24px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Resources Section - Tablet */
  .resources-section {
    padding: 90px 0;
  }

  .resources-title {
    font-size: 38px;
  }

  .resources-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Who Can Join - Tablet */
  .who-section {
    padding: 80px 0;
  }

  .who-section-title {
    font-size: 38px;
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .audience-grid-row-2 {
    max-width: 520px;
  }

  /* Dashboard Section - Tablet */
  .dashboard-section {
    padding: 90px 0;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .dashboard-visual {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .dashboard-image-wrapper {
    border-radius: 16px;
  }

  .dashboard-image {
    border-radius: 16px;
  }

  .dashboard-features-title {
    font-size: 36px;
    text-align: center;
  }

  .dashboard-features-subtitle {
    text-align: center;
  }

  .dashboard-badge-1 {
    right: 10px;
  }

  .dashboard-badge-2 {
    left: -15px;
  }

  .dashboard-badge-3 {
    right: -10px;
  }

  /* Payments Section - Tablet */
  .payments-section {
    padding: 90px 0;
  }

  .payments-title {
    font-size: 38px;
  }

  .payments-grid-premium {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .payments-methods-wrapper {
    padding: 32px;
  }

  .timeline-steps::before {
    left: 30px;
    right: 30px;
  }

  /* FAQ Section - Tablet */
  .faq-section {
    padding: 90px 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-content {
    position: static;
    text-align: center;
  }

  .faq-title {
    font-size: 36px;
  }

  .faq-cta-buttons {
    align-items: center;
  }

  .faq-bottom-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .faq-bottom-buttons {
    width: 100%;
    justify-content: center;
  }

  /* Testimonials Section - Tablet */
  .testimonials-section {
    padding: 90px 0;
  }

  .testimonials-title {
    font-size: 38px;
  }

  .testimonials-grid-premium {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
  }

  .testimonial-card-premium.featured {
    transform: none;
  }

  .testimonial-card-premium.featured.visible {
    transform: translateY(0);
  }

  .testimonials-trust {
    flex-wrap: wrap;
    gap: 24px;
    padding: 28px 32px;
  }

  .testimonials-cta-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero-content {
    gap: 48px;
  }

  .hero-badge {
    font-size: 13px;
    padding: 8px 16px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    padding: 16px 24px;
  }

  .dashboard-mockup {
    padding: 20px;
  }

  .earnings-amount {
    font-size: 42px;
  }

  .stats-grid {
    gap: 8px;
  }

  .stat-card {
    padding: 14px 12px;
  }

  .stat-value {
    font-size: 22px;
  }

  .floating-stats {
    display: none;
  }

  .hero-shape-1,
  .hero-shape-2 {
    width: 300px;
    height: 300px;
  }

  .hero-shape-3,
  .hero-shape-4 {
    display: none;
  }

  .nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .mobile-menu svg {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
  }

  .hero {
    padding: 40px 0 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .commission-section {
    padding: 40px 0;
  }

  .commission-section-title {
    font-size: 28px;
  }

  .commission-section-subtitle {
    font-size: 16px;
  }

  .commission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .commission-card.featured {
    grid-column: span 1;
  }

  .commission-card {
    padding: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .commission-card.featured {
    padding: 32px;
  }

  .commission-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .commission-number {
    font-size: 44px;
  }

  .commission-card.featured .commission-number {
    font-size: 52px;
  }

  .commission-badge {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }

  .commission-trust-inner {
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .commission-trust-item {
    justify-content: flex-start;
    width: 100%;
  }

  .commission-shape-3 {
    display: none;
  }

  /* How It Works Responsive */
  .how-it-works-section {
    padding: 40px 0;
  }

  .how-section-title {
    font-size: 32px;
  }

  .how-section-subtitle {
    font-size: 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-card {
    padding: 36px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step-watermark {
    font-size: 100px;
    top: 0px;
    right: 50%;
    transform: translateX(50%);
  }

  .step-icon {
    width: 68px;
    height: 68px;
    margin-left: auto;
    margin-right: auto;
  }

  .step-icon svg {
    width: 30px;
    height: 30px;
  }

  .step-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .step-title {
    font-size: 20px;
  }

  .step-desc {
    text-align: center;
  }

  .how-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
    border-radius: 20px;
  }

  .how-banner-text {
    font-size: 15px;
  }

  .how-shape-3 {
    display: none;
  }

  /* Who Can Join - Mobile */
  .who-section {
    padding: 40px 0;
  }

  .who-section-title {
    font-size: 32px;
  }

  .who-section-subtitle {
    font-size: 16px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-grid-row-2 {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .audience-card {
    padding: 24px 20px;
  }

  .audience-icon {
    width: 52px;
    height: 52px;
  }

  .audience-icon svg {
    width: 24px;
    height: 24px;
  }

  .audience-title {
    font-size: 16px;
  }

  .audience-desc {
    font-size: 13px;
  }

  .who-statement {
    font-size: 17px;
  }

  .who-cta {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  /* Benefits - Mobile */
  .benefits-section {
    padding: 40px 0;
  }

  .benefits-section-title {
    font-size: 30px;
  }

  .benefits-section-subtitle {
    font-size: 16px;
  }

  .benefit-featured {
    flex-direction: column;
    padding: 28px 24px;
    gap: 24px;
    text-align: center;
  }

  .benefit-featured-icon {
    width: 72px;
    height: 72px;
  }

  .benefit-featured-icon svg {
    width: 36px;
    height: 36px;
  }

  .benefit-featured-title {
    font-size: 22px;
  }

  .benefit-featured-desc {
    font-size: 15px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card {
    padding: 24px 20px;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
  }

  .benefit-icon svg {
    width: 22px;
    height: 22px;
  }

  .benefit-content h3 {
    font-size: 16px;
  }

  .benefits-shape-2 {
    display: none;
  }

  /* Dashboard Section - Mobile */
  .dashboard-section {
    padding: 40px 0;
  }

  .dashboard-grid {
    gap: 48px;
  }

  .dashboard-features-title {
    font-size: 28px;
  }

  .dashboard-features-subtitle {
    font-size: 15px;
  }

  .dashboard-feature {
    padding: 16px;
  }

  .dashboard-feature-icon {
    width: 44px;
    height: 44px;
  }

  .dashboard-feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .dashboard-feature-title {
    font-size: 14px;
  }

  .dashboard-feature-badge {
    font-size: 8px;
    padding: 10px 10px;
  }

  .dashboard-feature-desc {
    font-size: 12px;
  }

  .dashboard-badges {
    display: none;
  }

  .dashboard-mockup-premium {
    padding: 12px;
    border-radius: 16px;
  }

  .dashboard-mockup-inner {
    flex-direction: column;
    min-height: auto;
  }

  .dashboard-sidebar {
    width: 100%;
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .dashboard-sidebar-logo {
    width: 100%;
    margin-bottom: 8px;
  }

  .dashboard-nav-item {
    padding: 8px 10px;
    font-size: 11px;
    gap: 6px;
  }

  .dashboard-nav-item svg {
    width: 14px;
    height: 14px;
  }

  .dashboard-main {
    padding: 16px;
  }

  .dashboard-main-title {
    font-size: 14px;
  }

  .dashboard-main-date {
    font-size: 10px;
    padding: 4px 8px;
  }

  .dashboard-stats-row {
    gap: 8px;
    margin-bottom: 16px;
  }

  .dashboard-stat-mini {
    padding: 10px;
  }

  .dashboard-stat-mini-label {
    font-size: 9px;
  }

  .dashboard-stat-mini-value {
    font-size: 14px;
  }

  .dashboard-chart-area {
    height: 80px;
  }

  .dashboard-cta {
    margin-top: 48px;
  }

  .dashboard-cta-text {
    font-size: 18px;
  }

  .dashboard-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .dashboard-cta-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }

  .dashboard-cta-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }

  .dashboard-shape-1,
  .dashboard-shape-2 {
    display: none;
  }

  /* Resources Section - Mobile */
  .resources-section {
    padding: 40px 0;
  }

  .resources-title {
    font-size: 30px;
  }

  .resources-subtitle {
    font-size: 16px;
  }

  .resources-support {
    font-size: 14px;
  }

  .resources-grid-premium {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .resource-card-premium {
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .resource-icon-premium {
    width: 56px;
    height: 56px;
    margin-left: auto;
    margin-right: auto;
  }

  .resource-icon-premium svg {
    width: 24px;
    height: 24px;
  }

  .resource-title-premium {
    font-size: 17px;
  }

  .resource-desc {
    text-align: center;
  }

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

  .resources-cta {
    margin-top: 48px;
  }

  .resources-cta-text {
    font-size: 18px;
  }

  .resources-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
  }

  .resources-shape-1,
  .resources-shape-2 {
    display: none;
  }

  /* Payments Section - Mobile */
  .payments-section {
    padding: 40px 0;
  }

  .payments-title {
    font-size: 30px;
  }

  .payments-subtitle {
    font-size: 16px;
  }

  .payments-grid-premium {
    gap: 40px;
  }

  .payment-feature-card {
    padding: 20px;
    gap: 14px;
  }

  .payment-feature-icon {
    width: 46px;
    height: 46px;
  }

  .payment-feature-icon svg {
    width: 22px;
    height: 22px;
  }

  .payment-feature-title {
    font-size: 15px;
  }

  .payment-feature-badge {
    font-size: 9px;
    padding: 2px 8px;
  }

  .payment-feature-desc {
    font-size: 13px;
  }

  .payments-methods-wrapper {
    padding: 28px 20px;
  }

  .methods-title {
    font-size: 18px;
  }

  .methods-grid-premium {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .method-card-premium {
    flex-direction: row;
    justify-content: flex-start;
    padding: 16px 20px;
    gap: 16px;
  }

  .method-icon-premium {
    width: 48px;
    height: 48px;
  }

  .timeline-steps {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .timeline-steps::before {
    display: none;
  }

  .timeline-step-icon {
    width: 44px;
    height: 44px;
  }

  .timeline-step-icon svg {
    width: 18px;
    height: 18px;
  }

  .timeline-step-text {
    font-size: 11px;
  }

  .payments-cta {
    margin-top: 48px;
  }

  .payments-cta-text {
    font-size: 18px;
  }

  .payments-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
  }

  .payments-shape-1,
  .payments-shape-2 {
    display: none;
  }

  /* FAQ Section - Mobile */
  .faq-section {
    padding: 40px 0;
  }

  .faq-grid {
    gap: 48px;
  }

  .faq-title {
    font-size: 30px;
  }

  .faq-subtitle {
    font-size: 16px;
  }

  .faq-desc {
    font-size: 14px;
  }

  .faq-cta-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .faq-list-premium {
    gap: 12px;
  }

  .faq-item-premium {
    border-radius: 12px;
  }

  .faq-question-premium {
    padding: 18px 20px;
  }

  .faq-question-premium h3 {
    font-size: 15px;
  }

  .faq-icon-premium {
    width: 28px;
    height: 28px;
  }

  .faq-icon-premium::before {
    width: 10px;
  }

  .faq-icon-premium::after {
    height: 10px;
  }

  .faq-answer-premium p {
    padding: 0 20px 18px 20px;
    font-size: 14px;
  }

  .faq-bottom-cta {
    padding: 32px 24px;
    border-radius: 16px;
    gap: 28px;
  }

  .faq-bottom-title {
    font-size: 20px;
  }

  .faq-bottom-text {
    font-size: 14px;
  }

  .faq-bottom-buttons {
    flex-direction: column;
    width: 100%;
  }

  .faq-bottom-outline,
  .faq-bottom-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .faq-shape-1,
  .faq-shape-2 {
    display: none;
  }

  /* Testimonials Section - Mobile */
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-title {
    font-size: 30px;
  }

  .testimonials-subtitle {
    font-size: 16px;
  }

  .testimonials-rating {
    flex-direction: column;
    gap: 8px;
  }

  .testimonials-grid-premium {
    gap: 20px;
  }

  .testimonial-card-premium {
    padding: 28px 24px;
  }

  .testimonial-quote-icon {
    width: 42px;
    height: 42px;
  }

  .testimonial-quote-icon svg {
    width: 20px;
    height: 20px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-author-premium {
    flex-wrap: wrap;
    gap: 12px;
  }

  .testimonial-avatar-premium {
    width: 48px;
    height: 48px;
  }

  .testimonial-name-premium {
    font-size: 15px;
  }

  .testimonial-role-premium {
    font-size: 13px;
  }

  .testimonial-earnings {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  .testimonials-trust {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }

  .trust-item {
    width: 100%;
  }

  .testimonials-cta {
    margin-top: 56px;
  }

  .testimonials-cta-title {
    font-size: 24px;
  }

  .testimonials-cta-text {
    font-size: 15px;
  }

  .testimonials-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .testimonials-cta-primary,
  .testimonials-cta-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .testimonials-shape-1,
  .testimonials-shape-2 {
    display: none;
  }

  /* Final CTA - Mobile */
  .final-cta-section {
    padding: 40px 0;
  }

  .final-cta-title {
    font-size: 36px;
  }

  .final-cta-desc {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .final-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-primary,
  .final-cta-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 16px;
  }

  .final-cta-trust {
    flex-direction: column;
    gap: 24px;
    padding-top: 40px;
  }

  .final-cta-trust-item {
    justify-content: center;
  }

  .final-cta-glow {
    width: 500px;
    height: 400px;
  }

  .final-cta-glow-2,
  .final-cta-glow-3 {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
