/*
Theme Name: Ramus Liceum
Theme URI: https://ramus.edu.pl
Author: Ramus
Description: Motyw strony głównej Liceum Ramus
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: ramus
*/

/* =========================================================
   CSS VARIABLES / PALETTE
   ========================================================= */
:root {
  --green:        #6FD351;   /* primary brand green */
  --green-hover:  #5ABF3F;
  --green-dark:   #3D9A28;
  --green-100:    #F0F7E8;
  --green-200:    #DCF0CC;
  --green-300:    #B3D99A;

  --navy:         #1A2A42;   /* dark sections, mentor, footer */
  --navy-light:   #243554;
  --footer:       #0E1B2E;

  --text:         #1A1A2E;
  --text-muted:   #64748B;
  --text-light:   #94A3B8;

  --border:       #E2E8F0;
  --bg-gray:      #F8FAFC;
  --bg-green:     #F0F7E8;
  --white:        #FFFFFF;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   ICON HELPER
   ========================================================= */
.icon { display: inline-block; flex-shrink: 0; }
.icon svg { display: block; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.18s ease;
  line-height: 1;
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover { background: var(--green-hover); border-color: var(--green-hover); box-shadow: 0 4px 14px rgba(111,211,81,0.35); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green);
}
.btn-secondary:hover { background: var(--green-100); }

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--white);
}
.btn-white:hover { background: var(--green-100); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-sm { padding: 10px 20px; font-size: 14px; }

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 9px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.top-bar a:hover { color: var(--white); }
.top-bar .phone { font-weight: 600; color: var(--green); }

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 28px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 21px;
  color: var(--navy);
  flex-shrink: 0;
  letter-spacing: -0.3px;
}
.site-logo .logo-icon {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.site-logo .logo-icon svg { width: 20px; height: 20px; }

.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.main-nav a {
  padding: 7px 13px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  transition: all 0.15s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--green-dark); background: var(--green-100); }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta .btn { padding: 10px 18px; font-size: 14px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--white);
  padding: 72px 0 0;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  min-height: 500px;
}

.hero-content { padding-bottom: 72px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-100);
  color: var(--green-dark);
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 22px;
  border: 1px solid var(--green-200);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.hero h1 .highlight { color: var(--green-dark); }

.hero-tagline {
  font-size: 21px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.hero-tagline .dot { color: var(--green); }

.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.75;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat { display: flex; align-items: center; gap: 10px; }
.hero-stat-icon {
  width: 36px; height: 36px;
  background: var(--green-100);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--green-200);
}
.hero-stat-icon svg { width: 18px; height: 18px; stroke: var(--green-dark); }
.hero-stat-text { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.hero-stat-text strong { display: block; font-size: 13px; color: var(--text); font-weight: 600; }

.hero-image {
  align-self: flex-end;
  position: relative;
}
.hero-image-main {
  width: 100%;
  aspect-ratio: 9/10;
  background: linear-gradient(160deg, var(--green) 0%, var(--navy) 100%);
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  position: relative;
}
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hero-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
}
.hero-placeholder-inner svg { width: 80px; height: 80px; stroke: rgba(255,255,255,0.3); }
.hero-placeholder-inner span { font-size: 14px; }

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.hero-float-card .card-icon { color: var(--green); }
.hero-float-card .card-icon svg { width: 20px; height: 20px; stroke: var(--green); }
.hero-float-label { font-size: 11px; color: var(--text-muted); font-weight: 400; margin-bottom: 1px; }
.hero-float-value { font-weight: 700; color: var(--text); font-size: 14px; }
.hero-float-card.card-1 { top: 24px; left: -20px; }
.hero-float-card.card-2 { bottom: 60px; right: -20px; }
.badge-green { background: var(--green-100); color: var(--green-dark); padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }

/* =========================================================
   INFO STRIP
   ========================================================= */
.info-strip {
  background: var(--navy);
  padding: 22px 0;
}
.info-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.info-strip-item {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
}
.info-strip-icon {
  width: 34px; height: 34px;
  background: rgba(111,211,81,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(111,211,81,0.3);
}
.info-strip-icon svg { width: 18px; height: 18px; stroke: var(--green); }
.info-strip-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.12); }

/* =========================================================
   SECTION SHARED
   ========================================================= */
.section { padding: 80px 0; }
.section-white  { background: var(--white); }
.section-gray   { background: var(--bg-gray); }
.section-green  { background: var(--bg-green); }
.section-navy   { background: var(--navy); color: var(--white); }

.section-header { text-align: center; max-width: 660px; margin: 0 auto 52px; }

.section-label {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.section-navy .section-label { background: rgba(111,211,81,0.18); color: var(--green); }

.section-header h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-navy .section-header h2 { color: var(--white); }
.section-header h2 em { color: var(--green-dark); font-style: normal; }
.section-navy .section-header h2 em { color: var(--green); }
.section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.section-navy .section-header p { color: rgba(255,255,255,0.65); }

/* =========================================================
   ABOUT / CZYM SIĘ RÓŻNI
   ========================================================= */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 52px;
}

.about-text .section-label { display: inline-block; margin-bottom: 14px; }
.about-text h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-text .btn { margin-top: 4px; }

.about-video {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.about-video-thumb {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.play-btn {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.4); }
.play-btn svg { width: 24px; height: 24px; fill: var(--green-dark); margin-left: 3px; }

.about-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-col {
  background: var(--bg-gray);
  border-radius: 12px;
  padding: 26px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-col:hover { border-color: var(--green-200); box-shadow: 0 4px 16px rgba(111,211,81,0.1); }

.about-col-icon {
  width: 44px; height: 44px;
  background: var(--green-100);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  border: 1px solid var(--green-200);
}
.about-col-icon svg { width: 22px; height: 22px; stroke: var(--green-dark); }
.about-col h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.about-col p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* =========================================================
   ŚCIEŻKI
   ========================================================= */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.path-card {
  border-radius: 14px;
  padding: 36px;
  border: 2px solid var(--border);
  background: var(--white);
  transition: all 0.2s;
}
.path-card:hover:not(.featured) { border-color: var(--green); box-shadow: 0 8px 28px rgba(111,211,81,0.12); transform: translateY(-2px); }
.path-card.featured { background: var(--navy); border-color: var(--navy); color: var(--white); }

.path-badge {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: var(--green-100);
  color: var(--green-dark);
}
.path-card.featured .path-badge { background: rgba(111,211,81,0.18); color: var(--green); }

.path-card h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.path-card.featured h3 { color: var(--white); }
.path-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.65; }
.path-card.featured > p { color: rgba(255,255,255,0.65); }

.path-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.path-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.path-card.featured .path-feature { color: rgba(255,255,255,0.85); }
.path-feature-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.path-feature-icon svg { width: 18px; height: 18px; stroke: var(--green); }
.path-card.featured .path-feature-icon svg { stroke: var(--green); }

/* =========================================================
   FEATURES (SPOKÓJ, STRUKTURA)
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 26px;
  border: 1px solid var(--border);
  transition: all 0.18s;
}
.feature-card:hover { border-color: var(--green-200); box-shadow: 0 4px 18px rgba(111,211,81,0.1); transform: translateY(-1px); }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--green-100);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  border: 1px solid var(--green-200);
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--green-dark); }
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* =========================================================
   MENTOR
   ========================================================= */
.mentor-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: center;
}
.mentor-image-wrap { position: relative; }
.mentor-image {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy-light), var(--footer));
  display: flex; align-items: center; justify-content: center;
}
.mentor-image svg { width: 80px; height: 80px; stroke: rgba(255,255,255,0.2); }
.mentor-image img { width: 100%; height: 100%; object-fit: cover; }

.mentor-stat-card {
  position: absolute;
  bottom: 24px; right: -24px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  color: var(--text);
}
.mentor-stat-number { font-size: 26px; font-weight: 800; color: var(--green-dark); }
.mentor-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }

.mentor-content h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.mentor-content h2 em { color: var(--green); font-style: normal; }
.mentor-content > p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 32px; }

.mentor-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.mentor-feature {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 18px;
  transition: background 0.2s;
}
.mentor-feature:hover { background: rgba(255,255,255,0.1); }
.mentor-feature-icon {
  width: 36px; height: 36px;
  background: rgba(111,211,81,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.mentor-feature-icon svg { width: 18px; height: 18px; stroke: var(--green); }
.mentor-feature h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.mentor-feature p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* =========================================================
   PROCESS (3 KROKI)
   ========================================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  margin-bottom: 40px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-300));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 62px; height: 62px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 18px rgba(111,211,81,0.35);
  position: relative; z-index: 1;
}
.process-step h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 9px; }
.process-step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.process-cta {
  text-align: center;
  padding: 30px 36px;
  background: var(--green-100);
  border-radius: 14px;
  border: 1px solid var(--green-200);
}
.process-cta p { font-size: 15px; color: var(--text); margin-bottom: 18px; line-height: 1.6; }
.process-cta strong { color: var(--navy); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg-gray); }
.faq-question.active { background: var(--green-100); color: var(--green-dark); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.22s, background 0.15s, border-color 0.15s;
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--text-muted); transition: stroke 0.15s; }
.faq-question.active .faq-icon { background: var(--green); border-color: var(--green); transform: rotate(45deg); }
.faq-question.active .faq-icon svg { stroke: var(--white); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-answer.open { display: block; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.pricing-card {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  background: var(--white);
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); }

/* Featured card is GREEN */
.pricing-card.featured {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(111,211,81,0.3);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.75); }
.pricing-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-price sup { font-size: 20px; vertical-align: top; margin-top: 6px; margin-right: 2px; }
.pricing-price sub { font-size: 14px; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.pricing-card.featured .pricing-price sub { color: rgba(255,255,255,0.65); }
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; line-height: 1.55; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.7); }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.3); }
.pricing-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.9); }
.pricing-feature-check { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.pricing-feature-check svg { width: 18px; height: 18px; stroke: var(--green-dark); }
.pricing-card.featured .pricing-feature-check svg { stroke: var(--navy); }
.pricing-card .btn { width: 100%; }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--footer);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
}
.footer-brand .site-logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-bottom a:hover { color: var(--green); }
.footer-bottom-links { display: flex; gap: 20px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .hero-content { padding-bottom: 0; }
  .hero-image { max-width: 460px; margin: 0 auto; }
  .about-layout { grid-template-columns: 1fr; gap: 28px; }
  .mentor-layout { grid-template-columns: 1fr; }
  .mentor-image-wrap { max-width: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .top-bar .top-bar-left { display: none; }
  .main-nav { display: none; }
  .header-cta .btn-secondary { display: none; }
  .paths-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .about-columns { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
  .process-steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .info-strip .container { justify-content: center; }
  .info-strip-divider { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .mentor-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .about-columns { gap: 14px; }
}
