/* ==========================================================================
   Aditya Technologies - Modern Minimalist Light Design System
   ========================================================================== */

:root {
  /* Core Light Palette */
  --bg-primary: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-card-subtle: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.88);

  /* Refined Minimalist Accents */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-border: #bfdbfe;
  --primary-glow: rgba(37, 99, 235, 0.15);
  
  --cyan: #0284c7;
  --cyan-light: #f0f9ff;
  --emerald: #059669;
  --emerald-light: #ecfdf5;
  --amber: #d97706;
  --amber-light: #fffbeb;
  --rose: #e11d48;
  --rose-light: #fff1f2;
  --indigo: #4f46e5;
  --indigo-light: #eef2ff;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Text Colors */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #94a3b8;
  --text-inverse: #ffffff;

  /* Borders & Shadows */
  --border-subtle: #e2e8f0;
  --border-hover: #cbd5e1;
  --border-accent: rgba(37, 99, 235, 0.3);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 30px -4px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.03);

  /* Dimensions */
  --max-width: 1200px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(at 50% 0%, rgba(37, 99, 235, 0.04) 0px, transparent 65%),
    radial-gradient(at 100% 40%, rgba(5, 150, 105, 0.03) 0px, transparent 50%),
    radial-gradient(at 0% 80%, rgba(2, 132, 199, 0.03) 0px, transparent 50%);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
}

.gradient-text, .accent-text {
  background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.text-indigo { color: #4f46e5 !important; }
.text-cyan { color: #0284c7 !important; }
.text-emerald { color: #059669 !important; }
.text-amber { color: #d97706 !important; }
.text-rose { color: #e11d48 !important; }
.text-success { color: #059669 !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  outline: none;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1eb956;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Section Common Headers */
.section-header {
  max-width: 760px;
  margin: 0 auto 52px auto;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

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

/* ==========================================================================
   NAVIGATION (Floating Island Navbar - Clean Minimalist Light)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 20px;
  pointer-events: none;
  transition: var(--transition);
}

.header-wrapper {
  pointer-events: auto;
  max-width: 1140px;
  margin: 0 auto;
}

.nav-island {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
  padding: 8px 14px 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.site-header.scrolled .nav-island {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 35px -6px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
  flex-shrink: 0;
}

.logo-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1.1;
}

.founder-status-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: var(--emerald);
  font-weight: 600;
}

.pulse-green-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 6px var(--emerald);
  animation: pulse 1.8s infinite;
}

/* Nav Links Pill Container */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  padding: 4px 6px;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
}

.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.nav-item:hover, .nav-item.active {
  color: var(--text-main);
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.nav-item.badge-link {
  color: var(--emerald) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-phone-pill:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.nav-phone-pill i {
  color: var(--primary);
  font-size: 0.78rem;
}

.btn-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: #25d366;
  color: #ffffff;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
}

.btn-whatsapp-pill:hover {
  background: #1eb956;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--text-main);
  font-size: 1.1rem;
  padding: 6px 12px;
  border-radius: 9999px;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.drawer-cta {
  margin-top: 20px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-full);
  padding: 12px;
  border: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 70px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.human-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--emerald-light);
  border: 1px solid rgba(5, 150, 105, 0.2);
  color: var(--emerald);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.hero-subtitle strong {
  color: var(--text-main);
}

/* Founder Direct Promise Box */
.founder-promise-box {
  background: #f8fafc;
  border-left: 3px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  margin: 18px 0 26px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  border-right: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.founder-promise-box .founder-icon {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.founder-promise-box strong {
  display: block;
  font-size: 0.78rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.founder-promise-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-human-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
  border-top: 1px solid #e2e8f0;
  padding-top: 18px;
}

.point-item {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.point-item i {
  color: var(--emerald);
}

/* Hero Visual / Dashboard Preview */
.hero-visual {
  position: relative;
}

.hero-dashboard-preview {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.dashboard-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #f87171; }
.dot.yellow { background: #fbbf24; }
.dot.green { background: #34d399; }

.bar-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-pill {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--emerald-light);
  color: var(--emerald);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-pill i {
  font-size: 0.4rem;
}

.dashboard-body {
  padding: 20px;
}

.stat-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.mini-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 10px;
}

.mini-card .label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.mini-card .val {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.mini-bar {
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
}

.mini-bar .fill {
  height: 100%;
}
.fill.green { background: var(--emerald); }
.fill.indigo { background: var(--primary); }
.fill.cyan { background: var(--cyan); }

.live-activity-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 14px;
}

.activity-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 6px;
}

.time-stamp {
  color: var(--emerald);
  font-size: 0.7rem;
}

.activity-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.activity-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.icon-avatar.success { background: var(--emerald-light); color: var(--emerald); }
.icon-avatar.indigo { background: var(--primary-light); color: var(--primary); }
.icon-avatar.cyan { background: var(--cyan-light); color: var(--cyan); }

.activity-info {
  display: flex;
  flex-direction: column;
}

.activity-info strong {
  font-size: 0.8rem;
  color: var(--text-main);
}

.activity-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.floating-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.floating-badge i {
  font-size: 1.4rem;
}

.floating-badge strong {
  font-size: 0.78rem;
  color: var(--text-main);
}

.floating-badge span {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.badge-playstore {
  bottom: -15px;
  left: -15px;
}
.badge-playstore i { color: var(--emerald); }

.badge-speed {
  top: 30px;
  right: -20px;
}
.badge-speed i { color: var(--primary); }

/* Value Pillars Strip */
.value-pillars-container {
  margin-top: 50px;
}

.value-pillars-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pillar-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
}

.pillar-text span {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.pillar-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
}

/* ==========================================================================
   FLAGSHIP APP SHOWCASE: CAREERXPRESS
   ========================================================================== */
.careerxpress-section {
  padding: 40px 0 60px 0;
}

.careerxpress-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.cx-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.badge-verified {
  background: var(--emerald-light);
  border: 1px solid rgba(5, 150, 105, 0.25);
  color: var(--emerald);
}

.cx-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.cx-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.cx-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.cx-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cx-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 10px;
  padding: 9px 20px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  transition: var(--transition);
}

.btn-playstore:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.btn-playstore i {
  font-size: 1.6rem;
  color: #34d399;
}

.play-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.play-text small {
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: #94a3b8;
  text-transform: uppercase;
}

.play-text strong {
  font-size: 1.05rem;
  font-family: var(--font-heading);
}

.cx-meta-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cx-meta-note code {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--primary);
  font-family: monospace;
}

.cx-visual {
  display: flex;
  justify-content: center;
}

.cx-app-preview-box {
  width: 100%;
  max-width: 340px;
  position: relative;
}

.cx-badge-floating {
  position: absolute;
  top: -12px;
  right: -8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow-md);
  z-index: 5;
}

.cx-phone-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cx-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.cx-app-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.cx-app-identity strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-main);
}

.cx-app-identity span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.cx-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cx-mock-screen-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cx-mock-screen-item i {
  font-size: 1.15rem;
}

.cx-mock-screen-item h6 {
  font-size: 0.8rem;
  margin-bottom: 2px;
  color: var(--text-main);
}

.cx-mock-screen-item span {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.cx-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}

.live-status {
  font-size: 0.72rem;
  color: var(--emerald);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cx-open-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   INTERACTIVE ANDROID APP SHOWCASE
   ========================================================================== */
.demo-section {
  padding: 80px 0;
  background: #f1f5f9;
}

.phone-showcase-wrapper {
  display: grid;
  grid-template-columns: 310px auto 310px;
  gap: 32px;
  align-items: center;
  margin-top: 10px;
}

.demo-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.demo-tab i {
  font-size: 1.25rem;
  color: var(--text-dim);
}

.demo-tab strong {
  font-size: 0.92rem;
  color: var(--text-main);
  font-family: var(--font-heading);
}

.demo-tab span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.demo-tab:hover {
  border-color: #cbd5e1;
  transform: translateX(3px);
}

.demo-tab.active {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}

.demo-tab.active i {
  color: var(--primary);
}

.demo-tab.active strong {
  color: var(--primary);
}

/* Realistic Android Phone Mockup */
.phone-display-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.android-phone-frame {
  width: 310px;
  height: 620px;
  background: #0f172a;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 0 0 4px #334155, 0 0 0 6px #1e293b, 0 20px 50px -10px rgba(0, 0, 0, 0.35);
  position: relative;
}

.phone-volume-buttons {
  position: absolute;
  left: -8px;
  top: 130px;
  width: 4px;
  height: 65px;
  background: #475569;
  border-radius: 4px 0 0 4px;
}

.phone-power-button {
  position: absolute;
  right: -8px;
  top: 160px;
  width: 4px;
  height: 40px;
  background: #475569;
  border-radius: 0 4px 4px 0;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: #0f172a;
  border-radius: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.camera-lens {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e293b;
}

.speaker-grill {
  width: 35px;
  height: 3px;
  background: #334155;
  border-radius: 3px;
}

.android-status-bar {
  height: 34px;
  padding: 8px 16px 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  color: #334155;
  font-weight: 700;
  z-index: 40;
}

.status-icons {
  display: flex;
  gap: 5px;
  font-size: 0.62rem;
}

.app-header {
  padding: 8px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.school-brand-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-main);
}

.school-brand-chip i {
  color: var(--primary);
}

.app-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
}

.notification-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 5px;
  height: 5px;
  background: #ef4444;
  border-radius: 50%;
}

.user-avatar-tiny {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--primary);
}

.user-avatar-tiny img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-viewport {
  flex-grow: 1;
  overflow-y: auto;
  position: relative;
}

.screen-view {
  position: absolute;
  inset: 0;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.97);
  transition: all 0.25s ease;
  overflow-y: auto;
}

.screen-view.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.screen-greeting h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.grade-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Screen 1: Attendance */
.attendance-summary-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.donut-chart-box {
  width: 70px;
  height: 70px;
  position: relative;
  flex-shrink: 0;
}

.donut-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.donut-bg {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 4;
}

.donut-fill {
  fill: none;
  stroke: var(--emerald);
  stroke-width: 4;
  stroke-linecap: round;
}

.donut-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.donut-value span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
}

.donut-value small {
  font-size: 0.58rem;
  color: var(--text-muted);
}

.attendance-stats {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.68rem;
}

.badge-present { color: var(--emerald); font-weight: 600; }
.badge-absent { color: #e11d48; font-weight: 600; }
.badge-leave { color: var(--amber); font-weight: 600; }

.interactive-interactive-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius-md);
  padding: 12px;
}

.box-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.status-verified {
  color: var(--emerald);
  font-weight: 700;
}

.time-log {
  font-size: 0.7rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.app-action-btn {
  width: 100%;
  padding: 8px;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.app-action-btn:hover {
  background: var(--primary-hover);
}

/* Screen 2: Fees */
.fee-card-highlight {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 12px;
}

.fee-tag {
  font-size: 0.62rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

.fee-card-highlight h4 {
  font-size: 0.9rem;
  margin: 2px 0 6px 0;
}

.amount-line {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.amount-line .curr { font-size: 0.85rem; color: var(--primary); font-weight: 700; }
.amount-line .amount { font-size: 1.45rem; font-weight: 800; color: var(--text-main); }
.due-badge {
  margin-left: auto;
  font-size: 0.62rem;
  background: var(--rose-light);
  color: var(--rose);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.fee-breakdown-list {
  font-size: 0.68rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #e2e8f0;
  padding-top: 6px;
  margin-bottom: 10px;
}

.fee-breakdown-list div {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.pay-btn {
  background: var(--emerald);
}
.pay-btn:hover {
  background: #047857;
}

.receipt-history h6 {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.receipt-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.receipt-item strong {
  display: block;
  font-size: 0.72rem;
}

.receipt-item span {
  font-size: 0.62rem;
  color: var(--text-muted);
}

.download-badge {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
}

/* Screen 3: Classroom */
.timetable-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.timetable-header h6 { font-size: 0.78rem; }
.live-indicator { font-size: 0.62rem; color: var(--emerald); font-weight: 700; }

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

.period-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
}

.period-item.current {
  background: var(--primary-light);
  border-color: var(--primary-border);
}

.period-time {
  font-size: 0.62rem;
  color: var(--text-muted);
  width: 62px;
  flex-shrink: 0;
}

.period-details strong { font-size: 0.72rem; color: var(--text-main); display: block; }
.period-details span { font-size: 0.62rem; color: var(--text-muted); }

.homework-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 10px;
}

.hw-head { display: flex; justify-content: space-between; margin-bottom: 4px; }
.tag-hw { font-size: 0.62rem; color: var(--amber); font-weight: 700; }
.hw-date { font-size: 0.62rem; color: var(--rose); font-weight: 600; }
.homework-card strong { display: block; font-size: 0.74rem; margin-bottom: 2px; }
.homework-card p { font-size: 0.65rem; color: var(--text-muted); margin-bottom: 6px; }

.upload-btn {
  width: 100%;
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  color: var(--text-main);
  padding: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Screen 4: Analytics */
.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.grade-pill-large {
  background: var(--emerald);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
}

.graph-mockup {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 10px;
  margin-bottom: 10px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 80px;
}

.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 3px;
}

.bar {
  width: 18px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.bar span { font-size: 0.52rem; font-weight: 700; color: #ffffff; }
.bar-col small { font-size: 0.62rem; color: var(--text-muted); }

.analytics-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.kpi-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 6px;
  text-align: center;
}

.kpi-label { font-size: 0.62rem; color: var(--text-muted); display: block; }
.kpi-val { font-size: 0.95rem; font-weight: 800; color: var(--primary); }

/* Screen 5: Bus GPS */
.gps-status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.speed-badge {
  background: var(--emerald-light);
  color: var(--emerald);
  font-size: 0.62rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.map-simulator {
  height: 150px;
  background: #f1f5f9;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-bottom: 10px;
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(#e2e8f0 1px, transparent 1px),
    linear-gradient(90deg, #e2e8f0 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-route-line {
  position: absolute;
  top: 30px;
  left: 25px;
  width: 150px;
  height: 70px;
  border-top: 3px dashed var(--primary);
  border-right: 3px dashed var(--primary);
  border-radius: 0 14px 0 0;
}

.bus-marker {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 24px;
  height: 24px;
  background: var(--amber);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

.home-marker {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.62rem;
  color: var(--emerald);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eta-floating-card {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: #ffffff;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.safety-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.safety-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--text-main);
  padding: 7px;
  font-size: 0.68rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.safety-btn.alert {
  background: var(--rose-light);
  border-color: rgba(225, 29, 72, 0.2);
  color: var(--rose);
}

.android-bottom-nav {
  height: 44px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 40;
}

.nav-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.78rem;
  cursor: pointer;
}

.nav-icon span { font-size: 0.55rem; }
.nav-icon.active { color: var(--primary); font-weight: 700; }

.phone-home-indicator {
  width: 90px;
  height: 3px;
  background: #cbd5e1;
  border-radius: 3px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

/* Demo Explanation Card (Right) */
.demo-explanation-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-md);
}

.tech-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.demo-explanation-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.demo-explanation-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.feature-checklist li i {
  color: var(--emerald);
  margin-top: 3px;
}

.demo-cta-box {
  border-top: 1px solid #e2e8f0;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-cta-box span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SOLUTIONS SECTION
   ========================================================================== */
.solutions-section {
  padding: 80px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.solution-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

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

.sol-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.gradient-indigo { background: var(--primary-light); color: var(--primary); }
.gradient-cyan { background: var(--cyan-light); color: var(--cyan); }
.gradient-violet { background: #f3e8ff; color: #9333ea; }
.gradient-emerald { background: var(--emerald-light); color: var(--emerald); }
.gradient-rose { background: var(--rose-light); color: var(--rose); }
.gradient-amber { background: var(--amber-light); color: var(--amber); }

.solution-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.solution-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.sol-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.sol-tags span {
  font-size: 0.72rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-weight: 600;
}

.sol-learn-more {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   FEATURES / KEY MODULES
   ========================================================================== */
.features-section {
  padding: 80px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.feature-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ==========================================================================
   HOW WE BUILD (4-STEP PROCESS)
   ========================================================================== */
.process-section {
  padding: 80px 0;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.process-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.process-step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  align-self: flex-start;
}

.step-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.process-step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.process-step-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.process-cta-banner {
  background: var(--emerald-light);
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.process-cta-banner h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.process-cta-banner p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ==========================================================================
   TECH STACK
   ========================================================================== */
.tech-section {
  padding: 70px 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.tech-badge-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.tech-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-chip:hover {
  border-color: #cbd5e1;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 80px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-question i {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-answer p {
  padding: 0 22px 18px 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT FOUNDER SECTION
   ========================================================================== */
.about-founder-section {
  padding: 80px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.about-founder-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.founder-story-col h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.story-lead {
  font-size: 1.05rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 14px;
  border-left: 3px solid var(--primary);
  padding-left: 14px;
}

.story-body {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.founder-signature-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.founder-sign-info strong {
  font-size: 1.05rem;
  color: var(--text-main);
  display: block;
}

.founder-sign-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

.direct-number-link {
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.founder-guarantees-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guarantee-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition);
}

.guarantee-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

.guarantee-card .g-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.guarantee-card h4 {
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.guarantee-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-heading {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 14px;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-row strong {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.contact-detail-row a, .contact-detail-row span {
  font-size: 0.95rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

.phone-highlight {
  color: var(--primary) !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
}

.direct-chat-card {
  background: var(--emerald-light);
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.direct-chat-card i {
  font-size: 1.8rem;
  color: var(--emerald);
}

.direct-chat-card strong {
  font-size: 0.88rem;
  color: var(--text-main);
  display: block;
}

.direct-chat-card span {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: block;
}

.form-glass-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-glass-card h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.form-subtext {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 5px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.input-with-icon input,
.custom-select,
textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 10px 14px 10px 38px;
  transition: var(--transition);
  outline: none;
}

textarea {
  padding: 10px 14px;
  resize: vertical;
}

.custom-select {
  padding-left: 14px;
}

.input-with-icon input:focus,
.custom-select:focus,
textarea:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.field-error {
  font-size: 0.72rem;
  color: var(--rose);
  margin-top: 3px;
  min-height: 14px;
}

.form-privacy-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
}

/* ==========================================================================
   TOAST & MODAL
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid var(--emerald);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transform: translateY(120px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  max-width: 380px;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  font-size: 1.3rem;
  color: var(--emerald);
}

.toast-body strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-main);
}

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

.toast-close {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 0.95rem;
  cursor: pointer;
  margin-left: 8px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.modal-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--emerald-light);
  color: var(--emerald);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
}

.modal-box h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.modal-box p {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: 18px;
}

/* ==========================================================================
   FOOTER (Clean Light Minimalist)
   ========================================================================== */
.site-footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 60px 0 24px 0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-summary {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 14px 0 18px 0;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.footer-col h4 {
  font-size: 0.98rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.86rem;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--primary);
}

.contact-mini {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-mini i {
  color: var(--primary);
}

.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--emerald-light);
  border: 1px solid rgba(5, 150, 105, 0.25);
  color: var(--emerald);
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-top: 6px;
}

.pulse-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
}

.footer-bottom-bar {
  border-top: 1px solid #e2e8f0;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a {
  color: var(--text-dim);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--text-muted);
}

/* Floating WhatsApp Quick Action Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  z-index: 1500;
  text-decoration: none;
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  background: #1eb956;
}

.whatsapp-tooltip {
  position: absolute;
  left: 64px;
  background: #0f172a;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1100px) {
  .phone-showcase-wrapper {
    grid-template-columns: 260px auto;
    gap: 24px;
  }
  .demo-explanation-card {
    grid-column: span 2;
  }
  .value-pillars-card {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .pillar-divider { display: none; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cx-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-header {
    padding: 10px 14px;
  }
  .nav-links, .nav-phone-pill, .founder-status-chip {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .phone-showcase-wrapper {
    grid-template-columns: 1fr;
  }
  .demo-controls {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .demo-tab {
    flex-shrink: 0;
    width: 200px;
  }
  .value-pillars-card {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .floating-badge {
    display: none;
  }
}
