/* ============================================
   PhD COMPLETION WEBSITE — Premium CSS System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --primary:     #17324d;
  --secondary:   #2b6f77;
  --accent:      #b95c3d;
  --bg:          #f7f4ef;
  --white:       #ffffff;
  --text:        #2d2d2d;
  --muted:       #5a6c7d;
  --border:      #d4d4d4;

  --primary-light: #1e4568;
  --secondary-light: #358a93;
  --accent-light: #d4704f;
  --bg-dark:     #e8e4dd;

  --shadow-sm:   0 2px 8px rgba(23,50,77,0.08);
  --shadow-md:   0 8px 32px rgba(23,50,77,0.12);
  --shadow-lg:   0 20px 60px rgba(23,50,77,0.18);
  --shadow-xl:   0 30px 80px rgba(23,50,77,0.22);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 100px;

  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-heading: 'Lora', Georgia, serif;
  --font-body:    'Open Sans', system-ui, sans-serif;

  --container: 1200px;
  --section-py: 100px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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; }
input, textarea, select { font-family: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--primary);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
p  { font-size: 1.05rem; color: var(--muted); }

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION PADDING ─── */
section { padding: var(--section-py) 0; }
.section-light { background: var(--bg); }
.section-white { background: var(--white); }
.section-dark  { background: var(--primary); }
.section-alt   { background: var(--bg-dark); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(185,92,61,0.35);
}
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 8px 32px rgba(185,92,61,0.5);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(23,50,77,0.05);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* ─── BADGE ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-accent { background: rgba(185,92,61,0.12); color: var(--accent); }
.badge-secondary { background: rgba(43,111,119,0.12); color: var(--secondary); }
.badge-primary { background: rgba(23,50,77,0.1); color: var(--primary); }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-header .badge { margin-bottom: 20px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; }
.section-header.left { text-align: left; margin: 0 0 60px; }

/* .section-divider removed per request */
.section-divider { display: none; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,212,212,0.4);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
.nav-logo-text { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.nav-logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(23,50,77,0.07);
}
.nav-cta { margin-left: 12px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 20px 24px;
  transform: translateY(-120%);
  opacity: 0;
  transition: var(--transition);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--primary);
  font-size: 1rem;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* ─── STICKY BOOK BUTTON ─── */
.sticky-cta {
  position: fixed;
  bottom: 32px;
  right: 100px;
  z-index: 990;
  animation: float 3s ease-in-out infinite;
}
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(185,92,61,0.45);
  transition: var(--transition);
}
.sticky-cta a:hover {
  background: var(--accent-light);
  box-shadow: 0 12px 40px rgba(185,92,61,0.6);
  transform: translateY(-3px);
}

/* ─── WHATSAPP BUTTON ─── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 990;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ─── HERO SECTION ─── */
.hero {
  padding-top: 130px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #f7f4ef 0%, #edeae3 50%, #e4e9f0 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(43,111,119,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(185,92,61,0.06) 0%, transparent 70%);
  bottom: 0; left: 10%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content .badge { margin-bottom: 24px; }
.hero-content h1 { margin-bottom: 24px; color: var(--primary); }
.hero-content h1 em { font-style: italic; color: var(--accent); }
.hero-content p { font-size: 1.15rem; margin-bottom: 36px; max-width: 560px; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-badge-icon {
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(212,212,212,0.5);
  position: relative;
}

.hero-form-card h3 { margin-bottom: 8px; font-size: 1.35rem; }
.hero-form-card .form-subtitle { font-size: 0.9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(43,111,119,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-btn { width: 100%; justify-content: center; padding: 15px; }
.form-privacy {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ─── PROBLEM SECTION ─── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.problem-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.problem-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: rgba(185,92,61,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.problem-card h4 { color: var(--white); margin-bottom: 8px; font-size: 1.05rem; }
.problem-card p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ─── AUTHORITY / SYSTEM CARDS ─── */
.system-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.system-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.system-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.system-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.system-card:hover::before { transform: scaleX(1); }
.system-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(23,50,77,0.1), rgba(43,111,119,0.1));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.system-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.system-card p  { font-size: 0.92rem; }

/* ─── VALUE LIST ─── */
.value-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.value-check {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}
.value-item span { font-weight: 600; font-size: 0.95rem; color: var(--text); }

/* ─── MENTORSHIP BANNER ─── */
.mentorship-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.mentorship-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.mentorship-banner h2 { color: var(--white); margin-bottom: 16px; }
.mentorship-banner p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.mentorship-banner-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; }

/* ─── TRUST CARDS ─── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.trust-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.trust-card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.trust-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.trust-card p  { font-size: 0.88rem; }

/* ─── FINAL CTA SECTION ─── */
.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #0f2035 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(43,111,119,0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.final-cta h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.final-cta p  { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; position: relative; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
}
.urgency-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}
.urgency-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 500;
}
.urgency-dot {
  width: 8px; height: 8px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* ─── FOOTER ─── */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo-text { color: var(--white); font-size: 1.2rem; }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; font-family: var(--font-body); }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 5px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ─── SERVICES PAGE ─── */
.package-hero {
  background: linear-gradient(135deg, #0a111a 0%, #17324d 50%, #1d3e5a 100%);
  padding-top: 180px;
  padding-bottom: 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.package-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(43,111,119,0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  pointer-events: none;
  opacity: 0.4;
}
.package-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(185,92,61,0.1) 0%, transparent 70%);
  top: -100px; left: -100px;
  pointer-events: none;
}
.package-hero h1 { 
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--white); 
  margin-bottom: 24px; 
  position: relative; 
  letter-spacing: -0.02em;
}
.package-hero p { 
  color: rgba(255,255,255,0.8); 
  font-size: 1.25rem; 
  margin-bottom: 40px; 
  position: relative; 
  font-weight: 300;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.package-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.package-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-md);
}
.package-item .check {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.package-item span { font-weight: 600; font-size: 0.95rem; }

/* ─── PRICING CARDS ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--secondary);
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(185,92,61,0.18);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.featured-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.pricing-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.pricing-price .currency { font-size: 1.3rem; vertical-align: super; }
.pricing-card p { font-size: 0.88rem; margin-bottom: 20px; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ─── PROCESS TIMELINE ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.step-number {
  width: 80px; height: 80px;
  background: var(--white);
  border: 3px solid var(--border);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.process-step:hover .step-number {
  border-color: var(--secondary);
  background: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: scale(1.1);
}
.step-num-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}
.process-step:hover .step-num-text { color: var(--white); }
.step-icon { font-size: 1.1rem; }
.process-step h4 { font-size: 0.9rem; margin-bottom: 6px; }
.process-step p  { font-size: 0.82rem; }

/* ─── INCLUDES SECTION ─── */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.include-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.include-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}
.include-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(43,111,119,0.12), rgba(23,50,77,0.08));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.include-item h4 { font-size: 1rem; margin-bottom: 4px; }
.include-item p  { font-size: 0.88rem; }

/* ─── MENTORSHIP PAGE ─── */
.mentorship-hero {
  padding-top: 160px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #17324d 0%, #0f2035 60%, #2b6f77 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mentorship-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(185,92,61,0.12) 0%, transparent 70%);
  top: -50%; right: -10%;
  pointer-events: none;
}
.mentorship-hero h1 { color: var(--white); margin-bottom: 20px; position: relative; }
.mentorship-hero p  { color: rgba(255,255,255,0.75); font-size: 1.2rem; margin-bottom: 40px; position: relative; max-width: 640px; margin-left: auto; margin-right: auto; }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(43,111,119,0.3);
}
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.outcome-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.outcome-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.outcome-icon { font-size: 2rem; margin-bottom: 16px; }
.outcome-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.outcome-card p  { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* ─── CONTACT PAGE ─── */
.contact-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-dark) 100%);
  text-align: center;
}
.contact-hero h1 { margin-bottom: 16px; }
.contact-hero p  { font-size: 1.15rem; max-width: 560px; margin: 0 auto; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
}
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { font-size: 1.05rem; margin-bottom: 40px; }
.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  text-decoration: none;
  transition: var(--transition);
}
.contact-option:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.contact-option-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-option-icon.wa  { background: rgba(37,211,102,0.12); }
.contact-option-icon.em  { background: rgba(43,111,119,0.12); }
.contact-option-icon.cal { background: rgba(185,92,61,0.12); }
.contact-option-label { font-size: 0.8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-option-value { font-weight: 700; color: var(--primary); font-size: 1rem; }

.calendly-placeholder {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px dashed var(--border);
  text-align: center;
  margin-top: 24px;
}
.calendly-placeholder h4 { margin-bottom: 8px; }
.calendly-placeholder p { font-size: 0.9rem; margin-bottom: 20px; }

.trust-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(43,111,119,0.06);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--secondary);
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 500;
  margin-top: 24px;
}

/* ─── ANIMATIONS ─── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.animate-fade-up    { animation: fadeInUp 0.7s ease both; }
.animate-fade-left  { animation: fadeInLeft 0.7s ease both; }
.animate-fade-right { animation: fadeInRight 0.7s ease both; }
.animate-scale      { animation: scaleIn 0.6s ease both; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* Scroll animation: hidden until visible */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── POSITIONING STRIP ─── */
.positioning-strip {
  background: var(--secondary);
  padding: 28px 0;
  text-align: center;
}
.positioning-strip p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-heading);
  font-style: italic;
}

/* ─── VERTICAL TIMELINE ─── */
.vertical-timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 20px 0;
}
.vertical-timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--secondary), var(--accent), var(--primary));
  transform: translateX(-50%);
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 32px 50px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }
.timeline-dot {
  position: absolute;
  top: 40px;
  width: 24px; height: 24px;
  background: var(--white);
  border: 4px solid var(--accent);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 15px rgba(185,92,61,0.4);
}
.timeline-item:nth-child(odd) .timeline-dot { right: -12px; }
.timeline-item:nth-child(even) .timeline-dot { left: -12px; }
.timeline-content {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}
.timeline-item:nth-child(odd) .timeline-content { border-left: none; border-right: 4px solid var(--accent); }
.timeline-item:hover .timeline-content { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.timeline-num {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.timeline-content h4 { margin-bottom: 12px; font-size: 1.25rem; color: var(--primary); }
.timeline-content p { font-size: 0.95rem; line-height: 1.6; color: var(--muted); }

@media (max-width: 768px) {
  .vertical-timeline::before { left: 24px; }
  .timeline-item { width: 100%; left: 0 !important; padding: 20px 0 20px 60px; text-align: left !important; }
  .timeline-dot { left: 12px !important; top: 32px; }
  .timeline-item:nth-child(odd) .timeline-content { border-right: none; border-left: 4px solid var(--accent); }
}

@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-card { max-width: 560px; }
  .mentorship-banner { grid-template-columns: 1fr; gap: 32px; }
  .mentorship-banner-cta { align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { padding-top: 130px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .mentorship-banner { padding: 40px 28px; }
  .process-steps { grid-template-columns: 1fr; }
  .package-card { padding: 32px 24px; }
  .package-list { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .sticky-cta { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-badges { flex-direction: column; gap: 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

/* ─── DOMAIN EXPERTISE SECTION ─── */
.domain-section {
  background: var(--primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.domain-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(43,111,119,0.15) 0%, transparent 70%);
  bottom: -200px; right: -200px;
}
.domain-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.domain-card {
  flex: 0 1 calc(25% - 32px);
  min-width: 260px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
}
.domain-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(185,92,61,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.domain-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185,92,61,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.domain-card:hover::after { opacity: 1; }
.domain-icon-box {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  transition: transform 0.4s ease;
}
.domain-card:hover .domain-icon-box { transform: scale(1.1) rotate(5deg); }
.domain-card h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .domain-card { flex: 0 1 calc(50% - 32px); }
}
@media (max-width: 640px) {
  .domain-card { flex: 1 1 100%; }
}

/* ─── EXPERTISE RIBBON ─── */
@keyframes ribbon-pan {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.expertise-ribbon {
  background: linear-gradient(270deg, #17324d, #1e4568, #2b6f77, #17324d);
  background-size: 800% 800%;
  animation: ribbon-pan 12s ease infinite;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 40px 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  overflow: hidden;
}
.expertise-ribbon::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(185,92,61,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}
.expertise-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.expertise-label {
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-right: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.expertise-list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.expertise-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.27);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.expertise-pill::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg) translate(-100%, -100%);
  transition: all 0.6s ease;
}
.expertise-pill:hover::before {
  transform: rotate(45deg) translate(100%, 100%);
}
.expertise-pill:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-color: transparent;
  transform: translateY(-5px) scale(1.05);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(185, 92, 61, 0.4);
}

@media (max-width: 768px) {
  .expertise-inner { flex-direction: column; text-align: center; gap: 16px; }
  .expertise-label { margin-right: 0; margin-bottom: 8px; }
}

/* ─── MENTORSHIP STYLES ─── */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.roadmap-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.roadmap-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.roadmap-block:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.roadmap-phase {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.roadmap-block h4 { color: var(--white); margin-bottom: 8px; }
.roadmap-block p  { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.testimonial-strip {
  background: var(--secondary);
  padding: 60px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  line-height: 1.65;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.author-meta { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

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