/* =============================================
   BRIGHTLEARNS — Premium LMS Website Styles
   ============================================= */

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

:root {
  --primary: #ff7300;
  --primary-dark: #e06600;
  --secondary: #ff9a40;
  --accent: #ff7300;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #ffffff;
  --border: rgba(0,0,0,0.08);
  --text: #0D0F1A;
  --text-muted: #5C5F74;
  --text-dim: #9598B0;
  --gradient: linear-gradient(135deg, #ff7300, #ff9a40);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(0,0,0,0.1);
  --glow: 0 0 80px rgba(0,0,0,0.06);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---- Typography ---- */
h1, h2, h3 { font-family: 'Sora', sans-serif; line-height: 1.1; font-weight: 900; letter-spacing: -1.5px; }

.gradient-text {
  color: #ff7300;
  -webkit-text-fill-color: #ff7300;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff7300;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 0 #c75900;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: #e06600;
  box-shadow: 0 7px 0 #c75900;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid rgba(0,0,0,0.18);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: rgba(0,0,0,0.3);
  background: rgba(0,0,0,0.04);
  color: var(--text);
}

.btn-ghost {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ---- Section shared ---- */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: #ff7300;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 3px 0 #c75900;
}
.section-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -2px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
.nav-inner--centered {
  justify-content: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark { display: flex; }
.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--text);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 8px;
}
.lang-btn {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--text-dim);
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 50px;
  transition: var(--transition);
}
.lang-btn.active {
  background: #111827;
  color: white;
}
.lang-btn:not(.active):hover { color: var(--text); }
.lang-sep { color: var(--border); font-size: 13px; user-select: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: var(--transition); }
.nav-mobile { display: none; }

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-mobile {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px;
  }
  .nav-mobile.open { display: block; }
  .nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
  .nav-mobile a {
    display: block;
    padding: 12px 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
  }
  .mobile-cta { margin-top: 16px; text-align: center; border: none !important; }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.22;
}
.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,0,0,0.04), transparent 70%);
  top: -200px; left: -150px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,0,0,0.03), transparent 70%);
  bottom: -100px; right: -150px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 0%, transparent 75%);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.1); }
}
.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  margin-top: 150px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease both;
  letter-spacing: -3px;
  line-height: 1.0;
}
.hero-subtitle {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.6s 0.2s ease both;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.avatars { display: flex; }
.avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  object-fit: cover;
}
.avatars img:first-child { margin-left: 0; }
.proof-text { text-align: left; }
.stars { color: #FFB840; font-size: 14px; }
.proof-text span { font-size: 13px; color: var(--text-muted); }

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 80px auto 0;
  animation: fadeInUp 0.8s 0.5s ease both;
}
.dashboard-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow);
}
.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28C941; }
.mockup-url {
  font-size: 12px;
  color: var(--text-dim);
  margin-left: 12px;
  font-family: monospace;
}
.mockup-body { display: flex; }
.mockup-sidebar {
  width: 160px;
  flex-shrink: 0;
  padding: 16px 12px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
  transition: var(--transition);
}
.sidebar-item.active {
  background: rgba(0,0,0,0.07);
  color: var(--text);
}
.mockup-main { flex: 1; padding: 16px; }
.mockup-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.mockup-avatar {
  width: 28px; height: 28px;
  background: #ff7300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
}
.mockup-stats { display: flex; gap: 12px; margin-bottom: 16px; }
.stat-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.stat-card:nth-child(1) { border-top: 2px solid #4F46E5; }
.stat-card:nth-child(2) { border-top: 2px solid #9333EA; }
.stat-card:nth-child(3) { border-top: 2px solid #059669; }
.stat-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon.blue { background: #EEF2FF; }
.stat-icon.purple { background: #FDF4FF; }
.stat-icon.teal { background: #ECFDF5; }
.stat-num { font-size: 16px; font-weight: 700; color: var(--text); }
.stat-label { font-size: 11px; color: var(--text-dim); }
.mockup-chart {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.chart-label { font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 12px; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.bar { flex: 1; height: 100%; display: flex; align-items: flex-end; }
.bar-fill {
  width: 100%;
  height: var(--h);
  background: rgba(0,0,0,0.1);
  border-radius: 3px 3px 0 0;
  transition: var(--transition);
}
.bar-fill.active { background: #111827; }
.chart-labels-x { display: flex; gap: 6px; margin-top: 6px; }
.chart-labels-x span { flex: 1; text-align: center; font-size: 10px; color: var(--text-dim); }

/* Floating cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.card-1 { top: 60px; left: -60px; animation: floatCard 6s ease-in-out infinite; }
.card-2 { bottom: 80px; right: -60px; animation: floatCard 6s ease-in-out infinite reverse; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.fc-icon { font-size: 28px; }
.fc-title { font-size: 13px; font-weight: 600; color: var(--text); }
.fc-sub { font-size: 11px; color: var(--text-muted); }

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

@media (max-width: 700px) {
  .floating-card { display: none; }
  .mockup-sidebar { display: none; }
  .mockup-stats { flex-direction: column; }
  .hero-title { margin-top: 32px; }
}

/* ============ LOGOS ============ */
.logos {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.logos-track { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent); }
.logos-inner {
  display: flex;
  gap: 64px;
  animation: logoScroll 25s linear infinite;
  width: max-content;
}
.logo-item {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dim);
  white-space: nowrap;
  transition: var(--transition);
}
.logo-item:hover { color: var(--text-muted); }
@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.trust-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoScroll 32s linear infinite;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 36px;
  flex-shrink: 0;
}
.trust-icon {
  width: 44px; height: 44px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.trust-text { flex-shrink: 0; }
.trust-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.trust-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
  white-space: nowrap;
}
.trust-sep {
  font-size: 10px;
  color: var(--text-dim);
  flex-shrink: 0;
  user-select: none;
}

/* ============ FEATURES ============ */
.features { background: var(--surface); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-large { grid-column: 1 / 3; }
.feature-wide { grid-column: 2 / 4; }
.feature-center { grid-column: 1 / 4; width: 100%; }
.feature-card {
  background: var(--bg);
  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(0,0,0,0.02), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover { border-color: rgba(0,0,0,0.14); transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.10); }

.card-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.05);
  border-bottom: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
  margin: -32px -32px 28px;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}
.card-browser-bar .dot { opacity: 0.7; }
.feature-card:hover .card-browser-bar {
  transform: translateY(0);
  opacity: 1;
}
.feature-card:hover::before { opacity: 1; }
.feature-tag {
  display: inline-block;
  padding: 4px 14px;
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 24px; font-weight: 900; margin-bottom: 12px; letter-spacing: -0.5px; }
.feature-card-orange { background: #ff7300; border-color: #ff7300; }
.feature-card-orange h3 { color: #fff; }
.feature-card-orange p { color: #fff !important; }
.feature-card-orange:hover { border-color: #e06600; box-shadow: 0 24px 48px rgba(255,115,0,0.25); }
.feature-card-orange .card-browser-bar { background: rgba(255,255,255,0.25); border-bottom: none; }
.feature-card-orange .card-browser-bar .dot.red { background: #FF5F57; }
.feature-card-orange .card-browser-bar .dot.yellow { background: #FFBD2E; }
.feature-card-orange .card-browser-bar .dot.green { background: #28C941; }

/* Baby blue card */
.feature-card-blue { border-color: rgba(56,189,248,0.3); }
.feature-card-blue:hover { border-color: #38bdf8; box-shadow: 0 24px 48px rgba(56,189,248,0.15); }

/* Orange subtle card */
.feature-card-orange-subtle { border-color: rgba(255,115,0,0.3); }
.feature-card-orange-subtle:hover { border-color: #ff7300; box-shadow: 0 24px 48px rgba(255,115,0,0.12); }

/* Analytics red card */
.feature-card-red { border-color: rgba(239,68,68,0.25); }
.feature-card-red:hover { border-color: #ef4444; box-shadow: 0 24px 48px rgba(239,68,68,0.12); }

/* WhatsApp card */
.feature-card-wa { border-color: rgba(37,211,102,0.3); }
.feature-card-wa:hover { border-color: #25D366; box-shadow: 0 24px 48px rgba(37,211,102,0.15); }
.wa-bubbles { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.wa-bubble {
  background: #f0fdf4;
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: 0 12px 12px 12px;
  padding: 8px 12px;
  font-size: 12.5px;
  color: var(--text);
  line-height: 1.5;
}
.wa-bubble strong { color: #16a34a; }

/* Faded background number */
.card-num {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  opacity: 0.04;
  user-select: none;
  pointer-events: none;
  letter-spacing: -6px;
}
.feature-card-orange .card-num { color: #fff; opacity: 0.12; }

.step-num {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,115,0,0.18);
  user-select: none;
  pointer-events: none;
  letter-spacing: -6px;
}

/* Tilt effect */
.features-grid .feature-card:nth-child(1) { transform: rotate(-1deg); }
.features-grid .feature-card:nth-child(2) { transform: rotate(1.2deg); }
.features-grid .feature-card:nth-child(3) { transform: rotate(-0.8deg); }
.features-grid .feature-card:nth-child(4) { transform: rotate(1deg); }
.features-grid .feature-card:nth-child(5) { transform: rotate(-1.4deg); }
.features-grid .feature-card:nth-child(6) { transform: rotate(0.6deg); }
.features-grid .feature-card:hover { transform: rotate(0deg) translateY(-6px); }
.feature-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-visual {
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.builder-prompt {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
}
.prompt-label { font-size: 11px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.prompt-text { font-size: 13px; color: var(--text-muted); font-style: italic; }
.builder-output { display: flex; flex-direction: column; gap: 8px; }
.module-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text);
  padding: 8px 12px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  animation: slideIn 0.3s ease both;
}
.module-item:nth-child(1) { animation-delay: 0.1s; }
.module-item:nth-child(2) { animation-delay: 0.2s; }
.module-item:nth-child(3) { animation-delay: 0.3s; }
.module-item:nth-child(4) { animation-delay: 0.4s; }
.module-item:nth-child(5) { animation-delay: 0.5s; }
.mod-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(0,0,0,0.06);
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
/* Fee management visual */
.fee-visual { padding: 16px; }
.fee-header { margin-bottom: 14px; }
.fee-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.fee-label { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.fee-badge-collected { font-size: 12px; font-weight: 700; color: #059669; background: #d1fae5; padding: 3px 10px; border-radius: 50px; }
.fee-progress-bar { height: 6px; background: var(--surface-2); border-radius: 99px; overflow: hidden; }
.fee-progress-fill { height: 100%; width: 84%; background: linear-gradient(90deg, #059669, #34d399); border-radius: 99px; }
.fee-progress-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-dim); margin-top: 5px; }
.fee-rows { display: flex; flex-direction: column; gap: 8px; }
.fee-row { display: flex; align-items: center; gap: 12px; padding: 10px 12px; background: var(--surface-2); border-radius: var(--radius-sm); }
.fee-row-left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.fee-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.fee-av-blue { background: #4F46E5; }
.fee-av-purple { background: #9333EA; }
.fee-av-green { background: #059669; }
.fee-name { font-size: 13px; font-weight: 600; color: var(--text); }
.fee-batch { font-size: 11px; color: var(--text-dim); }
.fee-amount { font-size: 13px; font-weight: 700; color: var(--text); flex-shrink: 0; }
.fee-status { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 50px; flex-shrink: 0; }
.fee-status.paid { color: #059669; background: #d1fae5; }
.fee-status.pending { color: #D97706; background: #FEF3C7; }

.app-badges { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #ff7300;
  border: 1px solid #ff7300;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.app-badge svg path { fill: #fff; }

.reports-layout { display: flex; gap: 40px; align-items: flex-start; }
.reports-left { flex: 0 0 280px; }
.reports-left h3 { margin-top: 16px; }
.reports-visual { padding: 0; overflow: hidden; }
.reports-mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.04);
  border-bottom: 1px solid var(--border);
}
.reports-url { font-size: 12px; color: var(--text-dim); font-family: monospace; margin-left: 8px; }
.reports-table { padding: 0; }
.reports-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 80px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.reports-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 80px;
  align-items: center;
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.reports-row:last-child { border-bottom: none; }
.reports-row:hover { background: rgba(255,115,0,0.04); }
.reports-row span:nth-child(2), .reports-row span:nth-child(3) { color: var(--text-muted); }
.rpt-export {
  font-size: 12px;
  font-weight: 700;
  color: #ff7300;
  cursor: pointer;
}

.report-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.report-pill {
  padding: 6px 14px;
  background: rgba(255,115,0,0.07);
  border: 1px solid rgba(255,115,0,0.2);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.badges-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.badge-pill {
  padding: 5px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  /* 2-col grid on tablet */
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-large { grid-column: 1 / 3; }
  .feature-wide { grid-column: 1 / 3; }
  .feature-center { grid-column: 1 / 3; }
  /* disable tilts on tablet/mobile */
  .features-grid .feature-card:nth-child(1),
  .features-grid .feature-card:nth-child(2),
  .features-grid .feature-card:nth-child(3),
  .features-grid .feature-card:nth-child(4),
  .features-grid .feature-card:nth-child(5),
  .features-grid .feature-card:nth-child(6) { transform: none; }
  .features-grid .feature-card:hover { transform: translateY(-4px); }
}

@media (max-width: 600px) {
  /* 1-col on mobile */
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-large, .feature-wide, .feature-center { grid-column: auto; }
  .feature-card { padding: 24px 20px; }

  /* Reports card: stack vertically */
  .reports-layout { flex-direction: column; gap: 20px; }
  .reports-left { flex: none; width: 100%; }
  .reports-left h3 { margin-top: 12px; }

  /* Shrink reports table columns to 3 (hide Records column) */
  .reports-table-head,
  .reports-row { grid-template-columns: 2fr 1fr 60px; }
  .reports-table-head span:nth-child(3),
  .reports-row span:nth-child(3) { display: none; }

  /* Fee visual: keep it readable */
  .fee-row { gap: 8px; padding: 8px 10px; }
  .fee-amount { font-size: 12px; }
  .fee-name { font-size: 12px; }
  .fee-batch { font-size: 10px; }

  /* Card number: smaller on mobile */
  .card-num, .step-num { font-size: 80px; }

  /* WA bubbles: tighten */
  .wa-bubbles { gap: 6px; margin-top: 14px; }
  .wa-bubble { font-size: 12px; padding: 7px 10px; }
}

/* ============ HOW IT WORKS ============ */
.how-it-works { background: var(--bg); }
.steps { display: flex; gap: 20px; position: relative; }
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,115,0,0.5);
  line-height: 1;
  margin-bottom: -10px;
  position: relative;
  z-index: 1;
}
.step-connector {
  position: absolute;
  top: 72px;
  left: 50%;
  right: -50%;
  height: 1px;
  background: var(--border);
  opacity: 1;
}
.step-connector.last { display: none; }
.step-content {
  background: var(--surface);
  border: 1px solid #ff7300;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  width: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.step-content:hover { border-color: #ff7300; transform: translateY(-4px); box-shadow: 0 12px 40px rgba(255,115,0,0.12); }
.step-icon { font-size: 40px; margin-bottom: 16px; }
.step-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step-content p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

@media (max-width: 768px) {
  .steps { flex-direction: column; gap: 24px; }
  .step-connector { display: none; }
}

/* ============ STATS ============ */
.stats-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #ff7300;
  line-height: 1;
}
.stat-plus {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #ff7300;
  margin-top: -10px;
}
.stat-desc { font-size: 15px; color: var(--text-muted); margin-top: 8px; }

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ============ PRICING ============ */
.pricing { background: var(--surface); }
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.toggle-label {
  font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toggle-label.active { color: var(--text); font-weight: 600; }
.save-badge {
  background: rgba(0,0,0,0.07);
  color: var(--text-muted);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
}
.toggle-switch { position: relative; width: 44px; height: 24px; }
.toggle-switch input { display: none; }
.slider {
  position: absolute;
  inset: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 2px; top: 2px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch input:checked + .slider { background: rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.2); }
.toggle-switch input:checked + .slider::before {
  transform: translateX(20px);
  background: var(--primary);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { border-color: rgba(0,0,0,0.14); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.pricing-card.featured {
  background: var(--surface-2);
  border-color: rgba(0,0,0,0.14);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  transform: scale(1.04);
}
.popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-name { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.plan-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.currency { font-size: 22px; font-weight: 700; color: var(--text-muted); }
.amount { font-family: 'Sora', sans-serif; font-size: 56px; font-weight: 900; color: var(--text); line-height: 1; }
.period { font-size: 15px; color: var(--text-muted); }
.enterprise-price { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.plan-annual-note { font-size: 12px; color: var(--text-dim); margin-bottom: 24px; min-height: 18px; }
.plan-btn { display: block; text-align: center; margin-bottom: 28px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.plan-features li.disabled { color: var(--text-dim); }
.check { color: #4ADE80; font-size: 16px; flex-shrink: 0; }
.cross { color: var(--text-dim); font-size: 16px; flex-shrink: 0; }

@media (max-width: 900px) {
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(0,0,0,0.14); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.testimonial-card.featured-t {
  background: var(--surface-2);
  border-color: rgba(0,0,0,0.1);
}
.t-stars { color: #FFB840; font-size: 18px; margin-bottom: 16px; }
.testimonial-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.t-name { font-weight: 600; font-size: 15px; color: var(--text); }
.t-role { font-size: 13px; color: var(--text-dim); }

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

/* ============ CTA ============ */
/* ============ CONTACT ============ */
.contact-section { padding: 100px 0; background: var(--bg); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-left .section-tag { margin-bottom: 20px; }
.contact-left .section-title { text-align: left; margin-bottom: 16px; }
.contact-sub { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.contact-perks { display: flex; flex-direction: column; gap: 14px; }
.contact-perk { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--text); }
.perk-icon { font-size: 20px; width: 36px; height: 36px; background: rgba(255,115,0,0.08); border: 1px solid rgba(255,115,0,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.contact-card { background: var(--bg); border: 1.5px solid #ff7300; border-radius: var(--radius-lg); overflow: visible; box-shadow: 0 20px 60px rgba(255,115,0,0.08); }
.contact-card-bar { border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0; overflow: hidden; }
.contact-card-bar { display: flex; align-items: center; gap: 6px; padding: 10px 16px; background: rgba(255,115,0,0.06); border-bottom: 1px solid rgba(255,115,0,0.15); }
.contact-card-url { font-size: 12px; color: var(--text-dim); font-family: monospace; margin-left: 8px; }

.contact-form { padding: 28px; padding-bottom: 36px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--text); letter-spacing: 0.2px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #ff7300; box-shadow: 0 0 0 3px rgba(255,115,0,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-submit { width: 100%; justify-content: center; font-size: 16px; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

.cta-section {
  padding: 120px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  display: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-inner > p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-input {
  padding: 16px 24px;
  background: var(--bg);
  border: 1.5px solid rgba(255,115,0,0.2);
  border-radius: 50px;
  color: var(--text);
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  width: 320px;
  transition: var(--transition);
  outline: none;
}
.cta-input:focus { border-color: rgba(255,115,0,0.5); background: var(--surface-2); }
.cta-input::placeholder { color: var(--text-dim); }
.cta-note { font-size: 14px; color: var(--text-dim); }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}
.footer-top { display: flex; flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: 32px; text-align: left; }
.footer-brand { max-width: 280px; }
.footer-brand .nav-logo { margin-bottom: 10px; justify-content: flex-start; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition);
}
.social-link:hover { color: var(--text); border-color: rgba(0,0,0,0.2); background: rgba(0,0,0,0.05); }
.footer-links { display: flex; gap: 48px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--text-dim); font-size: 14px; text-decoration: none; transition: var(--transition); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-dim); text-decoration: none; transition: var(--transition); }
.footer-legal a:hover { color: var(--text); }

@media (max-width: 700px) {
  .footer-top { flex-direction: column; align-items: center; text-align: center; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-brand .nav-logo { justify-content: center; }
  .footer-links { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

