/* ============================================================
 SchoolOS Design System
 Light Theme Orange Accent
 ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@300;400;500;600&display=swap');

/* TOKENS */
:root {
  --bg:            #FFFCF8;
  --white:         #FFFFFF;
  --surface:       #FFF8F2;
  --surface2:      #FEF0E4;
  --border:        #EDE0CF;
  --border-light:  #F5EAE0;

  --orange:        #E8611A;
  --orange-dark:   #C4501A;
  --orange-hover:  #D45618;
  --orange-light:  #FEF0E6;
  --orange-glow:   rgba(232, 97, 26, 0.18);

  --text:          #1C1208;
  --text-muted:    #6B5B4A;
  --text-dim:      #A8947E;

  --green:         #16A34A;
  --green-bg:      #DCFCE7;
  --red:           #DC2626;
  --red-bg:        #FEE2E2;
  --blue:          #2563EB;
  --blue-bg:       #DBEAFE;

  --grad:          linear-gradient(135deg, #E8611A 0%, #F59E0B 100%);
  --grad-soft:     linear-gradient(135deg, #FFF0E6 0%, #FFFBE6 100%);

  --shadow-xs:     0 1px 2px rgba(28,18,8,0.06);
  --shadow-sm:     0 1px 4px rgba(28,18,8,0.08), 0 1px 2px rgba(28,18,8,0.04);
  --shadow:        0 4px 16px rgba(28,18,8,0.10), 0 2px 6px rgba(28,18,8,0.06);
  --shadow-lg:     0 16px 48px rgba(28,18,8,0.12), 0 6px 16px rgba(28,18,8,0.07);
  --shadow-orange: 0 8px 32px rgba(232,97,26,0.30);

  --font-display:  'Bricolage Grotesque', sans-serif;
  --font-body:     'Inter', sans-serif;

  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --radius-full:   100px;

  --nav-h:         68px;
  --max-w:         1160px;
}

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

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
}
.display {
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.0;
}
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p { line-height: 1.65; }

.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.text-center { text-align: center; }

/* SECTION LABEL */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  border: 1px solid rgba(232,97,26,0.2);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.22s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-lg  { padding: 14px 28px; font-size: 16px; }
.btn-md  { padding: 11px 22px; font-size: 15px; }
.btn-sm  { padding: 8px 16px;  font-size: 13px; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232,97,26,0.38);
}
.btn-primary:active { transform: translateY(0); }

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

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding-left: 0; padding-right: 0;
}
.btn-ghost:hover { color: var(--orange); }

.btn-white {
  background: #fff;
  color: var(--orange);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-orange { background: var(--orange-light); color: var(--orange-dark); border: 1px solid rgba(232,97,26,0.2); }
.badge-green  { background: var(--green-bg); color: var(--green); }
.badge-blue   { background: var(--blue-bg); color: var(--blue); }
.badge-gray   { background: #F3F0EB; color: var(--text-muted); }

/* CARD */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,97,26,0.2);
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255,252,248,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(232,97,26,0.35);
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: white; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.18s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--surface);
}
.nav-links a.active { color: var(--orange); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.18s;
}
.nav-signin:hover { color: var(--text); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero-mockup {
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-float-card { will-change: transform; }
.feature-card, .hiw-card, .testi-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 60% 0%, rgba(232,97,26,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 10% 80%, rgba(245,158,11,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,97,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,97,26,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.hero-left { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}
.hero-eyebrow strong { color: var(--orange); font-weight: 600; }
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-avatars {
  display: flex;
}
.hero-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--surface2);
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-dark);
  overflow: hidden;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-social-text { font-size: 13px; color: var(--text-muted); }
.hero-social-text strong { color: var(--text); font-weight: 600; }
.hero-stars { color: var(--orange); letter-spacing: -1px; font-size: 13px; }

/* DASHBOARD MOCKUP */
.hero-right {
  position: relative;
}
.hero-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(232,97,26,0.08);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.mockup-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #FF6058; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #27C840; }
.mockup-title { font-size: 12px; color: var(--text-dim); font-weight: 500; }

.mockup-body { padding: 20px; }

.mockup-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.mockup-stat {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px;
}
.mockup-stat-val { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.mockup-stat-key { font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.mockup-stat-change { font-size: 10px; color: var(--green); font-weight: 600; margin-top: 4px; }

.mockup-chart { background: var(--surface); border-radius: var(--radius); padding: 14px; margin-bottom: 16px; }
.mockup-chart-label { font-size: 11px; color: var(--text-muted); font-weight: 500; margin-bottom: 10px; }
.mockup-bars { display: flex; align-items: flex-end; gap: 5px; height: 56px; }
.mockup-bar-item {
  flex: 1;
  background: var(--orange-light);
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
  position: relative;
}
.mockup-bar-item.active { background: var(--orange); }
.mockup-bar-item:hover { background: var(--orange); }

.mockup-list { display: flex; flex-direction: column; gap: 8px; }
.mockup-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: var(--surface);
  border-radius: var(--radius-sm);
}
.mockup-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--orange-dark);
  flex-shrink: 0;
}
.mockup-name { font-size: 12px; font-weight: 500; color: var(--text); flex: 1; }
.mockup-tag { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 100px; }
.tag-present { background: var(--green-bg); color: var(--green); }
.tag-absent  { background: var(--red-bg);   color: var(--red); }
.tag-late    { background: #FEF3C7; color: #D97706; }

/* Floating notification cards */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  white-space: nowrap;
  z-index: 3;
}
.float-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.float-title { font-weight: 600; font-size: 13px; color: var(--text); }
.float-sub   { font-size: 11px; color: var(--text-dim); }
.hero-float-1 { top: 20px; left: -40px; animation: float2 5s 1s ease-in-out infinite; }
.hero-float-2 { bottom: 40px; right: -20px; animation: float2 5s 2.5s ease-in-out infinite; }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-8px) rotate(1deg)} }

/* STATS BAR */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--border);
}
.stat-val {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-val span { color: var(--orange); }
.stat-label { font-size: 14px; color: var(--text-muted); }

/* SECTIONS */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--text-muted); max-width: 560px; line-height: 1.65; }
.section-header.center p { margin: 0 auto; }

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,97,26,0.15);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background 0.25s;
}
.feature-card:hover .feature-icon { background: var(--orange); }
.feature-icon svg { width: 24px; height: 24px; stroke: var(--orange); transition: stroke 0.25s; }
.feature-card:hover .feature-icon svg { stroke: white; }
.feature-card h4 { margin-bottom: 8px; font-size: 17px; }
.feature-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* SPOTLIGHT FEATURE */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}
.spotlight:last-child { border-bottom: none; }
.spotlight.reverse { }
.spotlight.reverse .spotlight-visual { order: -1; }
.spotlight-label { margin-bottom: 16px; }
.spotlight-title { margin-bottom: 20px; }
.spotlight-desc { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.spotlight-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.spotlight-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-muted);
}
.check-icon {
  width: 20px; height: 20px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { width: 12px; height: 12px; stroke: var(--orange); }

.spotlight-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured h3,
.pricing-card.featured h4,
.pricing-card.featured .pricing-val { color: var(--bg); }
.pricing-card.featured .pricing-desc { color: rgba(255,252,248,0.6); }
.pricing-card.featured .pricing-feature { color: rgba(255,252,248,0.75); }
.pricing-card.featured .pricing-feature .check-icon { background: rgba(255,255,255,0.1); }
.pricing-card.featured .pricing-feature .check-icon svg { stroke: var(--orange); }
.pricing-card.featured hr { border-color: rgba(255,255,255,0.1); }

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}
.pricing-plan { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.pricing-card.featured .pricing-plan { color: var(--orange); }
.pricing-name { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-price { margin-bottom: 28px; }
.pricing-val { font-family: var(--font-display); font-size: 48px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.pricing-val small { font-size: 20px; font-weight: 600; }
.pricing-per { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted);
}
.pricing-cta { margin-top: auto; }

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { display: flex; gap: 3px; }
.testi-star { width: 16px; height: 16px; fill: var(--orange); }
.testi-quote { font-size: 15px; color: var(--text); line-height: 1.65; flex: 1; font-style: italic; }
.testi-quote::before { content: '"'; font-size: 40px; font-family: var(--font-display); color: var(--orange-light); line-height: 0; vertical-align: -16px; margin-right: 2px; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border-light); padding-top: 16px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--orange-dark);
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testi-role { font-size: 12px; color: var(--text-dim); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600; color: var(--text);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--surface); }
.faq-q.open { color: var(--orange); background: var(--surface); }
.faq-chevron { width: 20px; height: 20px; stroke: currentColor; transition: transform 0.25s; flex-shrink: 0; }
.faq-q.open .faq-chevron { transform: rotate(180deg); stroke: var(--orange); }
.faq-a {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  font-size: 15px; color: var(--text-muted); line-height: 1.7;
  background: var(--surface);
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open { max-height: 300px; padding: 20px 28px; }

/* CTA SECTION */
.cta-section {
  background: var(--text);
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 40px;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 0%, rgba(232,97,26,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--bg); position: relative; }
.cta-section p  { color: rgba(255,252,248,0.6); font-size: 18px; max-width: 480px; margin: 16px auto 36px; position: relative; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }

/* FOOTER */
.footer {
  background: var(--text);
  color: rgba(255,252,248,0.6);
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; margin: 14px 0 20px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.02em;
}
.footer-logo-icon {
  width: 32px; height: 32px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 18px; height: 18px; fill: white; }
.footer-col h5 { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--bg); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,252,248,0.5); transition: color 0.18s; }
.footer-col a:hover { color: var(--bg); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,252,248,0.5);
  transition: all 0.18s;
}
.footer-social:hover { background: rgba(255,255,255,0.08); color: var(--bg); border-color: rgba(255,255,255,0.2); }
.footer-social svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
}
.contact-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; stroke: var(--orange); }
.contact-card h4 { font-size: 15px; margin-bottom: 4px; }
.contact-card p { font-size: 14px; color: var(--text-muted); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 500; color: var(--text); }
.form-input {
  height: 44px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0 14px;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,97,26,0.12);
  background: var(--white);
}
.form-input::placeholder { color: var(--text-dim); }
textarea.form-input { height: 120px; padding: 12px 14px; resize: vertical; }
.form-select { height: 44px; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 0 14px; font-size: 15px; color: var(--text); appearance: none; cursor: pointer; transition: border-color 0.2s; }
.form-select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,97,26,0.12); }

/* ABOUT PAGE */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
  transition: all 0.25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--orange-dark);
  margin: 0 auto 14px;
  border: 3px solid var(--orange-light);
}
.team-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.team-socials { display: flex; justify-content: center; gap: 8px; }
.team-social { width: 30px; height: 30px; border-radius: 6px; background: var(--surface); display: flex; align-items: center; justify-content: center; transition: all 0.18s; }
.team-social:hover { background: var(--orange); }
.team-social:hover svg { stroke: white; }
.team-social svg { width: 14px; height: 14px; stroke: var(--text-muted); fill: none; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -32px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--white); border: 2px solid var(--orange); }
.timeline-year { font-size: 12px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.timeline-title { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.timeline-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s cubic-bezier(.23,1,.32,1), transform 0.72s cubic-bezier(.23,1,.32,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* Directional Reveals */
.reveal-left {
  opacity: 0; transform: translateX(-72px);
  transition: opacity 0.75s cubic-bezier(.23,1,.32,1), transform 0.75s cubic-bezier(.23,1,.32,1);
}
.reveal-right {
  opacity: 0; transform: translateX(72px);
  transition: opacity 0.75s cubic-bezier(.23,1,.32,1), transform 0.75s cubic-bezier(.23,1,.32,1);
}
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, #E8611A 0%, #FF8C42 50%, #E8611A 100%);
  background-size: 200% auto;
  animation: shimmer-bar 2s linear infinite;
  box-shadow: 0 0 8px rgba(232,97,26,0.5);
  pointer-events: none;
}
@keyframes shimmer-bar { to { background-position: 200% center; } }

/* MODULE SHOWCASE Full-Width Panel Scroll */
.hpanel-section { position: relative; }

.hpanel-sticky {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden; background: #0B0905;
}

/* Top bar overlay */
.hpanel-topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 56px;
  background: linear-gradient(to bottom, rgba(11,9,5,0.92) 0%, transparent 100%);
  pointer-events: none;
}
.hpanel-topbar-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,252,248,0.3);
}
.hpanel-topbar-counter {
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  color: rgba(255,252,248,0.45); letter-spacing: 0.06em;
}

/* Track: 6 panels side by side */
.hpanel-track {
  display: flex; width: 600vw; height: 100vh;
  will-change: transform;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Single panel */
.hpanel {
  width: 100vw; height: 100vh; flex-shrink: 0;
  display: grid; grid-template-columns: 42% 58%;
}

/* Left: dark content side */
.hpanel-left {
  background: #0B0905; padding: 100px 60px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hpanel-ghost-num {
  position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: clamp(160px, 22vw, 260px);
  font-weight: 900; line-height: 1; letter-spacing: -0.05em;
  color: rgba(255,255,255,0.028); pointer-events: none; user-select: none;
}
.hpanel-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: 100px; border: 1px solid;
  margin-bottom: 24px; width: fit-content;
}
.hpanel-num {
  font-family: var(--font-display); font-size: 11px;
  font-weight: 900; opacity: 0.6; letter-spacing: 0.04em;
}
.hpanel-title {
  font-family: var(--font-display); font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 900; line-height: 1.06; letter-spacing: -0.03em;
  color: #FFFCF8; margin: 0 0 20px;
}
.hpanel-title span { display: block; }
.hpanel-desc {
  font-size: 15px; color: rgba(255,252,248,0.5);
  line-height: 1.72; margin: 0 0 36px; max-width: 390px;
}
.hpanel-stats {
  display: flex; margin: 0 0 40px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; overflow: hidden;
}
.hpanel-stat {
  flex: 1; padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hpanel-stat:last-child { border-right: none; }
.hpanel-stat-val {
  font-family: var(--font-display); font-size: 26px;
  font-weight: 900; line-height: 1; letter-spacing: -0.03em;
  color: var(--orange);
}
.hpanel-stat-key {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: rgba(255,252,248,0.3); margin-top: 5px;
}
.hpanel-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border-radius: 100px;
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.01em;
  border: 1.5px solid; transition: all 0.25s ease;
  cursor: pointer; width: fit-content; text-decoration: none;
}
.hpanel-cta svg { width: 15px; height: 15px; transition: transform 0.22s; flex-shrink: 0; }
.hpanel-cta:hover svg { transform: translateX(4px); }

/* Right: gradient visual side */
.hpanel-right {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hpanel-right-orb {
  position: absolute; border-radius: 50%;
  filter: blur(55px); pointer-events: none;
}
.hpanel-mockup-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.075);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px; padding: 28px 26px;
  width: min(430px, 82%);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hpanel-mockup-title {
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  color: rgba(255,255,255,0.9); margin-bottom: 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.hpanel-mockup-badge {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 100px; background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
}

/* Module color themes */
/* Left-side accents: all use site brand orange consistent identity */
.hpanel-tag     { color:var(--orange); border-color:rgba(232,97,26,.32); background:rgba(232,97,26,.09); }
.hpanel-cta     { color:var(--orange); border-color:rgba(232,97,26,.42); }
.hpanel-cta:hover { background:rgba(232,97,26,.13); border-color:rgba(232,97,26,.7); }
.hpanel-stat-val{ color:var(--orange); }

/* Right-side gradients all orange + black, each panel a different tone/angle */
.hpanel-1 .hpanel-right { background:linear-gradient(148deg,#0C0300 0%,#5C1C00 55%,#C04C14 100%); }
.hpanel-2 .hpanel-right { background:linear-gradient(156deg,#080200 0%,#4A1500 55%,#A03810 100%); }
.hpanel-3 .hpanel-right { background:linear-gradient(140deg,#0E0400 0%,#6A2800 55%,#C85418 100%); }
.hpanel-4 .hpanel-right { background:linear-gradient(162deg,#0A0300 0%,#541B00 55%,#B04012 100%); }
.hpanel-5 .hpanel-right { background:linear-gradient(145deg,#0C0400 0%,#682800 55%,#CC5010 100%); }
.hpanel-6 .hpanel-right { background:linear-gradient(135deg,#070200 0%,#3E1200 55%,#8C3010 100%); }

/* Bottom Navigation */
.hpanel-nav {
  position: absolute; bottom: 36px; left: 0; right: 0; z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  pointer-events: none;
}
.hpanel-nav-dots {
  display: flex; gap: 8px; align-items: center; pointer-events: all;
}
.hpanel-nav-dot {
  width: 8px; height: 8px; border-radius: 100px;
  background: rgba(255,255,255,0.18); cursor: pointer;
  transition: all 0.35s cubic-bezier(.23,1,.32,1);
}
.hpanel-nav-dot.active { width: 36px; background: var(--orange); }
.hpanel-nav-labels {
  display: flex; gap: 20px; align-items: center; pointer-events: all;
}
.hpanel-nav-lbl {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,252,248,0.2); cursor: pointer;
  transition: color 0.3s; padding: 3px 0;
}
.hpanel-nav-lbl.active { color: rgba(255,252,248,0.8); }
.hpanel-nav-lbl:hover  { color: rgba(255,252,248,0.5); }

/* Scroll Hint */
.hpanel-hint {
  position: absolute; bottom: 40px; right: 52px; z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hpanel-hint-mouse {
  width: 22px; height: 34px; border: 1.5px solid rgba(255,252,248,0.2);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.hpanel-hint-wheel {
  width: 3px; height: 6px; background: rgba(255,252,248,0.4);
  border-radius: 2px; animation: hint-scroll 1.8s ease-in-out infinite;
}
.hpanel-hint-text {
  font-size: 8.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,252,248,0.18);
}
@keyframes hint-scroll {
  0%   { opacity: 1; transform: translateY(0); }
  60%  { opacity: 0; transform: translateY(8px); }
  100% { opacity: 0; transform: translateY(8px); }
}

/* Mockup UI Elements */
.mku-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mku-row:last-child { border-bottom: none; }
.mku-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.14); display: flex;
  align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.mku-name { flex: 1; font-size: 12.5px; color: rgba(255,255,255,0.75); font-weight: 500; }
.mku-badge {
  font-size: 9px; font-weight: 700; padding: 3px 9px;
  border-radius: 100px; letter-spacing: 0.05em; text-transform: uppercase; flex-shrink: 0;
}
.mku-badge-green  { background: rgba(74,222,128,0.18);  color: #4ADE80; }
.mku-badge-yellow { background: rgba(251,191,36,0.18);  color: #FBBF24; }
.mku-badge-red    { background: rgba(248,113,113,0.18); color: #F87171; }

/* Attendance ring */
.mku-ring-wrap { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.mku-ring {
  width: 70px; height: 70px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(#E8611A 0% 94%, rgba(255,255,255,0.08) 94% 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.mku-ring::before {
  content: ''; position: absolute; inset: 10px; border-radius: 50%;
  background: #1C0800; backdrop-filter: blur(4px);
}
.mku-ring-val {
  position: relative; z-index: 1; font-family: var(--font-display);
  font-size: 13px; font-weight: 900; color: #fff;
}
.mku-ring-info-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); }
.mku-ring-info-sub   { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* Fee donut */
.mku-donut-wrap { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.mku-donut {
  width: 70px; height: 70px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(#E8611A 0% 89%, rgba(255,255,255,0.08) 89% 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.mku-donut::before {
  content: ''; position: absolute; inset: 12px; border-radius: 50%;
  background: #1C0800; backdrop-filter: blur(4px);
}
.mku-donut-val {
  position: relative; z-index: 1; font-family: var(--font-display);
  font-size: 12px; font-weight: 900; color: #fff;
}

/* Timetable grid */
.mku-tt-grid { display: grid; grid-template-columns: 52px 1fr; gap: 5px 10px; }
.mku-tt-time {
  font-size: 10px; color: rgba(255,255,255,0.3); font-weight: 600;
  display: flex; align-items: center; white-space: nowrap;
}
.mku-tt-block {
  border-radius: 7px; padding: 5px 11px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.88);
}

/* Score bars */
.mku-score-row { margin-bottom: 11px; }
.mku-score-header { display: flex; justify-content: space-between; margin-bottom: 4px; }
.mku-score-name { font-size: 11.5px; color: rgba(255,255,255,0.65); font-weight: 500; }
.mku-score-num  { font-size: 11.5px; font-weight: 800; }
.mku-score-bar  { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.07); overflow: hidden; }
.mku-score-fill { height: 100%; border-radius: 3px; }

/* Notification feed */
.mku-notif {
  display: flex; gap: 10px; padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mku-notif:last-child { border-bottom: none; }
.mku-notif-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mku-notif-icon svg { width: 16px; height: 16px; }
.mku-notif-body { flex: 1; min-width: 0; }
.mku-notif-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85); line-height: 1.3; }
.mku-notif-sub   { font-size: 10.5px; color: rgba(255,255,255,0.35); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Staff roster */
.mku-staff-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mku-staff-row:last-child { border-bottom: none; }
.mku-staff-info { flex: 1; min-width: 0; }
.mku-staff-name { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85); }
.mku-staff-role { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 1px; }
.mku-staff-sal  { font-family: var(--font-display); font-size: 12px; font-weight: 800; flex-shrink: 0; }

/* Mobile: hide section */
@media (max-width: 1024px) { .hpanel-section { display: none; } }

/* Split reveal for spotlight */
.spotlight-text.reveal-left,
.spotlight-visual.reveal-right { transition-duration: 0.85s; transition-delay: 0.05s; }
.spotlight-text.reveal-right,
.spotlight-visual.reveal-left  { transition-duration: 0.85s; transition-delay: 0.15s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .spotlight { grid-template-columns: 1fr; gap: 48px; }
  .spotlight.reverse .spotlight-visual { order: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .stat-item + .stat-item::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 56px 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 56px; }
  .hero-content { padding: 0 20px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 48px 24px; margin: 0 20px; border-radius: var(--radius-lg); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
}

/* MOBILE NAV DRAWER */
.nav-drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-lg);
}
.nav-drawer.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav-drawer a {
  display: block; padding: 12px 0;
  font-size: 16px; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--border-light);
  transition: color 0.18s;
}
.nav-drawer a:hover { color: var(--orange); }
.nav-drawer a:last-of-type { border-bottom: none; margin-bottom: 16px; }

/* ============================================================
 DESIGN ENHANCEMENTS
 ============================================================ */

/* BUTTON SHIMMER */
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  transition: none;
}
.btn-primary:hover::before {
  animation: shimmer 0.6s ease forwards;
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 160%; }
}

/* HERO GLOW BLOB */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: blobPulse 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 560px; height: 400px;
  background: rgba(232,97,26,0.13);
  top: -80px; right: -60px;
}
.hero-blob-2 {
  width: 360px; height: 300px;
  background: rgba(245,158,11,0.09);
  bottom: 60px; left: -80px;
  animation-delay: 4s;
}
@keyframes blobPulse {
  0%,100% { transform: scale(1) translate(0,0); }
  33%      { transform: scale(1.08) translate(16px,-12px); }
  66%      { transform: scale(0.95) translate(-10px,14px); }
}

/* HERO RING DECORATION */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,97,26,0.12);
  pointer-events: none;
  animation: ringPulse 4s ease-in-out infinite;
}
.hero-ring-1 { width: 500px; height: 500px; top: 50%; right: -100px; transform: translateY(-50%); }
.hero-ring-2 { width: 700px; height: 700px; top: 50%; right: -200px; transform: translateY(-50%); animation-delay: 0.5s; border-color: rgba(232,97,26,0.06); }
.hero-ring-3 { width: 900px; height: 900px; top: 50%; right: -300px; transform: translateY(-50%); animation-delay: 1s; border-color: rgba(232,97,26,0.04); }
@keyframes ringPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

/* FLOAT CARD GLASS */
.hero-float-card {
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.88) !important;
  border: 1px solid rgba(255,255,255,0.9) !important;
  box-shadow: 0 8px 32px rgba(28,18,8,0.12), 0 0 0 1px rgba(232,97,26,0.08) !important;
}

/* STATS BAR ENHANCED */
.stat-val {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-val span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* SECTION DIVIDER DOT GRID */
.dot-grid-section {
  position: relative;
}
.dot-grid-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232,97,26,0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 0%, transparent 100%);
  z-index: 0;
}
.dot-grid-section > * { position: relative; z-index: 1; }

/* FEATURE CARD */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(232,97,26,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feature-card:hover::after { opacity: 1; }
.feature-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(28,18,8,0.12), 0 0 0 1px rgba(232,97,26,0.15);
  border-color: rgba(232,97,26,0.2);
}

/* LOGO STRIP */
.logo-strip {
  padding: 32px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.logo-strip::before,
.logo-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logo-strip::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.logo-strip::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.logo-strip-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: logoScroll 22s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s;
}
.logo-chip:hover { border-color: rgba(232,97,26,0.3); color: var(--orange); box-shadow: var(--shadow); }
.logo-chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-light); border: 2px solid var(--orange); flex-shrink: 0; }

/* HOW IT WORKS */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  position: relative;
}
.hiw-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(33.33% - 8px); right: calc(33.33% - 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange), var(--orange-light));
  pointer-events: none;
}
.hiw-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  transition: all 0.25s ease;
}
.hiw-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,97,26,0.2);
}
.hiw-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(232,97,26,0.3);
  position: relative;
  z-index: 1;
}
.hiw-card h4 { font-size: 18px; margin-bottom: 10px; }
.hiw-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* TESTIMONIAL */
.testi-card {
  position: relative;
  overflow: hidden;
}
.testi-bigquote {
  position: absolute;
  top: -8px; right: 20px;
  font-size: 96px;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--orange-light);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.testi-card:hover .testi-bigquote { color: rgba(232,97,26,0.12); }

/* CTA SECTION */
.cta-section {
  position: relative;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: var(--radius-xl);
  pointer-events: none;
}

/* PRICING CARD GLOW */
.pricing-card.featured {
  box-shadow: 0 0 0 1px rgba(232,97,26,0.3), 0 24px 64px rgba(28,18,8,0.25);
}
.pricing-card.featured .btn-primary {
  background: var(--grad);
  box-shadow: 0 4px 20px rgba(232,97,26,0.4);
}

/* SPOTLIGHT VISUAL GLOW */
.spotlight-visual {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(232,97,26,0.08);
}
.spotlight-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(232,97,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* SECTION HEADER UNDERLINE ACCENT */
.accent-underline {
  position: relative;
  display: inline-block;
}
.accent-underline::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  border-radius: 100px;
}

/* NAV ENHANCED */
.nav-logo-icon {
  background: var(--grad) !important;
  box-shadow: 0 4px 14px rgba(232,97,26,0.4) !important;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-logo:hover .nav-logo-icon {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 6px 20px rgba(232,97,26,0.5) !important;
}

/* RESPONSIVE ADDITIONS */
@media (max-width: 768px) {
  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-grid::before { display: none; }
  .logo-strip { padding: 24px 0; }
}
