/* ═══════════════════════════════════════════════════════════
   FLOWSYNC — DESIGN SYSTEM
   Palette: Volcanic Glass + Electric Orange
   Font: Plus Jakarta Sans
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --bg-base:        #0F0F0F;
  --bg-surface:     #1A1A1A;
  --bg-elevated:    #242424;
  --bg-card:        #1E1E1E;
  --border:         rgba(255,255,255,0.08);
  --border-hover:   rgba(255,107,43,0.4);

  --accent:         #FF6B2B;
  --accent-light:   #FFB088;
  --accent-glow:    rgba(255,107,43,0.25);
  --accent-subtle:  rgba(255,107,43,0.08);

  --text-primary:   #F0EDE8;
  --text-secondary: #9A9590;
  --text-muted:     #5A5550;

  --font:           'Plus Jakarta Sans', sans-serif;

  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;

  --shadow-sm:      0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:      0 24px 64px rgba(0,0,0,0.6);
  --shadow-glow:    0 0 40px rgba(255,107,43,0.2);

  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── Selection ── */
::selection { background: var(--accent); color: white; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px rgba(255,107,43,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,43,0.5);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }

/* ═══════════════════════════════════════════════════════════
   SECTION SHARED STYLES
═══════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-subtle);
  border: 1px solid rgba(255,107,43,0.2);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: var(--shadow-md);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  transition: var(--transition);
}
.nav__logo:hover { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 10px 22px !important;
  background: var(--accent) !important;
  color: white !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav__cta:hover {
  background: #e55a1f !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,107,43,0.4) !important;
}
.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero__bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,107,43,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255,107,43,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,176,136,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: rgba(255,107,43,0.08);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 300px; height: 300px;
  background: rgba(255,176,136,0.06);
  bottom: 100px; left: -50px;
  animation-delay: -3s;
}
.hero__orb--3 {
  width: 200px; height: 200px;
  background: rgba(255,107,43,0.1);
  top: 40%; left: 40%;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,107,43,0.1);
  border: 1px solid rgba(255,107,43,0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 32px;
  cursor: pointer;
  transition: var(--transition);
}
.hero__badge:hover {
  background: rgba(255,107,43,0.15);
  border-color: rgba(255,107,43,0.4);
}

.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero__headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 800px;
}

.hero__headline-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero__subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 72px;
}

.hero__avatars {
  display: flex;
}
.hero__avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  margin-left: -10px;
  object-fit: cover;
}
.hero__avatars img:first-child { margin-left: 0; }

.hero__proof-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.hero__stars {
  color: #FFB800;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.hero__proof-text span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.hero__proof-text strong { color: var(--text-primary); }

/* ── Dashboard Mockup ── */
.hero__dashboard {
  width: 100%;
  max-width: 860px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(255,107,43,0.08);
  position: relative;
}

.hero__dashboard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,43,0.5), transparent);
}

.hero__dashboard-inner { overflow: hidden; }

.dashboard__topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.dashboard__dots {
  display: flex;
  gap: 6px;
}
.dashboard__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dashboard__dots span:nth-child(1) { background: #FF5F57; }
.dashboard__dots span:nth-child(2) { background: #FFBD2E; }
.dashboard__dots span:nth-child(3) { background: #28CA41; }

.dashboard__title {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.dashboard__status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #28CA41;
  font-weight: 600;
}

.status-dot {
  width: 6px; height: 6px;
  background: #28CA41;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.dashboard__body {
  display: flex;
  height: 280px;
}

.dashboard__sidebar {
  width: 160px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.sidebar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.sidebar__item:hover { background: rgba(255,255,255,0.05); color: var(--text-secondary); }
.sidebar__item--active {
  background: var(--accent-subtle);
  color: var(--accent);
  font-weight: 600;
}

.dashboard__main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.stat-change {
  font-size: 0.68rem;
  font-weight: 600;
}
.stat-change--up { color: #28CA41; }
.stat-change--down { color: #FF5F57; }

.dashboard__chart {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: flex-end;
}

.chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  height: 80px;
}

.chart__bar {
  flex: 1;
  height: var(--h);
  background: rgba(255,107,43,0.2);
  border-radius: 4px 4px 0 0;
  transition: var(--transition);
  animation: barGrow 1s cubic-bezier(0.4,0,0.2,1) forwards;
  transform-origin: bottom;
}
.chart__bar--active {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255,107,43,0.4);
}
.chart__bar:hover { background: rgba(255,107,43,0.5); }

@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════════════════
   LOGOS / TRUSTED BY
═══════════════════════════════════════════════════════════ */
.logos {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logos__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logos__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.logos__track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.logos__inner {
  display: flex;
  gap: 56px;
  animation: logoScroll 20s linear infinite;
  width: max-content;
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-item {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  white-space: nowrap;
  transition: var(--transition);
}
.logo-item:hover { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════════════════════════════ */
.features {
  padding: 120px 0;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,43,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,43,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}
.feature-card:hover::before { opacity: 1; }

.feature-card--large {
  grid-column: span 2;
}

.feature-card__icon {
  width: 52px; height: 52px;
  background: var(--accent-subtle);
  border: 1px solid rgba(255,107,43,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-card__icon {
  background: rgba(255,107,43,0.15);
  border-color: rgba(255,107,43,0.3);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Automation Flow Visual */
.feature-card__visual {
  margin-top: 24px;
}

.automation-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.flow-node {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.flow-node--trigger {
  background: rgba(255,107,43,0.15);
  border: 1px solid rgba(255,107,43,0.3);
  color: var(--accent);
}
.flow-node--action {
  background: rgba(255,176,136,0.1);
  border: 1px solid rgba(255,176,136,0.2);
  color: var(--accent-light);
}
.flow-node--result {
  background: rgba(40,202,65,0.1);
  border: 1px solid rgba(40,202,65,0.2);
  color: #28CA41;
}

.flow-arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Integration Badges */
.feature-card__integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.integration-badge {
  padding: 5px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.integration-badge:hover {
  border-color: var(--border-hover);
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,107,43,0.02) 50%, transparent 100%);
  overflow: hidden;
}

.testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 8px;
  margin-top: -8px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-card__author > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__author strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-card__stars {
  color: #FFB800;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.carousel__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: scale(1.05);
}

.carousel__dots {
  display: flex;
  gap: 8px;
}

.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.carousel__dot.active {
  background: var(--accent);
  border-color: var(--accent);
  width: 24px;
}

/* ═══════════════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════════════ */
.pricing {
  padding: 120px 0;
}

.pricing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Billing Toggle */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.toggle-label.active { color: var(--text-primary); }

.toggle-badge {
  padding: 3px 10px;
  background: rgba(40,202,65,0.12);
  border: 1px solid rgba(40,202,65,0.2);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #28CA41;
}

.toggle-switch {
  width: 48px; height: 26px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}
.toggle-switch.active {
  background: var(--accent);
  border-color: var(--accent);
}

.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.toggle-switch.active .toggle-thumb { left: 25px; }

/* Pricing Grid */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}

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

.pricing-card--featured {
  background: linear-gradient(160deg, rgba(255,107,43,0.08) 0%, var(--bg-card) 60%);
  border-color: rgba(255,107,43,0.3);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--accent);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,107,43,0.4);
}

.pricing-card__header {
  margin-bottom: 28px;
}

.pricing-card__tier {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-card__price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 12px;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 8px;
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
  transition: var(--transition);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 6px;
}

.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pricing-card__features li svg { flex-shrink: 0; }

.pricing-card__feature--disabled {
  opacity: 0.4;
}

.pricing__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════ */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section__container {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 48px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.cta-section__container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,43,0.6), transparent);
}

.cta-section__orb {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,43,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section__container .section-tag { margin-bottom: 16px; }

.cta-section__container h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
}

.cta-section__container p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  position: relative;
}

.cta-section__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
}

.cta-section__note {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer__brand .nav__logo {
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 38px; height: 38px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--accent-subtle);
  border-color: rgba(255,107,43,0.3);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer__col a:hover { color: var(--text-primary); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card--large {
    grid-column: span 2;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card--featured {
    transform: scale(1);
    order: -1;
  }
  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card {
    min-width: calc(50% - 12px);
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15,15,15,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid var(--border);
    z-index: 999;
  }
  .nav__links.open { right: 0; }
  .nav__links a {
    font-size: 1rem;
    padding: 10px 0;
    width: 100%;
  }
  .nav__cta {
    margin-top: 16px;
    width: 100%;
    text-align: center;
    display: block;
  }
  .nav__hamburger { display: flex; z-index: 1001; }

  /* Hero */
  .hero { padding: 120px 0 60px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__social-proof { flex-direction: column; text-align: center; }
  .hero__proof-text { align-items: center; }
  .hero__dashboard { border-radius: var(--radius-lg); }
  .dashboard__sidebar { display: none; }
  .dashboard__stats { grid-template-columns: repeat(3, 1fr); }
  .stat-value { font-size: 0.9rem; }

  /* Features */
  .features { padding: 80px 0; }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .feature-card--large { grid-column: span 1; }

  /* Testimonials */
  .testimonials { padding: 80px 0; }
  .testimonial-card { min-width: calc(100% - 0px); }

  /* Pricing */
  .pricing { padding: 80px 0; }

  /* CTA */
  .cta-section { padding: 60px 0; }
  .cta-section__container { padding: 48px 28px; margin: 0 24px; }
  .cta-section__actions { flex-direction: column; align-items: center; }

  /* Footer */
  .footer { padding: 60px 0 32px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Section */
  .section-header { margin-bottom: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__headline { font-size: 2.6rem; }
  .dashboard__stats { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cta-section__container { padding: 40px 20px; }
  .btn--lg { padding: 14px 28px; font-size: 0.95rem; }
}