/* ============================================================
   KSHIPRA ACADEMY — ZOHO BOOKS CERTIFICATION LANDING PAGE
   PREMIUM DIGITAL WORKSPACE STYLING SYSTEM
   ============================================================ */

/* ---- Design Variables ---- */
:root {
  /* Kshipra Brand Palette (Crimson Red, Orange, Gold) */
  --clr-primary: #B22234; /* Crimson Red */
  --clr-primary-dark: #8B1A28;
  --clr-primary-light: #D43D4F;
  --clr-secondary: #E8732A; /* Orange Accent */
  --clr-secondary-light: #F5923D;
  --clr-accent: #D4A017; /* Gold Accent */
  --clr-accent-glow: #F5C542;
  
  /* Shared Kshipra Brand Palette */
  --clr-kshipra-primary: #B22234;
  --clr-kshipra-accent: #E8732A;

  /* Neutrals - Default (Light Mode) */
  --clr-dark: #F4F2F7; /* Light background */
  --clr-dark-card: #FFFFFF; /* White cards */
  --clr-dark-surface: #EDE9F4; /* Light surface */
  --clr-dark-border: rgba(0, 0, 0, 0.10);
  --clr-text: #1A1A2E; /* Dark text */
  --clr-text-muted: #5A5570; /* Muted text */
  --clr-white: #1A1A2E; /* Invert white layout elements to dark text */
  
  --grad-hero: linear-gradient(135deg, #EDE9F4 0%, #F4EEF7 50%, #F7EEEE 100%);
  --grad-primary: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  --grad-accent: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
  --grad-gold: linear-gradient(135deg, var(--clr-accent), var(--clr-secondary));
  --grad-kshipra: linear-gradient(to right, var(--clr-kshipra-primary), var(--clr-kshipra-accent));
  
  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --ff-serif: 'Playfair Display', serif;
  
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Dark Mode Variables */
html:not(.light-mode) {
  --clr-dark: #0F0F14; /* Kshipra Dark Background */
  --clr-dark-card: #17171E; /* Kshipra Dark Card Background */
  --clr-dark-surface: #1E1E28;
  --clr-dark-border: rgba(255, 255, 255, 0.07);
  --clr-text: #F0EEF0;
  --clr-text-muted: #9A96A4;
  --clr-white: #FFFFFF;
  --grad-hero: linear-gradient(135deg, #0F0F14 0%, #17101A 50%, #1A0F0F 100%);
}

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

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

section[id], header[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--ff-body);
  background-color: var(--clr-dark);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* ---- UI Elements & Utilities ---- */
.glass-card {
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-dark-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

html:not(.light-mode) .glass-card {
  background: rgba(24, 24, 27, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--grad-primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(178, 34, 52, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(178, 34, 52, 0.45);
}

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

.btn-outline:hover {
  background: rgba(178, 34, 52, 0.05);
  transform: translateY(-2px);
}

html:not(.light-mode) .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

html:not(.light-mode) .btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-interactive {
  position: relative;
  overflow: hidden;
}

.btn-interactive::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 1;
}

.btn-interactive:hover::after {
  height: 200%;
}

.btn-text, .btn i {
  position: relative;
  z-index: 2;
}

/* ---- Section Headers ---- */
section {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  z-index: 2;
}

.section-header {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 700px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
}

.section-title {
  color: var(--clr-text);
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title .highlight {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--clr-text-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
}

/* ============================================================
   SHARED KSHIPRA COMPONENTS (Navbar, Footer, Contact)
   DO NOT ALTER OR MIX COURSE PALETTE IN THESE.
   ============================================================ */

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0F0F14; /* Default Dark style */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding 0.4s ease, background 0.4s ease, border 0.4s ease;
}

html.light-mode .navbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  transition: padding 0.4s ease;
}

.navbar.scrolled .nav-inner {
  padding: 0.8rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo img {
  height: 50px;
  width: auto;
  transition: height 0.4s ease;
}

.navbar.scrolled .nav-logo img {
  height: 42px;
}

.nav-logo-text {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-top: 4px;
}

html.light-mode .nav-logo-text {
  color: #121215;
}

.nav-logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--clr-kshipra-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  font-family: var(--ff-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #9A96A4;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
}

html.light-mode .nav-links a {
  color: #64636A;
}

.nav-links a:not(.nav-cta-inner):hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

html.light-mode .nav-links a:not(.nav-cta-inner):hover {
  color: #121215;
  background: rgba(0, 0, 0, 0.05);
}

.nav-cta-inner {
  margin-left: 0.4rem;
  padding: 0.7rem 1.6rem !important;
  background: var(--grad-kshipra) !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(178, 34, 52, 0.35);
  border: none;
}

.nav-cta-inner:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.dropdown { position: relative; }
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #17171E;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  min-width: 220px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

html.light-mode .dropdown-content {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dropdown-content a {
  display: block;
  padding: 0.65rem 1.2rem !important;
  font-size: 0.82rem !important;
  text-align: left;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(128,128,128,0.1);
  border: 1px solid rgba(128,128,128,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9A96A4;
  transition: var(--transition-fast);
}

html.light-mode .theme-toggle-btn {
  color: #64636A;
}

.theme-toggle-btn:hover {
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  color: #ffffff;
}

html.light-mode .hamburger {
  color: #121215;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* NAVBAR MOBILE MENU ACTIVE */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0F0F14;
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    display: none;
    z-index: 999;
  }
  html.light-mode .nav-links {
    background: #ffffff;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    display: block;
    font-size: 1.1rem;
    padding: 0.8rem;
  }
  .nav-cta-inner {
    margin-left: 0;
    width: auto;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    text-align: center;
  }
  .dropdown-content a {
    text-align: center !important;
  }
}

/* CONTACT & FOOTER */
.contact-section, .footer {
  background: #0F0F14;
  color: #F0EEF0;
  position: relative;
  z-index: 5;
}

html.light-mode .contact-section {
  background: #F5F5FA;
  color: #18181D;
}
html.light-mode .footer {
  background: #F5F5FA;
  color: #18181D;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(178, 34, 52, 0.1);
  color: var(--clr-kshipra-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-map-wrap {
  flex-grow: 1;
  min-height: 250px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
}

html.light-mode .contact-section .section-title {
  color: #121215;
}

.contact-section .section-label {
  color: var(--clr-kshipra-accent);
}
.contact-section .section-label::before {
  background: var(--clr-kshipra-accent);
}
.contact-section .section-title .highlight {
  background: var(--grad-kshipra);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer {
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
html.light-mode .footer { border-top-color: rgba(0,0,0,0.05); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #9A96A4;
  line-height: 1.6;
  margin-top: 1.2rem;
  max-width: 320px;
}

html.light-mode .footer-brand p {
  color: #64636A;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
html.light-mode .social-btn { background: rgba(0,0,0,0.05); }

.footer-col h5 {
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  display: block;
  color: #9A96A4;
  font-size: 0.88rem;
}
html.light-mode .footer-links a { color: #64636A; }

.footer-links a:hover {
  color: var(--clr-kshipra-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  font-size: 0.85rem;
}
html.light-mode .footer-bottom { border-top-color: rgba(0,0,0,0.05); }

/* ============================================================
   AMBIIENT PAGE GRAPHICS
   ============================================================ */
.page-ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vw;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.12;
  animation: orbFloat 28s infinite alternate ease-in-out;
}

html:not(.light-mode) .ambient-orb {
  opacity: 0.1;
}

.orb-1 {
  width: 45vw;
  height: 45vw;
  max-width: 700px;
  max-height: 700px;
  background: var(--clr-primary);
  top: -8%;
  left: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 40vw;
  height: 40vw;
  max-width: 600px;
  max-height: 600px;
  background: var(--clr-secondary);
  bottom: 5%;
  right: -5%;
  animation-delay: -6s;
}

.orb-3 {
  width: 30vw;
  height: 30vw;
  max-width: 450px;
  max-height: 450px;
  background: var(--clr-accent);
  top: 35%;
  left: 45%;
  transform: translateX(-50%);
  animation-delay: -12s;
}

.ambient-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

html.light-mode .ambient-noise {
  opacity: 0.02;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, 7%) scale(1.03); }
  100% { transform: translate(-5%, -4%) scale(0.97); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 70px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
  transition: background var(--transition);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(178, 34, 52, 0.1);
  border: 1px solid rgba(178, 34, 52, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-primary-light);
  margin-bottom: 1.5rem;
}

html.light-mode .hero-badge {
  background: rgba(178, 34, 52, 0.08);
  color: var(--clr-primary);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--clr-primary);
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--clr-text);
}

.hero-desc {
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  color: var(--clr-text-muted);
  margin-bottom: 2.5rem;
  max-width: 95%;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Digital Studio Canvas */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.digital-studio-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 420px;
  max-height: 420px;
}

.studio-element {
  position: absolute;
  padding: 1.2rem;
  width: 250px;
  z-index: 3;
}

.element-ledger {
  top: 5%;
  left: 0;
  border-left: 4px solid var(--clr-secondary);
}

.element-invoice {
  bottom: 10%;
  right: 0;
  width: 230px;
  border-left: 4px solid var(--clr-primary);
}

.element-bank {
  top: 40%;
  left: 45%;
  width: 210px;
  padding: 0.8rem 1rem;
}

.se-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--clr-dark-border);
  padding-bottom: 0.4rem;
}

.se-header h5 {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
}

.se-header i {
  color: var(--clr-primary);
  font-size: 0.95rem;
}

.dot-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot-indicator.green {
  background: var(--clr-secondary-light);
  box-shadow: 0 0 8px var(--clr-secondary-light);
}

.se-ledger-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.se-ledger-row.total {
  border-top: 1px dashed var(--clr-dark-border);
  padding-top: 0.4rem;
  margin-top: 0.4rem;
}

.se-label { color: var(--clr-text-muted); }
.se-value { font-weight: 700; }
.se-value.text-green { color: #10b981; }
.se-value.text-red { color: #ef4444; }

.invoice-bar {
  height: 4px;
  background: rgba(178, 34, 52, 0.1);
  border-radius: 2px;
  margin-bottom: 0.6rem;
}

.se-label-small { font-size: 0.72rem; color: var(--clr-text-muted); }
.se-value-small { font-size: 0.72rem; font-weight: 600; }
.se-label-bold { font-size: 0.8rem; font-weight: 700; }
.se-value-bold { font-size: 0.85rem; font-weight: 800; color: var(--clr-primary); }

.se-bank-inner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.se-bank-inner i {
  font-size: 1.2rem;
  color: var(--clr-accent);
}

.se-bank-inner h5 {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 700;
}

.bank-status {
  display: block;
  font-size: 0.68rem;
  color: var(--clr-secondary-light);
  font-weight: 600;
}

.check-badge {
  margin-left: auto;
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Connectors SVG */
.studio-connectors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   WHY DIGITAL ACCOUNTING?: Split Editorial Story
   ============================================================ */
.split-storytelling-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.story-column {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.column-badge {
  align-self: flex-start;
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  background: var(--clr-dark-surface);
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
}

.column-traditional {
  border-left: 3px solid rgba(239, 68, 68, 0.3);
}

.column-traditional .column-badge {
  border-left: 2px solid #ef4444;
}

.column-modern {
  border-left: 3px solid var(--clr-secondary);
}

.column-modern .column-badge.active {
  background: rgba(232, 115, 42, 0.1);
  color: var(--clr-secondary-light);
  border-left: 2px solid var(--clr-secondary-light);
}

.story-pain-points, .story-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pain-item, .benefit-item {
  display: flex;
  gap: 1.2rem;
}

.pain-icon, .benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pain-icon {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.benefit-icon {
  background: rgba(232, 115, 42, 0.08);
  color: var(--clr-secondary-light);
}

.pain-item h4, .benefit-item h4 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--clr-text);
}

.pain-item p, .benefit-item p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ============================================================
   WHAT IS ZOHO BOOKS?: Bento Cards grid
   ============================================================ */
.bento-organizer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.bento-organizer-card {
  padding: 2.2rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: var(--transition-slow);
}

.bento-organizer-card:hover {
  border-color: var(--clr-primary-light);
  transform: translateY(-2px);
}

.bento-organizer-card.active {
  grid-column: span 2;
  border-color: var(--clr-primary);
  background: linear-gradient(135deg, var(--clr-dark-card) 0%, rgba(178, 34, 52, 0.02) 100%);
}

.bo-card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.bo-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(178, 34, 52, 0.08);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.bo-card-header h3 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.bo-card-body p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.expansion-tip {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.bento-organizer-card.active .expansion-tip {
  display: none;
}

.bo-card-expanded {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), opacity var(--transition-slow);
  margin-top: 1.2rem;
  border-top: 1px solid var(--clr-dark-border);
  padding-top: 1.2rem;
}

.bento-organizer-card.active .bo-card-expanded {
  max-height: 250px;
  opacity: 1;
}

.bo-card-expanded ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.bo-card-expanded li {
  font-size: 0.88rem;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bo-card-expanded li i {
  color: var(--clr-secondary-light);
}

@media (max-width: 768px) {
  .bento-organizer-card.active {
    grid-column: span 1;
  }
  .bento-organizer-grid {
    grid-template-columns: 1fr;
  }
  .bo-card-expanded {
    padding-top: 0.8rem;
    margin-top: 0.8rem;
  }
  .bento-organizer-card.active .bo-card-expanded {
    max-height: 400px;
  }
  .bo-card-expanded ul {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .bo-card-expanded li {
    font-size: 0.82rem;
    align-items: flex-start;
  }
  .bo-card-expanded li i {
    margin-top: 0.25rem;
  }
}

/* ============================================================
   BUSINESS WORKFLOW
   ============================================================ */
.workflow-stages-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.workflow-stage {
  padding: 1.8rem 1.4rem;
  cursor: pointer;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ws-step-num {
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--clr-dark-surface);
  line-height: 1;
  transition: var(--transition);
}

.workflow-stage.active .ws-step-num {
  color: rgba(232, 115, 42, 0.12);
}

.ws-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--clr-dark-surface);
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.workflow-stage.active .ws-icon {
  background: var(--clr-secondary);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(232, 115, 42, 0.3);
}

.workflow-stage h3 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.workflow-stage.active h3 {
  color: var(--clr-secondary-light);
}

.ws-short-desc {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.ws-detail-panel {
  display: none;
  margin-top: 1.2rem;
  border-top: 1px solid var(--clr-dark-border);
  padding-top: 1rem;
  text-align: left;
  animation: fadeIn 0.4s ease;
}

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

.workflow-stage.active .ws-detail-panel {
  display: block;
}

.ws-detail-panel h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}

.ws-detail-panel p {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .workflow-stages-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .workflow-stage {
    text-align: left;
    align-items: flex-start;
    padding: 1.8rem;
  }
  .ws-icon {
    margin-bottom: 0;
    margin-right: 1.2rem;
  }
  .workflow-stage > div:first-child {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
  }
  .ws-step-num {
    top: 20px;
  }
}

/* ============================================================
   TOOLS YOU'LL MASTER: Open List Toolkit
   ============================================================ */
.toolkit-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  row-gap: 0;
}

.toolkit-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 2rem 1.8rem;
  border-bottom: 1px solid var(--clr-dark-border);
  border-right: 1px solid var(--clr-dark-border);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  cursor: default;
}

/* Left accent bar on hover */
.toolkit-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-primary);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.toolkit-item:hover::before {
  opacity: 1;
}

.toolkit-item:hover {
  background: rgba(178, 34, 52, 0.08);
}

.toolkit-item:nth-child(3n) {
  border-right: none;
}

.toolkit-item:nth-last-child(-n+3) {
  border-bottom: none;
}
.ti-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(178, 34, 52, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  transition: background var(--transition-fast), transform var(--transition-fast);
}


/* Icon wrapper */
.ti-icon svg {
  width: 36px;
  height: 36px;
}

.toolkit-item:hover .ti-icon {
  background: rgba(178, 34, 52, 0.18);
  transform: scale(1.08);
}

/* Text body */
.ti-body {
  flex: 1;
  min-width: 0;
}

.ti-body h3 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.toolkit-item:hover .ti-body h3 {
  color: var(--clr-primary);
}

.ti-body p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

/* Pill tags */
.ti-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ti-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
  background: transparent;
  border: 1px solid var(--clr-dark-border);
  color: var(--clr-text-muted);
  letter-spacing: 0.02em;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.toolkit-item:hover .ti-tag {
  border-color: rgba(178, 34, 52, 0.45);
  color: var(--clr-primary);
}


/* Outer border wrapper for the grid */
.toolkit-list-grid {
  border: 1px solid var(--clr-dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (max-width: 991px) {
  .toolkit-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .toolkit-item:nth-child(3n) {
    border-right: 1px solid var(--clr-dark-border);
  }
  .toolkit-item:nth-child(2n) {
    border-right: none;
  }
  .toolkit-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .toolkit-item:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--clr-dark-border);
  }
}

@media (max-width: 600px) {
  .toolkit-list-grid {
    grid-template-columns: 1fr;
  }
  .toolkit-item {
    border-right: none !important;
  }
  .toolkit-item:not(:last-child) {
    border-bottom: 1px solid var(--clr-dark-border);
  }
}


/* ============================================================
   SMART ACCOUNTING EXPERIENCE: Tabbed Layers
   ============================================================ */
.experience-workspace-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.ews-navigation {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ews-nav-btn {
  padding: 1.1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--clr-dark-border);
  text-align: left;
  font-family: var(--ff-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--clr-dark-card);
  transition: var(--transition);
}

.ews-nav-btn .nav-num {
  font-size: 0.85rem;
  padding: 0.2rem 0.5rem;
  background: var(--clr-dark-surface);
  border-radius: 5px;
  transition: var(--transition);
}

.ews-nav-btn.active {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
  box-shadow: 0 4px 15px rgba(178, 34, 52, 0.08);
}

.ews-nav-btn.active .nav-num {
  background: var(--clr-primary);
  color: #ffffff;
}

.ews-content-stack {
  position: relative;
  min-height: 380px;
}

.ews-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.ews-panel.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transform: translateY(0);
}

.ews-panel-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.2rem;
  padding: 2.5rem;
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-dark-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.ews-text h3 {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--clr-text);
}

.ews-text p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.ews-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ews-list li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ews-list li i {
  color: var(--clr-primary-light);
}

.ews-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ews-graphic-box {
  width: 100%;
  aspect-ratio: 1;
  max-width: 180px;
  background: var(--clr-dark-surface);
  border: 1px solid var(--clr-dark-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  padding: 1rem;
}

.ews-graphic-box .graphic-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(178, 34, 52, 0.08);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.ews-graphic-box span {
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .experience-workspace-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ews-navigation {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ews-navigation::-webkit-scrollbar {
    display: none;
  }
  .ews-nav-btn {
    flex: 0 0 85%;
    scroll-snap-align: start;
    white-space: normal;
  }
  .ews-panel-content {
    grid-template-columns: 1fr;
    padding: 1.8rem;
  }
  .ews-graphic-box {
    max-width: 100%;
    aspect-ratio: auto;
    padding: 1.5rem;
    flex-direction: row;
    justify-content: flex-start;
  }
}

/* ============================================================
   REAL BUSINESS SCENARIOS: Scenario Explorer
   ============================================================ */
.scenario-explorer-container {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.se-tabs-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.se-tab-item {
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 3px solid transparent;
  background: var(--clr-dark-surface);
  cursor: pointer;
  transition: var(--transition);
}

.se-tab-item:hover {
  background: var(--clr-dark-card);
}

.se-tab-item.active {
  background: var(--clr-dark-card);
  border-left-color: var(--clr-secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.se-tab-item h4 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--clr-text);
}

.se-tab-item p {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.4;
}

.se-content-side {
  padding: 2.5rem;
  perspective: 1000px;
}

@keyframes innovativeReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95) rotateX(-10deg);
    filter: blur(10px);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.02) rotateX(2deg);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
    filter: blur(0);
  }
}

.se-detail {
  display: none;
  transform-origin: center center;
}

.se-detail.active {
  display: block;
  animation: innovativeReveal 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.se-detail-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--clr-dark-border);
  padding-bottom: 1rem;
}

.se-badge-tag {
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  background: rgba(232, 115, 42, 0.1);
  color: var(--clr-secondary-light);
  border-radius: 4px;
}

.se-detail-header h3 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 800;
}

.se-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.se-col h5 {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-secondary-light);
  margin-bottom: 0.5rem;
}

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

.se-col.span-2 {
  grid-column: span 2;
  border-top: 1px dashed var(--clr-dark-border);
  padding-top: 1.2rem;
}

@media (max-width: 991px) {
  .scenario-explorer-container {
    grid-template-columns: 1fr;
  }
  .se-tabs-side {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .se-tabs-side::-webkit-scrollbar {
    display: none;
  }
  .se-tab-item {
    flex: 0 0 85%;
    scroll-snap-align: start;
    border-left: none;
    border-top: 3px solid transparent;
  }
  .se-tab-item.active {
    border-left-color: transparent;
    border-top-color: var(--clr-secondary);
  }
  .se-content-side {
    padding: 1.8rem;
  }
  .se-grid {
    grid-template-columns: 1fr;
  }
  .se-col.span-2 {
    grid-column: span 1;
  }
}

/* ============================================================
   BUSINESS EFFICIENCY
   ============================================================ */
.efficiency-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.insight-block {
  padding: 2.5rem;
  position: relative;
  border-top: 3px solid var(--clr-secondary);
}

.ib-num {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(232, 115, 42, 0.1);
  margin-bottom: 1rem;
  line-height: 1;
}

.insight-block h3 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.insight-block p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .efficiency-insights-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WHY LEARN WITH KSHIPRA: Pillars Grid
   ============================================================ */
.ecosystem-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.eco-panel {
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: var(--clr-dark-surface);
  transition: var(--transition-slow);
  border: 1px solid transparent;
}

.eco-panel.active {
  background: var(--clr-dark-card);
  border-color: var(--clr-primary-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.eco-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.eco-icon {
  font-size: 1.1rem;
  color: var(--clr-primary);
}

.eco-header h3 {
  font-family: var(--ff-heading);
  font-size: 0.98rem;
  font-weight: 700;
}

.eco-body p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .ecosystem-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ecosystem-container {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion-item {
  border-bottom: 1px solid var(--clr-dark-border);
  padding: 1.2rem 0;
}

.faq-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  padding: 0.8rem 0;
}

.faq-accordion-header:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 4px;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clr-dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: 0.8rem;
  transition: var(--transition);
}

.faq-accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
  background: var(--clr-primary);
  color: #ffffff;
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition) ease-out;
}

.faq-body-content {
  padding: 0.8rem 0 1.2rem 0;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* ============================================================
   FINAL CTA: Business Completion
   ============================================================ */
.cta-wrapper {
  padding: 3.5rem;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1.20fr 0.80fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1rem;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-visual-panel {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cta-stack-item {
  padding: 0.8rem 1.2rem;
  background: var(--clr-dark-surface);
  border: 1px solid var(--clr-dark-border);
  border-radius: 8px;
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.cta-stack-item i {
  color: var(--clr-secondary-light);
}

@media (max-width: 991px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
    padding: 2.2rem;
    gap: 2rem;
  }
  .cta-visual-panel {
    display: none;
  }
}

/* ============================================================
   ACCESSIBILITY & REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  .ambient-orb {
    animation: none !important;
  }
}

/* ============================================================
   COLORFUL SVG ILLUSTRATIONS — HERO, WORKFLOW, TOOLKIT
   ============================================================ */

/* ---- Hero SVG Wrap ---- */
.hero-svg-wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 60px rgba(178, 34, 52, 0.18));
}

.hero-main-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* ---- Workflow Stage SVG Icons ---- */
.ws-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.35s ease;
}

.ws-icon-svg:hover,
.workflow-stage.active .ws-icon-svg,
.workflow-stage:hover .ws-icon-svg {
  transform: scale(1.12) rotate(-3deg);
  filter: drop-shadow(0 6px 18px rgba(178, 34, 52, 0.35));
}

.stage-svg {
  width: 48px;
  height: 48px;
  overflow: visible;
}

/* ---- Toolkit Panel SVG Icons ---- */
.tp-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.35s ease;
}

.tp-icon-svg svg {
  width: 56px;
  height: 56px;
  overflow: visible;
}

.toolkit-panel:hover .tp-icon-svg {
  transform: scale(1.15) rotate(-4deg);
  filter: drop-shadow(0 8px 24px rgba(178, 34, 52, 0.3));
}

/* ---- Bento Organizer Card SVG Icons ---- */
.bo-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.bo-icon-svg svg {
  width: 44px;
  height: 44px;
  overflow: visible;
}

.bento-organizer-card:hover .bo-icon-svg {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 4px 14px rgba(178, 34, 52, 0.25));
}

/* ---- Responsive adjustments ---- */
@media (max-width: 768px) {
  .hero-svg-wrap {
    max-width: 100%;
    animation: none;
    filter: none;
  }

  .ws-icon-svg,
  .tp-icon-svg {
    width: 52px;
    height: 52px;
  }

  .stage-svg {
    width: 40px;
    height: 40px;
  }
}
/* ============================================================
   PROFESSIONAL HERO UI MOCKUP
   ============================================================ */
.hero-ui-mockup {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  perspective: 1000px;
}

.ui-window {
  background: var(--surface-2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.ui-window:hover {
  transform: rotateY(-2deg) rotateX(2deg);
}

.ui-header {
  background: rgba(30, 41, 59, 0.8);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ui-controls {
  display: flex;
  gap: 8px;
}

.ui-controls span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #334155;
}
.ui-controls span:nth-child(1) { background: #ef4444; }
.ui-controls span:nth-child(2) { background: #eab308; }
.ui-controls span:nth-child(3) { background: #22c55e; }

.ui-search {
  background: rgba(15, 23, 42, 0.5);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 250px;
}

.ui-body {
  display: flex;
  height: 320px;
}

.ui-sidebar {
  width: 140px;
  background: rgba(15, 23, 42, 0.3);
  padding: 16px 8px;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.ui-nav-item {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: default;
}

.ui-nav-item.active {
  background: rgba(178, 34, 52, 0.15);
  color: var(--clr-primary-light);
  font-weight: 500;
}

.ui-content {
  flex: 1;
  padding: 20px;
  background: var(--surface-1);
}

.ui-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ui-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
}

.ui-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ui-metrics-row {
  display: flex;
  gap: 15px;
  margin-bottom: 24px;
}

.ui-metric-card {
  flex: 1;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: 10px;
}

.ui-metric-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.ui-metric-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.ui-metric-trend {
  font-size: 0.7rem;
  font-weight: 500;
}
.ui-metric-trend.positive { color: #34d399; }
.ui-metric-trend.negative { color: #f87171; }

.ui-table-section {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 12px;
}

.ui-table-header {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ui-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.02);
  font-size: 0.75rem;
}

.ui-table-row:last-child {
  border-bottom: none;
}

.ui-col { flex: 1; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.ui-col.text-right { justify-content: flex-end; text-align: right; font-weight: 500;}
.text-green { color: #34d399; }
.text-red { color: #f87171; }

.ui-tag {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  margin-left: auto;
}
.ui-tag.success { background: rgba(16, 185, 129, 0.1); color: #34d399; }
.ui-tag.warning { background: rgba(245, 158, 11, 0.1); color: #fbbf24; }

/* Floating Cards */
.ui-float-card {
  position: absolute;
  background: var(--surface-1);
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 10;
}

.ui-float-card.float-left {
  bottom: 20px;
  left: -30px;
  animation: floatUp 4s ease-in-out infinite;
}

.ui-float-card.float-right {
  top: 60px;
  right: -20px;
  animation: floatUp 5s ease-in-out infinite 1s;
}

.ui-float-card .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.ui-float-card .text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
  .hero-ui-mockup { transform: scale(0.9); }
  .ui-float-card { display: none; }
}

/* ============================================================
   MOBILE COMPACT VIEW TWEAKS
   ============================================================ */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  .hero {
    padding: 110px 0 2rem 0;
  }
  .section-header {
    margin-bottom: 1.5rem;
  }
  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
    margin-bottom: 0.5rem;
  }
  
  /* Compress grid gaps */
  .split-storytelling-grid,
  .bento-organizer-grid,
  .workflow-stages-container,
  .ecosystem-container,
  .experience-workspace-container,
  .scenario-explorer-container {
    gap: 1rem;
  }

  /* Compress inner paddings of cards */
  .story-column,
  .bento-organizer-card,
  .workflow-stage,
  .ews-panel-content,
  .se-content-side,
  .eco-panel,
  .insight-block,
  .ews-nav-btn {
    padding: 1.2rem;
  }

  .toolkit-item {
    padding: 1rem;
    gap: 1rem;
  }

  .cta-wrapper {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  /* Shrink hero mockups and visual elements on small screens */
  .hero-ui-mockup {
    transform: scale(0.85);
    transform-origin: top center;
  }
}

/* ============================================================
   CONTACT & FOOTER RESPONSIVENESS
   ============================================================ */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  .contact-section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .footer {
    padding: 2.5rem 0 1.5rem 0;
  }
  .footer-social {
    justify-content: flex-start;
  }
  /* Better spacing for contact info on mobile */
  .contact-info {
    order: 2;
  }
  .contact-form {
    order: 1;
  }
}

/* UNIFIED NAVBAR OVERRIDE (MATCHING GCA & CAREERPLUS) */
.navbar .nav-inner { padding: 0.8rem 0 !important; }
.navbar.scrolled .nav-inner { padding: 0.5rem 0 !important; }
@media (max-width: 991px) { .navbar .nav-inner, .navbar.scrolled .nav-inner, .nav-inner { padding: 0.4rem 0 !important; } .navbar .nav-logo img, .navbar.scrolled .nav-logo img { height: 38px !important; } .navbar .nav-logo-text { margin-top: 6px !important; font-size: 1rem !important; } }

