:root {
  --primary:      #1E56C4;
  --primary-dark: #1B3270;
  --primary-pale: #E8EFFA;
  --primary-bg:   #F0F4FC;
  --accent:       #EA7A18;
  --accent-light: #F59E0B;
  --accent-pale:  #FEF3E8;
  --white:        #FFFFFF;
  --gray-50:      #F8FAFC;
  --gray-100:     #F1F5F9;
  --gray-200:     #E2E8F0;
  --gray-300:     #CBD5E1;
  --text-dark:    #0F172A;
  --text-medium:  #334155;
  --text-muted:   #64748B;
  --text-light:   #94A3B8;
  --shadow-sm:  0 2px 6px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
  --shadow-md:  0 6px 18px rgba(30,86,196,0.06), 0 2px 6px rgba(30,86,196,0.03);
  --shadow-lg:  0 16px 36px rgba(30,86,196,0.1), 0 4px 12px rgba(30,86,196,0.04);
  --shadow-p:   0 8px 24px rgba(30,86,196,0.25);
  --border:     rgba(30,86,196,0.08);
  --border-p:   rgba(30,86,196,0.25);
  /* Legacy aliases used in existing inline-style HTML */
  --green-deep:  #F0F4FC;
  --green-mid:   #E8EFFA;
  --green-brand: #1E56C4;
  --green-light: #4F7FD4;
  --green-glow:  #1E56C4;
  --gold:        #EA7A18;
  --gold-light:  #F59E0B;
  --cream:       #F8FAFC;
  --bg-dark:     #1B3270;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 60px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 18px; color: white;
}
.nav-logo-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: 2px; color: var(--text-dark); }
.nav-logo-sub { font-size: 10px; color: var(--text-light); letter-spacing: 3px; text-transform: uppercase; margin-top: -4px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-medium); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.3px; transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white; border: none; padding: 11px 22px; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all .2s; letter-spacing: 0.3px; text-decoration: none; display: inline-block;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-p); }

.hero-ownership-pill {
  display: inline-flex; background: var(--primary-pale); border: 1px solid rgba(30,86,196,0.2);
  border-radius: 12px; padding: 12px 20px; margin-bottom: 32px;
}
.hero-ownership-items { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ownership-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--primary-dark); }
.ownership-check { color: var(--primary); }
.ownership-sep { color: rgba(30,86,196,0.35); font-size: 16px; }

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--primary-dark);
  padding: 80px 60px;
}
.philosophy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.philosophy-quote {
  font-family: 'Poppins', sans-serif; font-size: clamp(22px, 3vw, 30px);
  font-weight: 700; line-height: 1.4; color: rgba(255,255,255,0.95);
  border-left: 4px solid var(--accent); padding-left: 28px;
}
.philosophy-quote em { color: var(--accent); font-style: normal; }
.philosophy-quote .accent-green { color: #7CB4F4; font-style: normal; }
.philosophy-cards { display: flex; flex-direction: column; gap: 14px; }
.philosophy-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 20px 22px; transition: all .25s;
}
.philosophy-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); }
.philosophy-card-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.philosophy-card-icon.red-icon { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); }
.philosophy-card-icon.green-icon { background: rgba(234,122,24,0.15); border: 1px solid rgba(234,122,24,0.3); }
.philosophy-card-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.philosophy-card-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.55; font-weight: 400; }
.philosophy-card-title.red { color: #FCA5A5; }
.philosophy-card-title.green { color: var(--accent); }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 60px 80px;
  background: radial-gradient(circle at 80% 30%, #D2E7FF 0%, var(--primary-bg) 100%);
  clip-path: ellipse(120% 100% at 50% 0%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 75% 55%, rgba(0,182,240,0.12) 0%, transparent 80%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.015;
  background-image: linear-gradient(var(--primary) 1px, transparent 1px),
                    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 650px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(0,182,240,0.25);
  padding: 7px 16px; border-radius: 50px; margin-bottom: 28px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
.hero-badge span { font-size: 12px; font-weight: 600; color: var(--primary-dark); letter-spacing: 1px; text-transform: uppercase; }
.hero-title {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(38px, 4.8vw, 60px); line-height: 1.12;
  margin-bottom: 22px; letter-spacing: -1.2px; color: var(--text-dark);
}
.hero-title .accent { color: var(--primary); }
.hero-title .gold { color: #00B6F0; }
.hero-sub { font-size: 16px; color: var(--text-medium); line-height: 1.7; margin-bottom: 40px; max-width: 540px; font-weight: 400; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary);
  color: white; padding: 14px 28px; border: none; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all .25s; display: flex; align-items: center; gap: 10px;
  text-decoration: none; box-shadow: 0 4px 14px rgba(0,182,240,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,182,240,0.45); }
.btn-secondary {
  background: white; color: var(--primary-dark); padding: 14px 28px;
  border: 1.5px solid var(--gray-200); border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all .25s; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1.5px solid var(--gray-200);
}
.hero-stat-num { font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 700; color: var(--primary-dark); }
.hero-stat-label { font-size: 12px; color: var(--text-muted); font-weight: 400; margin-top: 3px; letter-spacing: 0.5px; }

.hero-visual {
  flex: 1.2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-left: 20px;
}
.hero-phone-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
  height: 580px;
}
.hero-phone-glow {
  position: absolute; width: 300px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(30,86,196,0.15) 0%, transparent 70%);
  filter: blur(30px);
}
.hero-phone {
  width: 260px; height: 520px; background: white;
  border-radius: 36px; border: 2px solid rgba(30,86,196,0.2);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(30,86,196,0.07);
  overflow: hidden; position: relative; z-index: 2;
}
.phone-top { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 20px 16px 12px; }
.phone-greeting { font-size: 10px; color: rgba(255,255,255,0.75); }
.phone-title { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; margin-top: 2px; color: white; }
.phone-card {
  background: white; border: 1px solid rgba(30,86,196,0.1);
  margin: 12px 16px; border-radius: 14px; padding: 14px;
  box-shadow: var(--shadow-sm);
}
.phone-card-name { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.phone-card-grade { font-size: 10px; color: var(--text-muted); margin-bottom: 10px; }
.phone-badges { display: flex; gap: 8px; }
.phone-badge {
  background: var(--primary-bg); border: 1px solid rgba(30,86,196,0.2);
  border-radius: 8px; padding: 6px 10px; text-align: center;
}
.phone-badge-num { font-size: 16px; font-weight: 700; color: var(--primary); }
.phone-badge-label { font-size: 8px; color: var(--text-muted); }
.phone-event { padding: 8px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--gray-100); }
.phone-event-date { background: var(--primary-bg); border-radius: 6px; padding: 4px 8px; text-align: center; min-width: 36px; }
.phone-event-day { font-size: 7px; color: var(--text-muted); }
.phone-event-num { font-size: 14px; font-weight: 700; color: var(--primary); }
.phone-event-detail { flex: 1; }
.phone-event-name { font-size: 10px; font-weight: 600; color: var(--text-dark); }
.phone-event-time { font-size: 9px; color: var(--text-muted); }
.phone-notif {
  margin: 8px 16px; background: var(--accent-pale); border: 1px solid rgba(234,122,24,0.2);
  border-radius: 10px; padding: 10px 12px; display: flex; align-items: center; gap: 8px;
}
.phone-notif-icon { font-size: 16px; }
.phone-notif-text { font-size: 9px; color: #92400E; font-weight: 600; }
.phone-notif-label { font-size: 7px; color: var(--text-muted); }

.hero-float-card {
  position: absolute; background: white;
  border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 18px; backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}
.float-1 { top: 80px; right: 280px; animation: float1 4s ease-in-out infinite; }
.float-2 { bottom: 100px; right: 270px; animation: float2 5s ease-in-out infinite; }
.float-3 { top: 50%; right: 10px; transform: translateY(-50%); animation: float3 6s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes float3 { 0%,100%{transform:translateY(-50%) translateX(0)} 50%{transform:translateY(-50%) translateX(-6px)} }
.float-label { font-size: 9px; color: var(--text-muted); letter-spacing: 0.5px; margin-bottom: 4px; }
.float-value { font-size: 20px; font-weight: 700; color: var(--primary); }
.float-sub { font-size: 9px; color: var(--text-muted); }
.float-ai { display: flex; align-items: center; gap: 8px; }
.float-ai-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 1.5s infinite; }
.float-ai-text { font-size: 11px; font-weight: 600; color: var(--text-dark); }

/* ── TRUSTED ── */
.trusted { padding: 22px 60px; background: var(--gray-50); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trusted-inner { display: flex; align-items: center; gap: 40px; }
.trusted-label { font-size: 11px; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; }
.trusted-divider { width: 1px; height: 24px; background: var(--gray-300); }
.trusted-schools { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.school-name { font-size: 13px; font-weight: 600; color: var(--gray-300); letter-spacing: 0.3px; }

/* ── SECTION BASE ── */
section { padding: 96px 60px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-pale); border: 1px solid rgba(30,86,196,0.25);
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
}
.section-tag span { font-size: 11px; font-weight: 600; color: var(--primary-dark); letter-spacing: 1.5px; text-transform: uppercase; }
.section-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(28px, 3.5vw, 44px); line-height: 1.1; margin-bottom: 16px; color: var(--text-dark); letter-spacing: -0.5px; }
.section-title .accent { color: var(--primary); }
.section-title .gold { color: var(--accent); }
.section-sub { font-size: 17px; color: var(--text-muted); line-height: 1.7; font-weight: 400; max-width: 560px; }

/* ── FEATURES / USP GRID ── */
.features { background: var(--gray-50); }
.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-sub { margin: 0 auto; }
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.usp-card {
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; transition: all .3s; cursor: default; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.usp-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s;
  background: linear-gradient(135deg, rgba(30,86,196,0.04) 0%, transparent 60%);
}
.usp-card:hover { border-color: var(--border-p); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.usp-card:hover::before { opacity: 1; }
.usp-card.featured {
  background: linear-gradient(135deg, var(--primary-bg) 0%, white 100%);
  border-color: rgba(30,86,196,0.22);
}
.usp-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--primary-pale); border: 1px solid rgba(30,86,196,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.usp-icon.gold-icon {
  background: var(--accent-pale); border-color: rgba(234,122,24,0.25);
}
.usp-name { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); letter-spacing: -0.2px; }
.usp-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; font-weight: 400; }
.usp-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.usp-chip {
  background: var(--primary-pale); border: 1px solid rgba(30,86,196,0.15);
  padding: 4px 10px; border-radius: 50px; font-size: 11px; color: var(--primary-dark); font-weight: 500;
}

/* ── HOW IT WORKS ── */
.how { background: white; }
.how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.how-steps { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.how-step { display: flex; gap: 20px; align-items: flex-start; }
.how-step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: white;
  box-shadow: 0 4px 12px rgba(30,86,196,0.3);
}
.how-step-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.how-step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-weight: 400; }
.how-visual {
  background: linear-gradient(135deg, var(--primary-bg) 0%, white 100%);
  border: 1px solid rgba(30,86,196,0.15); border-radius: 24px; padding: 36px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.how-visual-title { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 22px; color: var(--text-dark); }
.module-list { display: flex; flex-direction: column; gap: 10px; }
.module-item {
  display: flex; align-items: center; gap: 14px;
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 14px; transition: all .2s;
  box-shadow: var(--shadow-sm);
}
.module-item:hover { border-color: var(--border-p); background: var(--primary-bg); }
.module-check { width: 20px; height: 20px; border-radius: 50%; background: var(--primary-pale); border: 1px solid rgba(30,86,196,0.3); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--primary); flex-shrink: 0; }
.module-name { font-size: 14px; font-weight: 500; flex: 1; color: var(--text-dark); }
.module-tag { font-size: 9px; background: var(--primary-pale); border: 1px solid rgba(30,86,196,0.2); color: var(--primary-dark); padding: 3px 8px; border-radius: 50px; font-weight: 600; letter-spacing: 0.5px; }
.module-tag.gold { background: var(--accent-pale); border-color: rgba(234,122,24,0.2); color: #92400E; }

/* ── AI SECTION ── */
.ai-section { background: var(--gray-50); position: relative; overflow: hidden; }
.ai-bg-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,86,196,0.06) 0%, transparent 70%);
  top: -80px; right: -80px; pointer-events: none;
}
.ai-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.ai-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ai-feat {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 18px; transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.ai-feat:hover { border-color: var(--border-p); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ai-feat-icon { font-size: 26px; margin-bottom: 10px; }
.ai-feat-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.ai-feat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ── INTEGRATIONS ── */
.integrations { background: white; }
.integ-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.integ-cards { display: flex; flex-direction: column; gap: 14px; }
.integ-card {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: 18px; padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start;
  transition: all .25s; box-shadow: var(--shadow-sm);
}
.integ-card:hover { border-color: var(--border-p); background: white; box-shadow: var(--shadow-md); transform: translateX(5px); }
.integ-logo {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  font-weight: 800; font-family: 'Poppins', sans-serif;
}
.integ-logo.tally { background: #EEF2FF; border: 1px solid rgba(99,102,241,0.2); color: #4F46E5; font-size: 13px; letter-spacing: -0.5px; }
.integ-logo.smart { background: var(--primary-pale); border: 1px solid rgba(30,86,196,0.2); }
.integ-logo.bio { background: var(--accent-pale); border: 1px solid rgba(234,122,24,0.2); }
.integ-title { font-size: 16px; font-weight: 700; margin-bottom: 5px; color: var(--text-dark); }
.integ-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.integ-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.integ-chip { font-size: 10px; background: var(--primary-pale); border: 1px solid rgba(30,86,196,0.15); color: var(--primary-dark); padding: 3px 9px; border-radius: 50px; font-weight: 500; }

/* ── PRICING ── */
.pricing { background: var(--gray-50); }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-note { font-size: 15px; color: var(--text-muted); margin-top: 12px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pricing-card {
  background: white; border: 1px solid var(--border);
  border-radius: 24px; padding: 34px 28px; transition: all .3s; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card.popular {
  background: linear-gradient(135deg, var(--primary-bg) 0%, white 100%);
  border-color: rgba(30,86,196,0.35); transform: scale(1.03);
  box-shadow: var(--shadow-p);
}
.popular-badge {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white; font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 50px;
  letter-spacing: 1px; text-transform: uppercase;
}
.pricing-tier { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.pricing-name { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.pricing-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 24px; }
.pricing-price { margin-bottom: 28px; }
.pricing-amount { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 700; color: var(--text-dark); }
.pricing-unit { font-size: 13px; color: var(--text-muted); margin-left: 4px; }
.pricing-custom { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 700; color: var(--primary); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-medium); }
.pricing-features li::before { content: '✓'; width: 18px; height: 18px; border-radius: 50%; background: var(--primary-pale); border: 1px solid rgba(30,86,196,0.3); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--primary); flex-shrink: 0; }
.pricing-btn {
  width: 100%; padding: 13px; border-radius: 10px; font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 14px; cursor: pointer; transition: all .25s; border: none;
}
.pricing-btn-primary { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; }
.pricing-btn-primary:hover { box-shadow: var(--shadow-p); transform: translateY(-1px); }
.pricing-btn-outline { background: transparent; color: var(--text-dark); border: 1.5px solid var(--gray-200); }
.pricing-btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ── TESTIMONIALS ── */
.testimonials { background: white; }
.testi-header { text-align: center; margin-bottom: 56px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; transition: all .25s; box-shadow: var(--shadow-sm);
}
.testi-card:hover { border-color: var(--border-p); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-star { color: var(--accent-light); font-size: 14px; }
.testi-quote { font-size: 15px; color: var(--text-medium); line-height: 1.7; margin-bottom: 24px; font-weight: 400; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: white;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.testi-school { font-size: 12px; color: var(--text-muted); }

/* ── CTA ── */
.cta-section {
  background: var(--primary-dark);
  text-align: center; padding: 100px 60px; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(234,122,24,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta-section .section-title { font-size: clamp(32px, 5vw, 52px); margin: 0 auto 20px; color: white; }
.cta-section .section-title .accent { color: rgba(255,255,255,0.92); }
.cta-section .section-title .gold { color: var(--accent); }
.cta-section .section-sub { margin: 0 auto 44px; font-size: 18px; color: rgba(255,255,255,0.75); }
.cta-section .section-tag { background: rgba(234,122,24,0.15); border-color: rgba(234,122,24,0.35); display: inline-flex; }
.cta-section .section-tag span { color: var(--accent); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary { background: var(--accent); color: white; box-shadow: none; border: none; }
.cta-section .btn-primary:hover { background: #d46b0e; box-shadow: 0 8px 24px rgba(234,122,24,0.4); }
.cta-section .btn-secondary { background: rgba(255,255,255,0.08); color: white; border-color: rgba(255,255,255,0.25); }
.cta-section .btn-secondary:hover { background: rgba(255,255,255,0.15); color: white; border-color: rgba(255,255,255,0.5); }
.cta-trust { margin-top: 32px; font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ── FOOTER ── */
footer {
  background: #080E1C;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 80px 0;
}
body { background: var(--white); }
.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-brand-logo img { opacity: 1 !important; }
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 400;
  max-width: 320px;
}
.footer-divider {
  width: 40px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 28px;
}
.footer-social { display: flex; align-items: center; gap: 10px; }
.footer-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.22s, color 0.22s, transform 0.22s;
  border: 1px solid rgba(255,255,255,0.09);
}
.footer-social-icon:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30,86,196,0.35);
}
.footer-social-icon svg { width: 18px; height: 18px; }
.footer-col-title {
  font-size: 10px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-links a { color: rgba(255,255,255,0.42); text-decoration: none; font-size: 14px; transition: color .2s, padding-left .2s; display: block; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  background: transparent;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.28); }
.footer-powered { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-powered a { color: var(--primary); text-decoration: none; }
footer .nav-logo-text { color: white; }
footer .nav-logo-sub { color: rgba(255,255,255,0.4); }

/* ── HOSTING ── */
.hosting { background: var(--gray-50); }
.hosting-header { text-align: center; margin-bottom: 60px; }
.hosting-toggle {
  display: inline-flex; background: white; border: 1px solid var(--border);
  border-radius: 50px; padding: 4px; margin: 28px auto 0; gap: 4px; box-shadow: var(--shadow-sm);
}
.hosting-toggle-btn {
  padding: 10px 26px; border-radius: 50px; border: none; font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all .25s; color: var(--text-muted);
  background: transparent; letter-spacing: 0.3px;
}
.hosting-toggle-btn.active { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; box-shadow: var(--shadow-p); }
.hosting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hosting-card {
  background: white; border: 1px solid var(--border);
  border-radius: 24px; padding: 36px 30px; transition: all .3s; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hosting-card::after {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s;
  background: linear-gradient(135deg, rgba(30,86,196,0.03) 0%, transparent 60%);
}
.hosting-card:hover { border-color: var(--border-p); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hosting-card:hover::after { opacity: 1; }
.hosting-card.recommended { border-color: rgba(30,86,196,0.3); background: linear-gradient(135deg, var(--primary-bg) 0%, white 100%); box-shadow: var(--shadow-p); }
.hosting-rec-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white; font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 50px;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px;
}
.hosting-icon { font-size: 34px; margin-bottom: 16px; }
.hosting-name { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.hosting-tagline { font-size: 14px; color: var(--primary); font-weight: 600; margin-bottom: 14px; }
.hosting-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; font-weight: 400; }
.hosting-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.hosting-spec {
  background: var(--gray-50); border: 1px solid var(--border); border-radius: 12px; padding: 12px;
}
.hosting-spec-label { font-size: 10px; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.hosting-spec-val { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.hosting-pros { display: flex; flex-direction: column; gap: 8px; }
.hosting-pro { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-medium); }
.hosting-pro::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.hosting-compare {
  margin-top: 44px; background: white; border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.hosting-compare-title { padding: 22px 28px; border-bottom: 1px solid var(--border); font-size: 16px; font-weight: 700; color: var(--text-dark); }
.hosting-compare-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  padding: 14px 28px; border-bottom: 1px solid rgba(0,0,0,0.04); align-items: center;
}
.hosting-compare-row:last-child { border-bottom: none; }
.hosting-compare-row.header { background: var(--gray-50); }
.hosting-compare-row.header > div { font-size: 12px; font-weight: 700; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }
.hosting-compare-feat { font-size: 14px; color: var(--text-medium); }
.hosting-compare-val { font-size: 13px; text-align: center; }
.hosting-compare-val.yes { color: var(--primary); font-weight: 600; }
.hosting-compare-val.no { color: var(--text-light); }
.hosting-compare-val.partial { color: var(--accent); font-weight: 500; }

/* ── BLOG ── */
.blog { background: var(--gray-50); }
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.blog-all-link { font-size: 14px; color: var(--primary); font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap .2s; }
.blog-all-link:hover { gap: 10px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: white; border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; transition: all .3s; cursor: pointer; text-decoration: none;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.blog-card:hover { border-color: var(--border-p); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 160px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 52px;
}
.blog-thumb.green { background: linear-gradient(135deg, #DBEAFE, #EFF6FF); }
.blog-thumb.gold  { background: linear-gradient(135deg, #FEF3C7, #FFFBEB); }
.blog-thumb.blue  { background: linear-gradient(135deg, #BFDBFE, #DBEAFE); }
.blog-thumb.teal  { background: linear-gradient(135deg, #CCFBF1, #F0FDFA); }
.blog-thumb.purple{ background: linear-gradient(135deg, #EDE9FE, #F5F3FF); }
.blog-thumb.red   { background: linear-gradient(135deg, #FEE2E2, #FFF5F5); }
.blog-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(255,255,255,0.35));
}
.blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: rgba(30,86,196,0.1); border: 1px solid rgba(30,86,196,0.22);
  color: var(--primary-dark); font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 50px;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.blog-cat.gold-cat { background: rgba(234,122,24,0.1); border-color: rgba(234,122,24,0.22); color: #92400E; }
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-date { font-size: 11px; color: var(--text-light); }
.blog-read { font-size: 11px; color: var(--text-light); }
.blog-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-light); }
.blog-title { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; color: var(--text-dark); }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 400; flex: 1; }
.blog-footer { padding: 14px 22px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.blog-author { font-size: 12px; color: var(--text-light); }
.blog-arrow { font-size: 16px; color: var(--primary); transition: transform .2s; }
.blog-card:hover .blog-arrow { transform: translateX(4px); }

/* ── ARTICLE OVERLAY ── */
.article-overlay {
  position: fixed; inset: 0; z-index: 200; background: white;
  overflow-y: auto; display: none; animation: slideUp .35s ease;
}
.article-overlay.open { display: block; }
@keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.article-nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 16px 60px; display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.article-back { display: flex; align-items: center; gap: 8px; color: var(--primary); font-size: 14px; font-weight: 600; cursor: pointer; border: none; background: none; transition: gap .2s; }
.article-back:hover { gap: 12px; }
.article-brand { font-family: 'Poppins', sans-serif; font-size: 18px; letter-spacing: 2px; color: var(--text-dark); }
.article-content { max-width: 720px; margin: 0 auto; padding: 60px 24px 100px; }
.article-cat-tag {
  display: inline-flex; background: var(--primary-pale); border: 1px solid rgba(30,86,196,0.25);
  padding: 5px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; color: var(--primary-dark);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.article-title { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 5vw, 42px); font-weight: 900; line-height: 1.15; margin-bottom: 20px; color: var(--text-dark); }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.article-meta-item { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.article-hero-emoji { font-size: 80px; text-align: center; padding: 40px 0; background: var(--gray-50); border-radius: 20px; margin-bottom: 40px; }
.article-body { font-size: 16px; line-height: 1.85; color: var(--text-medium); font-weight: 400; }
.article-body h2 { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 700; color: var(--text-dark); margin: 48px 0 16px; }
.article-body h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin: 32px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body ul { padding-left: 24px; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.article-body li { color: var(--text-medium); }
.article-body strong { color: var(--text-dark); font-weight: 600; }
.article-body .highlight-box {
  background: var(--primary-pale); border: 1px solid rgba(30,86,196,0.2);
  border-left: 3px solid var(--primary); border-radius: 0 12px 12px 0;
  padding: 20px 24px; margin: 32px 0; font-size: 15px; color: var(--text-medium);
}
.article-body .highlight-box.gold-box { background: var(--accent-pale); border-color: rgba(234,122,24,0.2); border-left-color: var(--accent); }
.article-cta {
  margin-top: 60px; padding: 40px; background: linear-gradient(135deg, var(--primary-bg), var(--primary-pale));
  border: 1px solid rgba(30,86,196,0.2); border-radius: 20px; text-align: center;
}
.article-cta h3 { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.article-cta p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); animation: fadeUp .7s ease forwards; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }

/* ──────────────────────────────────────────────────
   PREMIUM APPLE-STYLE SECTION DESIGN SYSTEM
────────────────────────────────────────────────── */

/* Shared section wrapper */
.apple-section {
  position: relative;
  overflow: hidden;
}

/* Inline section label */
.ap-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.ap-label.orange { color: var(--accent); }

/* Large cinematic headings */
.ap-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.ap-title .g {
  background: linear-gradient(135deg, var(--primary) 20%, #7DB0F0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.ap-title .o {
  background: linear-gradient(135deg, var(--accent) 20%, #F59E0B 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* Body copy under headings */
.ap-body {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.8; font-weight: 400;
  max-width: 540px;
}

/* Frosted glass card */
.ap-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(30,86,196,0.09);
  border-radius: 22px;
  padding: 30px 26px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px -8px rgba(30,86,196,0.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px -12px rgba(30,86,196,0.15);
  border-color: rgba(30,86,196,0.22);
}
.ap-card.accent-border { border-color: rgba(234,122,24,0.1); }
.ap-card.accent-border:hover { border-color: rgba(234,122,24,0.3); box-shadow: 0 20px 48px -12px rgba(234,122,24,0.12); }

/* Icon pill */
.ap-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.ap-icon.blue { background: rgba(30,86,196,0.07); color: var(--primary); }
.ap-icon.orange { background: rgba(234,122,24,0.08); color: var(--accent); }
.ap-icon.dark { background: var(--primary-dark); color: white; }

/* Two-column grid */
.ap-2col {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 80px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}
.ap-2col.reverse { direction: rtl; }
.ap-2col.reverse > * { direction: ltr; }

/* Card grid */
.ap-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ap-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ap-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* Step row */
.ap-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(30,86,196,0.08);
}
.ap-step:last-child { border-bottom: none; }
.ap-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary-pale); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.ap-step-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.ap-step-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* Hamburger Button */
.hamburger-btn {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 110;
}
.hamburger-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: all .3s ease;
}
.hamburger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
  .hamburger-btn { display: flex; }
  nav { padding: 8px 24px !important; }
  .nav-links { display: none; }
  .ap-2col { grid-template-columns: 1fr !important; gap: 40px; }
  .ap-grid-3 { grid-template-columns: 1fr !important; }
  .ap-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .ap-grid-2 { grid-template-columns: 1fr !important; }
  footer { padding: 60px 24px 0 !important; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 36px; padding-bottom: 40px; }
}

@media (max-width: 640px) {
  .ap-grid-4 { grid-template-columns: 1fr !important; }
}

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 105;
  background: white;
  flex-direction: column; overflow-y: auto;
  transform: translateX(100%); transition: transform .3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: flex; transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--border);
}
.mobile-nav-body {
  display: flex; flex-direction: column;
  padding: 16px 24px; gap: 4px; flex: 1;
}
.mobile-nav-link {
  display: flex; align-items: center;
  padding: 14px 16px; border-radius: 10px;
  color: var(--text-medium); text-decoration: none;
  font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: all .2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--primary); background: var(--primary-pale);
}
.mobile-nav-footer {
  padding: 24px; border-top: 1px solid var(--border);
}
.mobile-nav-footer .btn-primary {
  display: block; text-align: center; text-decoration: none; width: 100%;
}
.body-locked { overflow: hidden; }

/* ── AUTHORITY SIGNAL GRID ── */
.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .authority-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .authority-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   MOBILE RESPONSIVE PATCH
   Overrides inline-style padding / display values that block the
   regular cascade on small screens. !important is intentional.
   ───────────────────────────────────────────────────────────── */

/* Ensure .fade-in elements stay visible when device reduces motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 1024px) {
  /* Nav: hide the desktop CTA button */
  .nav-cta { display: none !important; }

  /* Hero */
  .hero-badge { opacity: 1 !important; display: inline-flex !important; }
  .hero-content { opacity: 1 !important; transform: none !important; }
  .hero-visual { display: none !important; }
  section.hero { padding: 140px 24px 80px !important; }

  /* Trusted strip */
  div.trusted { padding-left: 20px !important; padding-right: 20px !important; }

  /* Apple sections: reduce 60px side padding */
  section.apple-section {
    padding-top: 70px !important; padding-bottom: 70px !important;
    padding-left: 24px !important; padding-right: 24px !important;
  }
  /* First page section on hero-less pages must clear the fixed 82px nav */
  body > section.apple-section:first-of-type { padding-top: 110px !important; }

  /* Two-column inner grids that need single-column collapse */
  .philosophy-inner,
  .ai-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
}

@media (max-width: 640px) {
  section.hero { padding: 130px 16px 60px !important; }
  div.trusted { padding-left: 16px !important; padding-right: 16px !important; }
  section.apple-section {
    padding-top: 56px !important; padding-bottom: 56px !important;
    padding-left: 16px !important; padding-right: 16px !important;
  }
  body > section.apple-section:first-of-type { padding-top: 100px !important; }
  footer { padding: 48px 16px 0 !important; }
}

@media (max-width: 480px) {
  section.hero { padding: 120px 12px 40px !important; }
  div.trusted { padding-left: 12px !important; padding-right: 12px !important; }
  section.apple-section { padding-left: 12px !important; padding-right: 12px !important; }
  body > section.apple-section:first-of-type { padding-top: 100px !important; }
  footer { padding: 40px 12px 0 !important; }
}

/* ── BREADCRUMB (shared across for-schools, for-universities, features, pricing, contact) ── */
@media (max-width: 1024px) {
  .breadcrumb { padding: 12px 20px !important; }
  .filter-container { padding: 16px 20px !important; }
  .cta-section { padding: 80px 24px !important; }
}

@media (max-width: 640px) {
  .cta-section { padding: 60px 20px !important; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary,
  .cta-actions .btn-secondary { width: 100%; max-width: 360px; justify-content: center; text-align: center; }
}
