/* ==========================================================================
   IOTA ACADEMY MANDSAUR — JOB-READY CHECK
   Production-ready, Mobile-First Stylesheet (Light Theme Only)
   ========================================================================== */

:root {
  /* Color Palette */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-border: #bfdbfe;
  
  --dark-navy: #0f172a;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --bg-white: #ffffff;
  --bg-light-blue: #eff6ff;
  --bg-slate: #f8fafc;
  --bg-card: #ffffff;

  --border-color: #e2e8f0;
  --border-subtle: #f1f5f9;

  --success-green: #16a34a;
  --success-bg: #dcfce7;
  --success-text: #166534;

  --warning-amber: #d97706;
  --warning-bg: #fef3c7;
  --warning-text: #92400e;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main);
  background-color: var(--bg-white);
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--bg-white);
  padding-bottom: 76px; /* Space for sticky mobile CTA */
}

body.modal-open {
  overflow: hidden;
}

/* Links & Typography */
a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  color: var(--dark-navy);
  font-weight: 800;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
  line-height: 1.6;
}

strong {
  color: var(--dark-navy);
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Section Standard Styles */
.section-padding {
  padding-top: 56px;
  padding-bottom: 56px;
}

.bg-light-blue-section {
  background-color: var(--bg-light-blue);
}

.bg-slate-section {
  background-color: var(--bg-slate);
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background-color: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark-navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  box-sizing: border-box;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  min-height: 48px;
  text-align: center;
  vertical-align: middle;
}

.btn:active {
  transform: scale(0.98);
}

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

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

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary);
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-slate);
  border-color: var(--primary-border);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff !important;
  border: 1px solid #20ba5a;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.32);
  text-decoration: none;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background-color: #20ba5a;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  text-decoration: none;
}

.btn-whatsapp .btn-wa-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  min-height: 38px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0 28px;
  font-size: 16px;
  line-height: 1.2;
  height: 52px;
  min-height: 52px;
  border-radius: var(--radius-md);
  box-sizing: border-box;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

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

.brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}

.brand-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.05em;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark-navy);
  letter-spacing: -0.02em;
}

.branch-pill {
  font-size: 11px;
  font-weight: 700;
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.desktop-nav {
  display: none;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.header-cta-btn {
  padding: 8px 16px;
  font-size: 13px;
  min-height: 38px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: 36px;
  padding-bottom: 48px;
  background: radial-gradient(circle at top right, #eff6ff 0%, #ffffff 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-branch-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid var(--primary-border);
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dark-navy);
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.35;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}

.benefit-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.benefit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-navy);
  box-shadow: var(--shadow-sm);
}

.benefit-badge .check-icon {
  color: var(--success-green);
  font-weight: 900;
}

.hero-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-cta-wrapper .btn {
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  box-sizing: border-box;
  white-space: nowrap;
}

.hero-footer-note {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  line-height: 1.5;
}

.hero-footer-note .dot-sep {
  color: var(--border-color);
  font-weight: 700;
}

.hero-footer-note .hero-star {
  color: #f59e0b;
  font-weight: 700;
}

.hero-footer-note strong {
  color: var(--dark-navy);
  font-weight: 700;
}

/* ==========================================================================
   HOW IOTA WORKS CARD (Hero Right Column Journey Card)
   ========================================================================== */
.how-iota-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 26px 24px 22px 24px;
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: heroCardFade 0.5s ease-out both;
}

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

@media (prefers-reduced-motion: reduce) {
  .how-iota-card {
    animation: none;
  }
}

.how-iota-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
}

.how-iota-header {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.how-iota-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background-color: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 2.5px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.how-iota-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.28;
  letter-spacing: -0.015em;
  margin: 0 0 4px 0;
}

.how-iota-subheading {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* Steps Timeline */
.how-iota-steps {
  display: flex;
  flex-direction: column;
}

.how-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  padding-bottom: 22px;
}

.how-step-item:last-child {
  padding-bottom: 0;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 28px;
  align-self: stretch;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background-color: var(--bg-slate);
  border: 1.5px solid var(--border-color);
  color: var(--text-muted);
  font-size: 11.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  transition: all 0.2s ease;
}

.step-line {
  width: 2px;
  flex-grow: 1;
  background-color: #e2e8f0;
  margin-top: 4px;
  margin-bottom: 4px;
  min-height: 24px;
}

.step-content {
  flex: 1;
  padding-top: 3px;
}

.step-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark-navy);
  margin-bottom: 3px;
  line-height: 1.3;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* Step 02 - Subtle Accent Treatment (1-Week Experience Differentiator) */
.how-step-accent .step-num-accent {
  background-color: #eff6ff;
  border-color: #93c5fd;
  color: var(--primary);
}

.how-step-accent .step-title {
  color: var(--primary);
}

.how-step-item:hover .step-num {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-light);
}

/* Bottom Reassurance */
.how-iota-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
  margin-top: 20px;
  text-align: center;
}

.how-footer-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 480px) {
  .how-iota-card {
    padding: 20px 18px 18px 18px;
    border-radius: var(--radius-lg);
  }

  .how-iota-title {
    font-size: 1.18rem;
  }

  .how-iota-subheading {
    font-size: 12.5px;
  }

  .how-step-item {
    padding-bottom: 18px;
    gap: 12px;
  }

  .step-title {
    font-size: 12.5px;
  }

  .step-desc {
    font-size: 12px;
  }

  .how-iota-footer {
    margin-top: 16px;
    padding-top: 12px;
  }
}

/* ==========================================================================
   WHAT WILL YOU CHECK SECTION (FREE JOB-READY CHECK)
   ========================================================================== */
#what-you-check {
  padding-top: 44px;
  padding-bottom: 44px;
}

#what-you-check .section-header {
  margin-bottom: 26px;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.skill-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
  height: 100%;
}

.skill-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
}

.skill-icon-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.skill-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.skill-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.skill-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.skill-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.section-cta-wrap {
  margin-top: 26px;
  text-align: center;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.step-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   WHY IOTA SECTION
   ========================================================================== */
.why-iota-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.why-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-bullet-icon {
  font-size: 18px;
  color: var(--primary);
  min-width: 24px;
}

.why-card-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 4px;
}

.why-card-content p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   MANDSAUR CLASSROOM SECTION
   ========================================================================== */
#mandsaur-classroom {
  padding-top: 48px;
  padding-bottom: 48px;
}

.mandsaur-card {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-xl);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  max-width: 980px;
  margin: 0 auto;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background-color: var(--bg-white);
  border: 1px solid var(--primary-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.location-badge-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.mandsaur-title {
  margin-bottom: 8px;
}

.mandsaur-subtitle {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
  font-size: 15px;
  color: var(--text-muted);
}

.mandsaur-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  text-align: left;
}

.mandsaur-feature-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
  height: 100%;
}

.mandsaur-feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
}

.mandsaur-icon-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.mandsaur-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.mandsaur-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.mandsaur-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.mandsaur-feature-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* ==========================================================================
   1-WEEK EXPERIENCE SECTION (Visually Prominent)
   ========================================================================== */
.experience-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.experience-banner-card {
  background: #ffffff;
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.10);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.experience-banner-card::before {
  content: "1-WEEK FREE EXPERIENCE";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-bottom-left-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
  display: block;
  z-index: 2;
  white-space: nowrap;
}

.experience-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark-navy);
  margin-bottom: 8px;
  line-height: 1.25;
}

.experience-subheading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.experience-checklist {
  background-color: var(--bg-light-blue);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  max-width: 520px;
  margin: 0 auto 20px auto;
  text-align: left;
}

.checklist-intro {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.checklist-item:last-child {
  margin-bottom: 0;
}

.checklist-item span.chk {
  color: var(--success-green);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

.experience-tagline {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 20px;
}

/* ==========================================================================
   TRUST & GOOGLE REVIEWS SECTION
   ========================================================================== */
#trust,
#why-iota {
  scroll-margin-top: 72px;
}

#trust {
  padding-top: 40px;
  padding-bottom: 40px;
}

#trust .trust-header {
  margin-bottom: 20px;
}

.trust-stat-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  max-width: 580px;
  margin: 0 auto;
}

.trust-stars-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 8px;
}

.trust-stars-row .star-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.trust-score {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark-navy);
  line-height: 1.1;
  margin-bottom: 4px;
}

.trust-score .trust-scale {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
}

.trust-reviews-count {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}

.trust-signals-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}

.trust-signal-item {
  background-color: var(--bg-slate);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trust-signal-value {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 3px;
}

.trust-signal-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

.trust-branch-note {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

/* ==========================================================================
   PROGRAMS SECTION (Secondary Focus)
   ========================================================================== */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.program-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.program-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
#final-cta {
  padding-top: 42px;
  padding-bottom: 42px;
}

.final-cta-card {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  max-width: 780px;
  margin: 0 auto;
}

.final-cta-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.final-cta-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--dark-navy);
  margin-bottom: 8px;
  line-height: 1.25;
}

.final-cta-sub {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

.final-cta-action {
  margin-bottom: 12px;
}

.final-cta-reassurance {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   STICKY MOBILE CTA & FLOATING WHATSAPP
   ========================================================================== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 35;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-color);
  padding: 10px 16px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.floating-whatsapp-btn {
  position: fixed;
  bottom: 82px;
  right: 18px;
  z-index: 38;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
}

.floating-whatsapp-btn svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 36px 0 24px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-brand h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 4px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav a {
  color: var(--text-muted);
  transition: color 0.15s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
}

/* ==========================================================================
   ASSESSMENT MODAL & MULTI-STEP ENGINE
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 640px;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
}

.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-close-btn {
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s ease;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--dark-navy);
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

/* Assessment Progress & Header */
.quiz-top-bar {
  margin-bottom: 20px;
}

.quiz-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.quiz-counter {
  color: var(--dark-navy);
}

.quiz-category-tag {
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
}

.progress-track {
  width: 100%;
  height: 8px;
  background-color: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 10%;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

/* Question & Option Cards */
.question-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.4;
  margin-bottom: 20px;
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.option-card {
  width: 100%;
  background-color: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--dark-navy);
}

.option-card:hover {
  border-color: var(--primary);
  background-color: var(--bg-light-blue);
}

.option-card.selected {
  border-color: var(--primary);
  background-color: var(--bg-light-blue);
  box-shadow: 0 0 0 1.5px var(--primary);
}

.option-letter {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: var(--radius-full);
  background-color: #f1f5f9;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-card.selected .option-letter {
  background-color: var(--primary);
  color: #ffffff;
}

.option-label {
  flex: 1;
  line-height: 1.4;
}

.option-check-icon {
  font-size: 14px;
  color: var(--primary);
  opacity: 0;
  font-weight: 900;
}

.option-card.selected .option-check-icon {
  opacity: 1;
}

/* Quiz Option Mandatory Alert & Error Shake */
.options-list.has-error .option-card:not(.selected) {
  border-color: #f87171;
  background-color: #fffbfb;
}

.options-list.has-error .option-card:not(.selected):hover {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.options-list.shake {
  animation: shakeOptions 0.4s ease-in-out;
}

@keyframes shakeOptions {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.quiz-error-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #ef4444;
  color: #b91c1c;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  animation: alertFadeIn 0.25s ease-out;
}

.quiz-error-alert.hidden {
  display: none;
}

.quiz-error-alert .quiz-alert-icon {
  flex-shrink: 0;
  color: #ef4444;
}

@keyframes alertFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

/* ==========================================================================
   LEAD CAPTURE VIEW (Form after Q10)
   ========================================================================== */
.lead-step-wrap {
  text-align: center;
}

.lead-step-header {
  margin-bottom: 20px;
}

.lead-step-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--success-green);
  background-color: var(--success-bg);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.lead-step-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 6px;
}

.lead-step-desc {
  font-size: 13.5px;
  color: var(--text-muted);
}

.form-group {
  text-align: left;
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 6px;
}

.form-label .req {
  color: #dc2626;
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 10px 14px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--dark-navy);
  background-color: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #ffffff;
}

.phone-prefix {
  background-color: #f8fafc;
  border-right: 1px solid var(--border-color);
  padding: 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  height: 48px;
}

.phone-input-wrap .form-control {
  border: none;
  border-radius: 0;
}

.phone-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-error-msg {
  color: #dc2626;
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 8px;
  background-color: #fee2e2;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-align: left;
}

/* ==========================================================================
   RESULT PAGE VIEW (Score Card & Skill Breakdown)
   ========================================================================== */
.result-header-box {
  text-align: center;
  padding: 24px 16px;
  background: radial-gradient(circle at center, #eff6ff 0%, #ffffff 80%);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
}

.result-main-title {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.result-score-highlight {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.result-student-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 12px;
}

.encouraging-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--text-main);
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}

.result-skills-wrap {
  margin-bottom: 28px;
}

.result-section-heading {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 14px;
}

.result-skill-row {
  background-color: var(--bg-slate);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 10px;
}

.result-skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.skill-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.badge-good {
  background-color: var(--success-bg);
  color: var(--success-text);
}

.badge-basic {
  background-color: var(--warning-bg);
  color: var(--warning-text);
}

.badge-improve {
  background-color: #fee2e2;
  color: #991b1b;
}

.skill-progress-track {
  width: 100%;
  height: 6px;
  background-color: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.skill-progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
}

.bar-good {
  background-color: var(--success-green);
}

.bar-basic {
  background-color: var(--warning-amber);
}

.bar-improve {
  background-color: #ef4444;
}

/* Result CTAs connecting to Mandsaur Branch */
.result-cta-card {
  background-color: var(--bg-light-blue);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.result-cta-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 6px;
}

.result-cta-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.result-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.result-cta-buttons .btn {
  width: 100%;
  justify-content: center;
}

/* Generic Utility Classes */
.hidden {
  display: none !important;
}

/* Mobile Header Tuning */
@media (max-width: 480px) {
  .brand-logo {
    gap: 8px;
  }
  .brand-logo-img {
    height: 34px;
    max-width: 130px;
  }
  .brand-name {
    font-size: 16px;
  }
  .branch-pill {
    padding: 1px 5px;
    font-size: 10px;
  }
}

/* Mobile CTA Button Stacking */
@media (max-width: 600px) {
  .hero-cta-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-cta-wrapper .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
/* Kept in two rows for maximum conversion on all screens */
@media (min-width: 640px) {
  .result-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .result-cta-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
  }

  #what-you-check {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  #what-you-check .section-header {
    margin-bottom: 30px;
  }

  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }

  .skills-grid .skill-card {
    padding: 22px 20px;
  }

  .skills-grid .skill-title {
    min-height: 42px;
  }

  .skills-grid .skill-desc {
    min-height: 40px;
  }

  .section-cta-wrap {
    margin-top: 30px;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-iota-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #mandsaur-classroom {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .mandsaur-card {
    padding: 34px 30px;
  }

  .mandsaur-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .mandsaur-feature-card {
    padding: 22px 20px;
  }

  .mandsaur-feature-title {
    min-height: 42px;
  }

  .mandsaur-feature-desc {
    min-height: 40px;
  }

  .experience-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .experience-banner-card {
    padding: 38px 36px;
  }

  .experience-banner-card::before {
    top: 46px;
    right: -71px;
    width: 260px;
    padding: 6px 0;
    text-align: center;
    transform: rotate(45deg);
    border-radius: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  #trust {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  #trust .trust-header {
    margin-bottom: 24px;
  }

  .trust-stat-box {
    padding: 28px 28px 22px;
  }

  .trust-signals-row {
    gap: 12px;
  }

  .trust-signal-item {
    padding: 12px 10px;
  }

  .trust-signal-value {
    font-size: 17px;
  }

  .trust-signal-label {
    font-size: 12px;
  }

  #final-cta {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .final-cta-card {
    padding: 34px 32px;
  }

  .final-cta-title {
    font-size: 2.15rem;
  }

  .final-cta-sub {
    font-size: 15.5px;
  }

  .final-cta-reassurance {
    font-size: 13.5px;
  }

  .sticky-mobile-cta {
    display: none; /* Hide on desktop */
  }

  body {
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .why-iota-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   SUCCESS MODAL & ACTION OPTIONS (Call, WhatsApp, Address)
   ========================================================================== */
.success-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background-color: var(--success-bg);
  color: var(--success-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 14px auto;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.2);
}

.success-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.success-action-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1.5px solid var(--border-color);
  background-color: #ffffff;
  transition: all 0.2s ease;
  min-height: 52px;
}

.success-action-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.success-call {
  border-color: #bfdbfe;
  background-color: #eff6ff;
}

.success-call:hover {
  background-color: #dbeafe;
  border-color: #93c5fd;
}

.success-whatsapp {
  border-color: #bbf7d0;
  background-color: #f0fdf4;
}

.success-whatsapp:hover {
  background-color: #dcfce7;
  border-color: #86efac;
}

.success-address-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-slate);
}

.success-action-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: var(--radius-md);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}

.address-icon {
  background-color: #eff6ff;
  color: var(--primary);
}

.success-action-info {
  flex: 1;
}

.success-action-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.success-action-value {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--dark-navy);
}

.address-value {
  font-size: 13.5px;
  line-height: 1.35;
}

.success-address-sub {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

.success-action-arrow {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}
