/* ============================================
   LOCALHOST SOFTWARE — STYLES
   Palette: Copper & Slate | Font: Plus Jakarta Sans
   ============================================ */

:root {
  --copper: #B87333;
  --copper-light: #D4A574;
  --copper-pale: #F0D9C0;
  --slate-dark: #1E2832;
  --slate: #2F3640;
  --slate-mid: #3D4A57;
  --slate-light: #6B7A8D;
  --cream: #F5F0EB;
  --cream-dark: #EDE5DC;
  --white: #FFFFFF;
  --text-primary: #1E2832;
  --text-secondary: #4A5568;
  --text-muted: #8A9BB0;
  --border: rgba(184, 115, 51, 0.15);
  --border-light: rgba(47, 54, 64, 0.08);
  --shadow-sm: 0 2px 8px rgba(30, 40, 50, 0.08);
  --shadow-md: 0 8px 32px rgba(30, 40, 50, 0.12);
  --shadow-lg: 0 24px 64px rgba(30, 40, 50, 0.16);
  --shadow-copper: 0 8px 32px rgba(184, 115, 51, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Plus Jakarta Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ---- CONTAINER ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--copper) 0%, #C8843D 100%);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  box-shadow: var(--shadow-copper);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184, 115, 51, 0.35);
}
.btn-primary.btn-large { padding: 15px 32px; font-size: 1rem; border-radius: var(--radius-md); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--slate);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--slate-mid);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
  transform: translateY(-2px);
}
.btn-outline.btn-large { padding: 15px 32px; font-size: 1rem; border-radius: var(--radius-md); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--copper); background: rgba(184, 115, 51, 0.06); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-ghost-light:hover { color: var(--white); }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(245, 240, 235, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--slate-dark);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.4rem;
  color: var(--copper);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--copper); background: rgba(184, 115, 51, 0.06); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: rgba(245, 240, 235, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--copper); background: rgba(184, 115, 51, 0.06); }
.nav-mobile .btn-primary { margin-top: 8px; justify-content: center; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1E2832 0%, #2F3640 45%, #3D4A57 100%);
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--copper) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--copper-light) 0%, transparent 70%);
  bottom: 0; left: -80px;
  animation-delay: -3s;
}
.orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #8FA3B0 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -5s;
  opacity: 0.2;
}
@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-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 115, 51, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 115, 51, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 115, 51, 0.15);
  border: 1px solid rgba(184, 115, 51, 0.3);
  color: var(--copper-light);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--copper-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.gradient-text {
  background: linear-gradient(135deg, var(--copper-light) 0%, var(--copper-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ---- LOGOS ---- */
.logos-section {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.logos-track { overflow: hidden; position: relative; }
.logos-track::before,
.logos-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.logos-track::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.logos-track::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.logos-inner {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: logoScroll 25s linear infinite;
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.6;
  transition: var(--transition);
}
.logo-item:hover { opacity: 1; color: var(--copper); }

/* ---- SECTION COMMON ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: rgba(184, 115, 51, 0.1);
  color: var(--copper);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(184, 115, 51, 0.2);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--slate-dark);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 0;
  background: var(--cream);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.feature-card--large {
  grid-column: span 2;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 115, 51, 0.2);
}
.feature-card:hover::before { opacity: 1; }
.feature-card--accent {
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 100%);
  border-color: transparent;
}
.feature-card--accent h3,
.feature-card--accent p { color: var(--white); }
.feature-card--accent p { opacity: 0.7; }
.feature-card--accent .feature-icon { color: var(--copper-light); background: rgba(184, 115, 51, 0.15); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(184, 115, 51, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.feature-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(184, 115, 51, 0.1);
  color: var(--copper);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(184, 115, 51, 0.2);
}
.feature-tag--new {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border-color: rgba(34, 197, 94, 0.2);
}

/* ---- PRICING ---- */
.pricing {
  padding: 100px 0;
  background: var(--slate-dark);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pricing .section-tag {
  background: rgba(184, 115, 51, 0.15);
  border-color: rgba(184, 115, 51, 0.25);
}
.pricing .section-title { color: var(--white); }
.pricing .section-subtitle { color: rgba(255,255,255,0.5); }

/* Billing Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}
.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.toggle-label.active { color: var(--white); }
.toggle-switch {
  width: 52px; height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.15);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}
.toggle-switch.annual {
  background: var(--copper);
  border-color: var(--copper);
}
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.toggle-switch.annual .toggle-thumb { transform: translateX(24px); }
.savings-badge {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}
.savings-badge.visible {
  opacity: 1;
  transform: scale(1);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184, 115, 51, 0.25);
  transform: translateY(-4px);
}
.pricing-card--featured {
  background: linear-gradient(160deg, rgba(184, 115, 51, 0.15) 0%, rgba(184, 115, 51, 0.05) 100%);
  border-color: rgba(184, 115, 51, 0.4);
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  color: var(--white);
  padding: 5px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: var(--shadow-copper);
}
.plan-header { margin-bottom: 24px; }
.plan-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.plan-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 6px;
}
.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}
.price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: var(--transition);
}
.price-period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 6px;
}
.price-annual-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  min-height: 18px;
  transition: var(--transition);
  opacity: 0;
}
.price-annual-note.visible { opacity: 1; }
.price-annual-note strong { color: var(--copper-light); }

.btn-plan {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  margin-bottom: 28px;
  transition: var(--transition);
}
.btn-plan:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}
.btn-plan--featured {
  background: linear-gradient(135deg, var(--copper) 0%, #C8843D 100%);
  border-color: transparent;
  box-shadow: var(--shadow-copper);
}
.btn-plan--featured:hover {
  background: linear-gradient(135deg, #C8843D 0%, var(--copper) 100%);
  box-shadow: 0 12px 40px rgba(184, 115, 51, 0.4);
}

.plan-features { display: flex; flex-direction: column; gap: 12px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.plan-features li svg { flex-shrink: 0; color: var(--copper-light); }
.feature-disabled { opacity: 0.35 !important; }
.feature-disabled svg { color: rgba(255,255,255,0.3) !important; }

/* Enterprise CTA */
.enterprise-cta {
  margin-top: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.enterprise-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.enterprise-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
}
.enterprise-cta .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.enterprise-cta .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 100px 0;
  background: var(--cream-dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 115, 51, 0.2);
}
.stars {
  color: var(--copper);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate-dark);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- FAQ ---- */
.faq {
  padding: 100px 0;
  background: var(--cream);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(184, 115, 51, 0.2); }
.faq-item.open { border-color: rgba(184, 115, 51, 0.3); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-dark);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--copper); }
.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--copper); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.12) 0%, transparent 70%);
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.footer {
  background: #141B22;
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-social a:hover {
  background: rgba(184, 115, 51, 0.15);
  color: var(--copper-light);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--copper-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ---- RESPONSIVE ---- */
@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: 420px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .enterprise-cta { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn-outline { width: 100%; justify-content: center; }
  .hero-cta .btn-primary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .stat-divider { display: none; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}