/* ============================================================
   Anannt Education — SAT Coaching Dubai Pillar Page 2026
   style.css — Pillar page specific styles.
   Reuses the SAT Calculator design system variables and patterns.
   The site's main CSS (https://anannt.ae/assets/css/style.min.css)
   handles header, footer, nav, typography utilities, grid, etc.
   ============================================================ */

/* ========== CSS VARIABLES (matches anannt.ae :root) ========== */
:root {
  --p1: #E27B0D;         /* Primary orange — CTAs, accents */
  --p1-dark: #c96d09;    /* Darker orange for hover states */
  --p1-light: #fef3e3;   /* Very light orange tint */
  --s1: #FFC700;         /* Secondary gold */
  --s2: #2FA75F;         /* Success green */
  --s3: #F05D5D;         /* Error red */
  --n0: #FFFFFF;         /* White */
  --n10: #FAFAFB;        /* Lightest BG */
  --n20: #F5F6F7;        /* Light gray BG */
  --n100: #E8EAED;       /* Borders, dividers */
  --n300: #9AA5B4;       /* Muted text */
  --n500: #4A5568;       /* Secondary text */
  --n700: #222E48;       /* Primary heading/body */
  --bg1: #1C1D20;        /* Dark nav/footer */
  --bg2: #262629;        /* Dark alt */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== BASE RESET ========== */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ========== HERO SECTION ========== */
.pillar-hero-section {
  background: linear-gradient(135deg, var(--n700) 0%, #1a2540 100%);
  padding: 60px 0 56px;
  position: relative;
  overflow: hidden;
}

.pillar-hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(226, 123, 13, 0.07);
  pointer-events: none;
}

.pillar-hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(226, 123, 13, 0.04);
  pointer-events: none;
}

.pillar-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

/* Breadcrumb */
.sat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
}

.sat-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.sat-breadcrumb a:hover {
  color: var(--p1);
}

.sat-breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

.sat-breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.85);
}

/* Hero title */
.pillar-hero-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.8px;
}

.pillar-hero-title span {
  color: var(--p1);
}

/* Direct-answer paragraph */
.pillar-hero-direct-answer {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 32px;
  max-width: 820px;
}

.pillar-hero-direct-answer strong {
  color: #ffffff;
  font-weight: 600;
}

/* Hero stats */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

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

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

.hero-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.hero-stat-number {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--p1);
  line-height: 1;
  letter-spacing: -1px;
  display: block;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Hero CTA buttons */
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--p1);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-hero-primary:hover {
  background: var(--p1-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(226, 123, 13, 0.40);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

/* Trust badges */
.sat-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sat-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(4px);
}

.sat-badge .ti {
  color: var(--p1);
  font-size: 15px;
}

/* ========== TABLE OF CONTENTS ========== */
.toc-section {
  background: var(--n10);
  border-bottom: 1px solid var(--n100);
  padding: 32px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.toc-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.toc-inner::-webkit-scrollbar {
  display: none;
}

.toc-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--n300);
  white-space: nowrap;
  flex-shrink: 0;
}

.toc-links {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
}

.toc-link {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--n500);
  text-decoration: none;
  border: 1px solid var(--n100);
  background: #fff;
  transition: all var(--transition);
  white-space: nowrap;
}

.toc-link:hover, .toc-link.active {
  background: var(--p1);
  color: #fff;
  border-color: var(--p1);
}

/* ========== PILLAR SECTION STYLES ========== */
.pillar-section {
  padding: 72px 0;
}

.pillar-section:nth-child(even) {
  background: var(--n10);
}

.pillar-section:nth-child(odd) {
  background: #fff;
}

.section-label-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--p1);
  background: var(--p1-light);
  border: 1px solid rgba(226, 123, 13, 0.20);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.pillar-section h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--n700);
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.pillar-section h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--n700);
  margin: 32px 0 12px;
  line-height: 1.3;
}

.pillar-section h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--n700);
  margin: 24px 0 10px;
}

.pillar-section p {
  font-size: 15px;
  line-height: 1.80;
  color: var(--n500);
  margin: 0 0 16px;
}

.pillar-section p strong {
  color: var(--n700);
  font-weight: 600;
}

.pillar-section a {
  color: var(--p1);
  text-decoration: none;
  font-weight: 500;
  transition: opacity var(--transition);
}

.pillar-section a:hover {
  opacity: 0.80;
  text-decoration: underline;
}

.section-intro {
  font-size: 16px !important;
  line-height: 1.75 !important;
  color: var(--n500);
  margin: 0 0 32px;
  max-width: 800px;
}

/* Two-column layout for sections */
.pillar-two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.pillar-two-col-wide {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .pillar-two-col,
  .pillar-two-col-wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Sidebar cards */
.pillar-sidebar-card {
  background: var(--n10);
  border: 1px solid var(--n100);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  position: sticky;
  top: 90px;
}

.pillar-sidebar-card h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--n700);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--p1);
  display: inline-block;
}

.pillar-sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-sidebar-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--n500);
  line-height: 1.5;
}

.pillar-sidebar-card li .ti {
  color: var(--p1);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Dark sidebar */
.pillar-sidebar-dark {
  background: var(--n700);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.pillar-sidebar-dark h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 16px;
}

.pillar-sidebar-dark ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pillar-sidebar-dark li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-weight: 500;
}

.pillar-sidebar-dark li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.pillar-sidebar-dark .ti {
  font-size: 13px;
  color: var(--p1);
}

/* ========== FORMAT CARDS / INFO BOXES ========== */
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.info-card {
  background: #fff;
  border: 1px solid var(--n100);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--p1-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.info-card-icon .ti {
  color: var(--p1);
  font-size: 22px;
}

.info-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--n700);
  margin: 0 0 8px;
}

.info-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--n500);
  margin: 0;
}

/* Highlight box */
.highlight-box {
  background: var(--p1-light);
  border: 1px solid rgba(226, 123, 13, 0.25);
  border-left: 4px solid var(--p1);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 20px;
  margin: 20px 0;
}

.highlight-box p {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #7a4400 !important;
  margin: 0 !important;
}

.highlight-box strong {
  color: #5a3000 !important;
}

/* Green info box */
.success-box {
  background: rgba(47, 167, 95, 0.06);
  border: 1px solid rgba(47, 167, 95, 0.20);
  border-left: 4px solid var(--s2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 20px;
  margin: 20px 0;
}

.success-box p {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #155724 !important;
  margin: 0 !important;
}

/* ========== TABLES ========== */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--n100);
  box-shadow: var(--shadow-sm);
  margin: 20px 0;
}

.pillar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}

.pillar-table caption {
  font-size: 12px;
  font-weight: 600;
  color: var(--n300);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  background: var(--n10);
  text-align: left;
  border-bottom: 1px solid var(--n100);
}

.pillar-table thead th {
  background: var(--n700);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}

.pillar-table tbody tr:nth-child(even) {
  background: var(--n10);
}

.pillar-table tbody tr:hover {
  background: var(--p1-light);
}

.pillar-table tbody td {
  padding: 12px 16px;
  color: var(--n700);
  border-bottom: 1px solid var(--n100);
  font-size: 14px;
  line-height: 1.5;
}

.pillar-table tbody tr:last-child td {
  border-bottom: none;
}

.table-note {
  font-size: 12px;
  color: var(--n300);
  line-height: 1.6;
  margin: 8px 0 0;
  font-style: italic;
}

/* Score badge in tables */
.score-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(226, 123, 13, 0.10);
  color: var(--p1);
  border: 1px solid rgba(226, 123, 13, 0.20);
}

.score-badge.high {
  background: rgba(47, 167, 95, 0.10);
  color: var(--s2);
  border-color: rgba(47, 167, 95, 0.20);
}

/* ========== WHY ANANNT — REASONS GRID ========== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.reason-card {
  background: #fff;
  border: 1px solid var(--n100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.reason-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(226, 123, 13, 0.30);
}

.reason-number {
  font-size: 40px;
  font-weight: 800;
  color: rgba(226, 123, 13, 0.12);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.reason-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--n700);
  margin: 0 0 10px;
}

.reason-card p {
  font-size: 14px;
  line-height: 1.70;
  color: var(--n500);
  margin: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--n100);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-quote {
  font-size: 40px;
  color: var(--p1);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
  opacity: 0.40;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--n500);
  margin: 0 0 16px;
  font-style: italic;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--n700) 0%, #1a2540 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--p1);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--n700);
}

.testimonial-detail {
  font-size: 12px;
  color: var(--n300);
  margin-top: 2px;
}

.score-improvement {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--s2);
  background: rgba(47, 167, 95, 0.08);
  border: 1px solid rgba(47, 167, 95, 0.20);
  border-radius: 12px;
  padding: 3px 10px;
  margin-top: 10px;
}

/* ========== STUDY PLAN TIMELINE ========== */
.study-plan-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.plan-tab {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--n100);
  background: #fff;
  color: var(--n500);
  transition: all var(--transition);
}

.plan-tab.active {
  background: var(--p1);
  color: #fff;
  border-color: var(--p1);
}

.plan-tab:hover:not(.active) {
  border-color: var(--n700);
  color: var(--n700);
}

.plan-content {
  display: none;
}

.plan-content.active {
  display: block;
  animation: fadeInUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.week-block {
  border: 1px solid var(--n100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.week-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--n10);
  cursor: pointer;
  transition: background var(--transition);
}

.week-header:hover {
  background: var(--p1-light);
}

.week-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: var(--n700);
  color: #fff;
  flex-shrink: 0;
}

.week-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--n700);
}

.week-body {
  padding: 16px 20px;
  display: none;
}

.week-block.open .week-body {
  display: block;
}

.week-tasks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.week-tasks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--n500);
  line-height: 1.55;
}

.task-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--p1);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ========== COMPARISON TABLE (SAT vs ACT) ========== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--n100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 24px 0;
}

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

.comparison-col {
  background: #fff;
}

.comparison-col.header-col {
  background: var(--n10);
}

.comparison-col.sat-col {
  background: linear-gradient(135deg, #fff 0%, var(--p1-light) 100%);
}

.comparison-cell {
  padding: 14px 16px;
  border-bottom: 1px solid var(--n100);
  font-size: 14px;
  color: var(--n500);
  line-height: 1.5;
}

.comparison-cell:last-child {
  border-bottom: none;
}

.comparison-cell.header {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--n300);
  background: var(--n700);
  color: #fff;
  padding: 16px;
  text-align: center;
}

.comparison-cell.feature {
  font-weight: 600;
  color: var(--n700);
  background: var(--n10);
}

.comparison-cell.highlight {
  font-weight: 600;
  color: var(--n700);
}

/* ========== TOOL PREVIEW WIDGET ========== */
.tool-preview-section {
  background: linear-gradient(135deg, var(--n700) 0%, #1a2540 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}

.tool-preview-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(226, 123, 13, 0.08);
  pointer-events: none;
}

.tool-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 680px) {
  .tool-preview-grid {
    grid-template-columns: 1fr;
  }
}

.tool-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.tool-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(226, 123, 13, 0.40);
}

.tool-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--p1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tool-icon-wrap .ti {
  font-size: 24px;
  color: #fff;
}

.tool-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.tool-card p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.70);
  margin: 0 0 16px;
}

.tool-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--p1);
  text-decoration: none;
  transition: opacity var(--transition);
}

.tool-card a:hover {
  opacity: 0.80;
}

.tool-preview-header h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.tool-preview-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  margin: 0 0 24px;
  line-height: 1.65;
}

/* ========== LEAD CAPTURE FORMS ========== */
.lead-capture-section {
  background: linear-gradient(135deg, var(--n700) 0%, #0f1825 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.lead-capture-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(226, 123, 13, 0.07);
  pointer-events: none;
}

.lead-capture-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lead-capture-inner h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}

.lead-capture-inner p {
  font-size: 15px;
  line-height: 1.70;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 28px;
}

.lead-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: left;
}

.lead-form .form-group {
  margin-bottom: 16px;
}

.lead-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  margin-bottom: 6px;
}

.lead-form .form-group input,
.lead-form .form-group select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--n700);
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}

.lead-form .form-group input:focus,
.lead-form .form-group select:focus {
  border-color: var(--p1);
  box-shadow: 0 0 0 3px rgba(226, 123, 13, 0.20);
}

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

@media (max-width: 520px) {
  .lead-form .form-row {
    grid-template-columns: 1fr;
  }
}

.lead-form .form-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 12px;
}

/* Mid-page lead capture */
.lead-capture-mid {
  background: var(--p1-light);
  border: 2px solid rgba(226, 123, 13, 0.20);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin: 40px 0;
}

.lead-capture-mid h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--n700);
  margin: 0 0 8px;
}

.lead-capture-mid p {
  font-size: 15px;
  line-height: 1.70;
  color: var(--n500);
  margin: 0 0 24px;
}

.lead-capture-mid .lead-form {
  background: #fff;
  border: 1px solid rgba(226, 123, 13, 0.15);
}

.lead-capture-mid .lead-form .form-group label {
  color: var(--n700);
}

.lead-capture-mid .lead-form .form-group input,
.lead-capture-mid .lead-form .form-group select {
  border-color: var(--n100);
}

.lead-capture-mid .lead-form .form-disclaimer {
  color: var(--n300);
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--p1);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  margin-top: 8px;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--p1-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(226, 123, 13, 0.35);
}

.btn-primary.full-width {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--n700);
  border: 2px solid var(--n100);
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  margin-top: 8px;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--n700);
  background: var(--n10);
  color: var(--n700);
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

/* ========== FAQ SECTION ========== */
.sat-faq-section {
  padding: 72px 0 80px;
  background: var(--n10);
}

.sat-faq-section .section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.sat-faq-section h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--n700);
  margin: 0 0 12px;
}

.sat-faq-section .section-intro {
  font-size: 16px;
  color: var(--n500);
  line-height: 1.70;
  margin: 0;
}

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

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

.faq-item {
  border: 1px solid var(--n100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
}

.faq-item.open {
  border-color: var(--p1);
  box-shadow: 0 0 0 3px rgba(226, 123, 13, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--n700);
  font-family: inherit;
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
  background: var(--p1-light);
  color: var(--p1);
}

.faq-item.open .faq-question {
  background: var(--p1-light);
  color: var(--p1);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--n300);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--p1);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  background: #fff;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeInUp 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--n500);
  margin: 0 0 8px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--p1);
  font-weight: 500;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-answer ul {
  margin: 8px 0;
  padding-left: 20px;
}

.faq-answer li {
  font-size: 14px;
  line-height: 1.70;
  color: var(--n500);
  margin-bottom: 4px;
}

/* ========== CTA BANNER ========== */
.cta-banner-section {
  background: linear-gradient(135deg, var(--n700) 0%, #1a2540 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(226, 123, 13, 0.08);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner-inner h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}

.cta-banner-inner p {
  font-size: 16px;
  line-height: 1.70;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 28px;
}

.cta-banner-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #25D366;
  text-decoration: none;
  margin-top: 16px;
  transition: opacity var(--transition);
}

.cta-whatsapp-link .ti {
  font-size: 18px;
}

.cta-whatsapp-link:hover {
  opacity: 0.80;
}

/* ========== MISTAKES SECTION ========== */
.mistakes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.mistake-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--n100);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.mistake-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(226, 123, 13, 0.20);
}

.mistake-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--n700) 0%, #1a2540 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--p1);
  flex-shrink: 0;
}

.mistake-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--n700);
  margin: 0 0 6px;
}

.mistake-content p {
  font-size: 14px;
  line-height: 1.70;
  color: var(--n500);
  margin: 0;
}

.mistake-content .solution {
  font-size: 13px;
  color: var(--s2);
  font-weight: 600;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========== SCORE IMPROVEMENT STORIES ========== */
.story-card {
  background: #fff;
  border: 1px solid var(--n100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.story-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--n700) 0%, #1a2540 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--p1);
  flex-shrink: 0;
}

.story-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--n700);
  margin: 0 0 4px;
}

.story-info p {
  font-size: 13px;
  color: var(--n300);
  margin: 0;
}

.score-journey {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--n10);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 16px 0;
}

.score-box {
  text-align: center;
}

.score-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--n300);
  display: block;
  margin-bottom: 4px;
}

.score-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--n700);
  line-height: 1;
  letter-spacing: -1px;
}

.score-value.final {
  color: var(--s2);
}

.score-arrow {
  font-size: 24px;
  color: var(--p1);
  flex: 1;
  text-align: center;
}

.score-delta {
  background: rgba(47, 167, 95, 0.10);
  border: 1px solid rgba(47, 167, 95, 0.20);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--s2);
}

.story-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--n500);
  font-style: italic;
  margin: 0;
}

/* ========== COACHING OPTIONS COMPARISON ========== */
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

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

.option-card {
  background: #fff;
  border: 2px solid var(--n100);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.option-card.recommended {
  border-color: var(--p1);
  box-shadow: 0 0 0 4px rgba(226, 123, 13, 0.10);
}

.option-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--p1);
  color: #fff;
}

.option-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--n700);
  margin: 0 0 12px;
}

.option-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--n500);
  line-height: 1.5;
}

.option-features li.pro .ti {
  color: var(--s2);
}

.option-features li.con .ti {
  color: var(--s3);
}

/* ========== PARENT GUIDE ========== */
.parent-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.parent-guide-card {
  background: #fff;
  border: 1px solid var(--n100);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.parent-guide-card .icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.parent-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--p1-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.parent-icon .ti {
  color: var(--p1);
  font-size: 20px;
}

.parent-guide-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--n700);
  margin: 0;
}

.parent-guide-card p {
  font-size: 13px;
  line-height: 1.70;
  color: var(--n500);
  margin: 0;
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
  height: 1px;
  background: var(--n100);
  margin: 0;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.10);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float .ti {
  font-size: 30px;
  color: #fff;
}

/* ========== SUCCESS POPUP ========== */
#success-popup {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--s2);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  z-index: 9999;
  font-family: Inter, sans-serif;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-width: 360px;
  line-height: 1.55;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .pillar-hero-section {
    padding: 44px 0 40px;
  }

  .pillar-hero-title {
    font-size: 28px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    text-align: center;
    justify-content: center;
  }

  .pillar-section {
    padding: 48px 0;
  }

  .lead-capture-section {
    padding: 48px 0;
  }

  .tool-preview-section {
    padding: 28px 20px;
  }

  .lead-form {
    padding: 24px 20px;
  }

  .lead-capture-mid {
    padding: 28px 20px;
  }

  .sat-faq-section {
    padding: 48px 0 56px;
  }

  .cta-banner-section {
    padding: 44px 0;
  }

  .toc-section {
    padding: 16px 0;
    position: relative;
  }

  .story-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .score-journey {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .sat-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .comparison-grid {
    font-size: 13px;
  }

  .pillar-table {
    font-size: 12px;
  }

  .pillar-table thead th,
  .pillar-table tbody td {
    padding: 10px 12px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* ========== PRINT STYLES ========== */
@media print {
  .header-section,
  .footer__four,
  .toc-section,
  .lead-capture-section,
  .cta-banner-section,
  .whatsapp-float {
    display: none !important;
  }
}

/* ========== INLINE CONTENT STYLES ========== */
.content-body ul {
  margin: 12px 0 16px 20px;
  padding: 0;
}

.content-body li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--n500);
  margin-bottom: 8px;
}

.content-body ol {
  margin: 12px 0 16px 20px;
  padding: 0;
}

.content-body strong {
  color: var(--n700);
  font-weight: 600;
}

/* Numbered steps */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  counter-reset: step-counter;
}

.steps-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  counter-increment: step-counter;
}

.steps-list li::before {
  content: counter(step-counter);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--p1);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.steps-list li p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--n500);
  margin: 0;
}

/* Section header with border accent */
.section-heading-accent {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.section-heading-accent .accent-bar {
  width: 4px;
  height: 40px;
  background: var(--p1);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-heading-accent h2 {
  margin: 0 !important;
}
