/* ═══════════════════════════════════════════════
   Rahul Gautam MBA Consulting — Main Stylesheet
   Zero external dependencies. Everything visible by default.
   ═══════════════════════════════════════════════ */

:root {
    --navy: #0a1628;
    --navy-light: #132038;
    --gold: #c9a84c;
    --gold-light: #e2c672;
    --cream: #faf8f2;
    --white: #ffffff;
    --gray-100: #f7f7f8;
    --gray-200: #e8e8ec;
    --gray-400: #9999a7;
    --gray-600: #5c5c6d;
    --gray-800: #2d2d3a;
    --success: #2ecc71;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --section-padding: 100px 0;
    --radius: 16px;
    --shadow-sm: 0 2px 12px rgba(10,22,40,0.06);
    --shadow-md: 0 12px 40px rgba(10,22,40,0.08);
    --shadow-lg: 0 20px 60px rgba(10,22,40,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}
img { max-width: 100%; height: auto; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ─── NAVIGATION ─── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: background 0.3s;
}
nav .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--white); text-decoration: none; letter-spacing: -0.02em; }
.nav-logo span { color: var(--gold); }
/* Primary contact: always visible in header (tap-to-call on mobile) */
.nav-phone {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.84rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    padding: 8px 6px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.nav-phone:hover { color: var(--gold-light); background: rgba(201,168,76,0.1); }
.nav-linkedin {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; min-width: 38px; max-width: 38px;
    height: 38px; min-height: 38px; max-height: 38px;
    border-radius: 5px; padding: 0; overflow: hidden;
    background: #0a66c2; border: none;
    color: #fff; font-weight: 700; font-size: 1.1rem;
    text-decoration: none; margin-left: 10px; font-style: normal;
    transition: all 0.2s; letter-spacing: 0;
    line-height: 1; flex-shrink: 0; flex-grow: 0;
}
.nav-linkedin:hover { background: #004182; }
.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.94rem; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
/* position:relative + z-index fixes CTA corner clipping from nav backdrop-filter */
.nav-cta {
    background: var(--gold) !important; color: var(--navy) !important;
    padding: 10px 22px; border-radius: 6px; font-weight: 600 !important;
    transition: all 0.2s !important; white-space: nowrap;
    position: relative; z-index: 2;
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: var(--navy); padding: 16px 36px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    transition: all 0.25s; border: none; cursor: pointer; font-family: var(--font-sans);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.btn-primary:active { transform: scale(0.97); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white); padding: 16px 36px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    border: 1.5px solid rgba(255,255,255,0.25); transition: all 0.25s; cursor: pointer; font-family: var(--font-sans);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-secondary {
    padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 0.92rem; cursor: pointer;
    border: 1.5px solid var(--gray-200); background: var(--white); color: var(--gray-600);
    transition: all 0.2s; font-family: var(--font-sans);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--navy); }

/* ─── HERO ─── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a2d4a 100%);
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding: 120px 0 60px;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after { display: none; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
    padding: 8px 18px; border-radius: 100px;
    font-size: 0.82rem; font-weight: 600; color: var(--gold);
    letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.2); }
    50% { box-shadow: 0 0 20px 4px rgba(201,168,76,0.15); }
}
.hero h1 { font-family: var(--font-serif); font-size: 3.4rem; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.02em; }
.hero h1 .highlight {
    color: var(--gold); display: block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), #f0d98c, var(--gold));
    background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 32px; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; z-index: 2; display: flex; justify-content: center; }
.hero-image-wrapper { position: relative; width: 380px; height: 470px; }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.hero-image-wrapper::after { content: ''; position: absolute; inset: -8px; border: 2px solid rgba(201,168,76,0.2); border-radius: 20px; pointer-events: none; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat h3 { font-family: var(--font-serif); font-size: 2.2rem; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.hero-stat p { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

/* ─── SECTION HEADINGS ─── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.section-title { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.02em; }
.section-subtitle { font-size: 1.08rem; color: var(--gray-600); line-height: 1.8; }

/* ─── JOURNEY ─── */
.journey { padding: var(--section-padding); background: var(--white); }
.journey-quote-centered { max-width: 640px; margin: 0 auto; }
.journey-card { background: var(--navy); border-radius: 20px; padding: 48px; position: relative; overflow: hidden; text-align: center; }
.journey-card::before { content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 200px; background: radial-gradient(circle, rgba(201,168,76,0.15), transparent); }
.journey-card blockquote { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); line-height: 1.6; font-style: italic; position: relative; z-index: 1; }
.journey-card blockquote::before { content: '\201C'; font-size: 5rem; color: var(--gold); position: absolute; top: -30px; left: 50%; transform: translateX(-50%); font-family: var(--font-serif); line-height: 1; opacity: 0.4; }
.journey-card .attribution { margin-top: 24px; color: var(--gold); font-weight: 600; font-size: 0.9rem; position: relative; z-index: 1; }

/* ─── SELECTIVITY ─── */
.selectivity {
    padding: var(--section-padding);
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.selectivity::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.selectivity-inner { position: relative; max-width: 800px; margin: 0 auto; text-align: center; }
.selectivity-badge {
    display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold); border: 1.5px solid var(--gold);
    padding: 8px 24px; border-radius: 30px; margin-bottom: 32px;
}
.selectivity-heading {
    font-family: var(--font-serif); font-size: 2.6rem; color: var(--white);
    line-height: 1.25; margin-bottom: 36px; font-weight: 700;
}
.selectivity-body { text-align: left; }
.selectivity-body p {
    color: rgba(255,255,255,0.82); font-size: 1.05rem; line-height: 1.85;
    margin-bottom: 20px;
}
.selectivity-body strong { color: var(--gold); font-weight: 600; }
.selectivity-body em { color: rgba(255,255,255,0.95); font-style: italic; }

/* ─── SERVICES ─── */
.services { padding: var(--section-padding); background: var(--gray-100); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 40px 32px; transition: all 0.3s ease; border: 1px solid var(--gray-200); position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 24px; }
.service-card h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy); margin-bottom: 14px; font-weight: 600; }
.service-card p { color: var(--gray-600); font-size: 0.94rem; line-height: 1.7; }
.service-card ul { list-style: none; margin-top: 16px; }
.service-card ul li { padding: 6px 0; font-size: 0.9rem; color: var(--gray-600); position: relative; padding-left: 20px; }
.service-card ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ─── PROCESS ─── */
.process { padding: var(--section-padding); background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 60px; right: 60px; height: 2px; background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.2)); }
.process-step { text-align: center; position: relative; }
.step-number { width: 80px; height: 80px; background: var(--navy); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; margin: 0 auto 24px; position: relative; z-index: 2; border: 4px solid var(--white); box-shadow: 0 4px 20px rgba(10,22,40,0.15); }
.process-step h3 { font-family: var(--font-serif); font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.process-step p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* ─── SCHOOLS ─── */
.schools { padding: var(--section-padding); background: var(--navy); }
.schools .section-title { color: var(--white); }
.schools .section-subtitle { color: rgba(255,255,255,0.6); }
.schools-logos { overflow: hidden; }
.schools-track { display: flex; gap: 20px; width: max-content; animation: marqueeScroll 35s linear infinite; }
.schools-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.school-logo-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 28px 20px; text-align: center; transition: all 0.3s; min-width: 160px; flex-shrink: 0; }
.school-logo-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.school-initial { width: 52px; height: 52px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin: 0 auto 14px; }
.school-logo-card h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.school-logo-card p { color: rgba(255,255,255,0.4); font-size: 0.78rem; }


/* ─── TESTIMONIALS ─── */
.testimonials { padding: var(--section-padding); background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { padding: 36px; border-radius: var(--radius); background: var(--gray-100); border: 1px solid var(--gray-200); transition: all 0.3s; }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testimonial-author h4 { font-size: 0.92rem; color: var(--navy); font-weight: 600; }
.testimonial-author span { font-size: 0.8rem; color: var(--gray-400); }


/* ─── FEATURED TESTIMONIAL (Rahul Gautam) ─── */
.featured-testimonial {
    margin-top: 48px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px;
    background: var(--navy); border-radius: var(--radius); padding: 48px; align-items: start;
    position: relative; overflow: hidden;
}
.featured-testimonial::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.featured-testimonial-content { position: relative; z-index: 1; }
.featured-testimonial-content .stars { color: var(--gold); }
.featured-testimonial-content p {
    color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.8;
    font-style: italic; margin-bottom: 24px;
}
.featured-testimonial-content .testimonial-author { display: flex; align-items: center; gap: 14px; }
.featured-avatar {
    width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--gold);
}
.featured-testimonial-content .testimonial-author h4 { color: var(--white); font-size: 1rem; }
.featured-testimonial-content .testimonial-author span { color: var(--gold); font-size: 0.82rem; }
.featured-linkedin {
    display: inline-block; margin-top: 6px; font-size: 0.78rem; color: #5eb5f7;
    text-decoration: none; font-style: normal; font-weight: 500;
    transition: color 0.2s;
}
.featured-linkedin:hover { color: #fff; text-decoration: underline; }

.featured-testimonial-proof {
    position: relative; z-index: 1; display: flex; flex-direction: column; gap: 16px;
}
.proof-letter {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px; padding: 12px; text-align: center;
}
.proof-badge {
    display: inline-block; font-size: 0.72rem; font-weight: 600; color: var(--gold);
    letter-spacing: 0.5px; margin-bottom: 8px;
}
.proof-letter img { width: 100%; border-radius: 8px; opacity: 0.92; }

/* ─── FAQ ─── */
.faq { padding: var(--section-padding); background: var(--gray-100); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 12px; margin-bottom: 12px; border: 1px solid var(--gray-200); overflow: hidden; transition: all 0.3s; }
.faq-item:hover { border-color: rgba(201,168,76,0.3); }
.faq-question { width: 100%; background: none; border: none; padding: 24px 28px; text-align: left; font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-sans); }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--gold); font-weight: 300; transition: transform 0.3s; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 28px 24px; color: var(--gray-600); font-size: 0.94rem; line-height: 1.7; }

/* ─── CALCULATOR ─── */
.calculator { padding: var(--section-padding); background: var(--white); }
.calc-wrap { max-width: 740px; margin: 0 auto; }
.calc-card { background: var(--gray-100); border-radius: 20px; padding: 48px; border: 1px solid var(--gray-200); }
.calc-step-panel h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }
.calc-step-panel > p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 24px; line-height: 1.6; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 6px; }
.form-group label .field-optional { font-weight: 500; font-size: 0.8em; color: var(--gray-600); text-transform: lowercase; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 8px;
    font-family: var(--font-sans); font-size: 0.92rem; background: var(--white); color: var(--gray-800); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row .form-group-full { grid-column: 1 / -1; }

/* Step indicator */
.calc-steps { margin-bottom: 32px; }
.calc-step-indicator { display: flex; align-items: center; justify-content: center; gap: 0; }
.calc-dot {
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; font-weight: 700; border: 2px solid var(--gray-200); color: var(--gray-400);
    background: var(--white); transition: all 0.3s; flex-shrink: 0;
}
.calc-dot.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.calc-dot.done { background: var(--success); color: var(--white); border-color: var(--success); }
.calc-dot-line { width: 48px; height: 2px; background: var(--gray-200); transition: background 0.3s; }
.calc-dot-line.done { background: var(--success); }

/* Results */
.calc-result { margin-top: 28px; }
.calc-result-header { text-align: center; margin-bottom: 28px; }
.calc-result-header h4 { font-family: var(--font-serif); color: var(--navy); font-size: 1.4rem; margin-bottom: 4px; }
.calc-result-header .score-big { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; margin: 8px 0; }
.calc-result-header .score-big.high { color: var(--success); }
.calc-result-header .score-big.medium { color: var(--gold); }
.calc-result-header .score-big.low { color: #e74c3c; }
.calc-result-header .score-label { font-size: 0.88rem; color: var(--gray-600); }

.chance-bar { height: 10px; background: var(--gray-200); border-radius: 5px; overflow: hidden; margin-bottom: 6px; }
.chance-fill { height: 100%; border-radius: 5px; transition: width 1s ease; }
.chance-fill.high { background: var(--success); }
.chance-fill.medium { background: var(--gold); }
.chance-fill.low { background: #e74c3c; }

/* Factor breakdown */
.calc-factors { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.calc-factor { background: var(--white); border-radius: 10px; padding: 16px; border: 1px solid var(--gray-200); }
.calc-factor-label { font-size: 0.78rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.calc-factor-bar { height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; margin-bottom: 4px; }
.calc-factor-fill { height: 100%; border-radius: 3px; transition: width 0.8s ease; }
.calc-factor-score { font-size: 0.82rem; color: var(--gray-600); font-weight: 500; }

/* School recommendations */
.calc-schools { margin: 24px 0; }
.calc-schools h5 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 14px; }
.calc-school-row { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--white); border-radius: 8px; margin-bottom: 8px; border: 1px solid var(--gray-200); }
.calc-school-badge { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.calc-school-badge.reach { background: rgba(231,76,60,0.1); color: #e74c3c; }
.calc-school-badge.target { background: rgba(201,168,76,0.12); color: var(--gold); }
.calc-school-badge.safe { background: rgba(46,204,113,0.12); color: var(--success); }
.calc-school-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); flex: 1; }
.calc-school-chance { font-size: 0.78rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.calc-school-chance.reach { background: rgba(231,76,60,0.08); color: #e74c3c; }
.calc-school-chance.target { background: rgba(201,168,76,0.1); color: #b8941e; }
.calc-school-chance.safe { background: rgba(46,204,113,0.1); color: #1e8449; }

/* Strengths & improvements */
.calc-insights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.calc-insight-box { padding: 18px; border-radius: 10px; }
.calc-insight-box.strengths { background: rgba(46,204,113,0.06); border: 1px solid rgba(46,204,113,0.15); }
.calc-insight-box.improvements { background: rgba(231,76,60,0.04); border: 1px solid rgba(231,76,60,0.12); }
.calc-insight-box h5 { font-size: 0.85rem; font-weight: 700; margin-bottom: 10px; }
.calc-insight-box.strengths h5 { color: #1e8449; }
.calc-insight-box.improvements h5 { color: #c0392b; }
.calc-insight-box ul { list-style: none; padding: 0; }
.calc-insight-box li { font-size: 0.85rem; color: var(--gray-600); padding: 4px 0 4px 18px; position: relative; line-height: 1.5; }
.calc-insight-box.strengths li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.calc-insight-box.improvements li::before { content: '→'; position: absolute; left: 0; color: #e74c3c; font-weight: 700; }

.calc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.calc-tag { display: inline-block; background: rgba(201,168,76,0.1); color: var(--gold); font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; }

.calc-disclaimer { font-size: 0.78rem; color: var(--gray-400); margin-top: 20px; line-height: 1.6; text-align: center; }
.calc-disclaimer a { color: var(--gold); text-decoration: none; font-weight: 600; }
.calc-disclaimer a:hover { text-decoration: underline; }

/* ─── CTA ─── */
.cta-section { padding: 100px 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a2d4a 100%); background-size: 200% 200%; animation: ctaGradient 8s ease infinite; text-align: center; position: relative; overflow: hidden; }
@keyframes ctaGradient { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.cta-section::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,0.1), transparent); }
.cta-section h2 { font-family: var(--font-serif); font-size: 2.8rem; color: var(--white); margin-bottom: 20px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-section .btn-primary { position: relative; animation: ctaPulse 2.5s ease-in-out infinite; }
@keyframes ctaPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(201,168,76,0.2); }
    50% { transform: scale(1.04); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
}

/* ─── FOOTER ─── */
footer { background: #060e1a; padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--white); margin-bottom: 16px; }
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; font-weight: 600; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.9rem; padding: 6px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.2s; font-size: 0.9rem; }
.footer-social a:hover { background: var(--gold); color: var(--navy); }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; text-decoration: none; font-size: 1.6rem; color: white; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }

/* ─── BOOKING MODAL ─── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(10,22,40,0.6); backdrop-filter: blur(8px); z-index: 2000; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal-overlay.open { overscroll-behavior: contain; }
.modal { background: var(--white); border-radius: 20px; padding: 48px 40px; max-width: 520px; width: 90%; max-height: 90vh; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; position: relative; }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gray-400); padding: 4px; }
.modal-close:hover { color: var(--navy); }
.modal h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.modal > p { color: var(--gray-600); font-size: 0.92rem; margin-bottom: 28px; }
.success-view { text-align: center; padding: 30px 0; }
.success-check { width: 64px; height: 64px; border-radius: 50%; background: rgba(46,204,113,0.12); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; }
.hidden { display: none !important; }

/* ─── SOCIAL PROOF TICKER ─── */
.social-ticker { background: var(--navy); padding: 12px 0; overflow: hidden; }
.ticker-track { display: flex; gap: 48px; width: max-content; animation: ticker 25s linear infinite; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 500; }
.ticker-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ─── GLOBAL MOBILE HELPERS ─── */
html { -webkit-text-size-adjust: 100%; }
body { -webkit-tap-highlight-color: transparent; }
a, button, input, select, textarea { touch-action: manipulation; }
button, a { min-height: 44px; }

/* ─── RESPONSIVE — TABLET (≤ 1024px) ─── */
@media (max-width: 1024px) {
    :root { --section-padding: 72px 0; }
    .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero h1 { font-size: 2.8rem; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .hero-image-wrapper { width: 300px; height: 380px; margin: 0 auto; }
    .hero-stats { justify-content: center; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .featured-testimonial { grid-template-columns: 1fr 1fr; padding: 36px; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── RESPONSIVE — MOBILE (≤ 768px) ─── */
@media (max-width: 768px) {
    :root { --section-padding: 56px 0; }
    .container { padding: 0 16px; }

    /* Selectivity */
    .selectivity-heading { font-size: 1.8rem; }
    .selectivity-body p { font-size: 0.95rem; }
    .selectivity-badge { font-size: 0.7rem; padding: 6px 18px; letter-spacing: 2px; }

    /* Nav */
    .nav-links { display: none; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
        background: var(--navy); padding: 20px 16px; gap: 4px;
        border-bottom: 1px solid rgba(201,168,76,0.15);
        max-height: calc(100vh - 72px); overflow-y: auto; -webkit-overflow-scrolling: touch;
    }
    .nav-links.active li { width: 100%; }
    .nav-links.active a { display: flex; align-items: center; padding: 14px 16px; border-radius: 8px; font-size: 0.95rem; }
    .nav-links.active a:hover, .nav-links.active a:active { background: rgba(255,255,255,0.06); }
    .nav-links.active .nav-cta { justify-content: center; margin-top: 8px; }
    .nav-phone { font-size: 0.74rem; padding: 6px 4px; letter-spacing: 0.01em; }
    .mobile-toggle { display: block; }

    /* Hero */
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero h1 { font-size: 2rem; }
    .hero-badge { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 20px; display: inline-block; line-height: 1.5; border-radius: 12px; text-align: center; }
    .hero-desc { font-size: 0.95rem; margin-bottom: 24px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .hero-buttons .btn-primary, .hero-buttons .btn-outline { width: 100%; justify-content: center; padding: 14px 24px; }
    .hero-image-wrapper { width: 240px; height: 300px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; margin-top: 28px; padding-top: 20px; }
    .hero-stat h3 { font-size: 1.4rem; }
    .hero-stat p { font-size: 0.68rem; }

    /* Section headings */
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 0.95rem; }
    .section-header { margin-bottom: 40px; }

    /* Journey */
    .journey-card { padding: 32px 24px; }
    .journey-card blockquote { font-size: 1.2rem; }
    .journey-card blockquote::before { font-size: 3.5rem; top: -20px; }

    /* Services, Process */
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 28px 24px; }
    .process-steps { grid-template-columns: 1fr; gap: 24px; }
    .step-number { width: 64px; height: 64px; font-size: 1.4rem; }

    /* Testimonials */
    .testimonial-card { padding: 28px 24px; }
    .featured-testimonial { grid-template-columns: 1fr; padding: 28px 20px; gap: 28px; }
    .featured-testimonial-content p { font-size: 0.92rem; }
    .featured-avatar { width: 48px; height: 48px; }
    .featured-testimonial-proof { flex-direction: row; gap: 12px; }
    .proof-letter { padding: 10px; flex: 1; }
    .proof-badge { font-size: 0.65rem; }

    /* Calculator & Forms */
    .calc-card { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .form-group input, .form-group select, .form-group textarea { font-size: 16px; }
    .calc-factors { grid-template-columns: 1fr; }
    .calc-insights { grid-template-columns: 1fr; }
    .calc-result-header .score-big { font-size: 2.4rem; }

    /* FAQ */
    .faq-question { padding: 18px 16px; font-size: 0.92rem; gap: 12px; }
    .faq-question::after { flex-shrink: 0; }
    .faq-answer-inner { padding: 0 16px 20px; }

    /* CTA */
    .cta-section { padding: 64px 0; }
    .cta-section h2 { font-size: 1.8rem; }
    .cta-section p { font-size: 0.95rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    /* Modal */
    .modal { padding: 32px 20px; width: 94%; border-radius: 16px; }
    .modal h3 { font-size: 1.2rem; }

    /* Social ticker */
    .social-ticker { padding: 8px 0; }
    .ticker-item { font-size: 0.72rem; }

    /* WhatsApp float — avoid overlap with content */
    .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
}

/* ─── RESPONSIVE — SMALL MOBILE (≤ 480px) ─── */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .hero { padding: 88px 0 48px; }
    .hero h1 { font-size: 1.7rem; line-height: 1.2; }
    .hero-badge { font-size: 0.62rem; padding: 5px 12px; letter-spacing: 0.02em; display: inline-block; line-height: 1.5; border-radius: 10px; }
    .hero-desc { font-size: 0.88rem; line-height: 1.65; }
    .hero-image-wrapper { width: 200px; height: 260px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hero-stat h3 { font-size: 1.3rem; }
    .hero-stat p { font-size: 0.65rem; letter-spacing: 0.05em; }

    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.88rem; }
    .section-label { font-size: 0.72rem; }

    .journey-card { padding: 24px 18px; }
    .journey-card blockquote { font-size: 1.05rem; }
    .journey-card blockquote::before { font-size: 3rem; top: -16px; }

    .service-card { padding: 24px 18px; }
    .service-card h3 { font-size: 1.1rem; }
    .service-card p, .service-card ul li { font-size: 0.85rem; }

    /* Selectivity */
    .selectivity-heading { font-size: 1.45rem; line-height: 1.3; }
    .selectivity-body p { font-size: 0.88rem; line-height: 1.75; }
    .selectivity-badge { font-size: 0.65rem; padding: 5px 14px; letter-spacing: 1.5px; margin-bottom: 24px; }

    /* Testimonials */
    .testimonial-card p { font-size: 0.88rem; }
    .testimonial-author h4 { font-size: 0.9rem; }
    .testimonial-author span { font-size: 0.78rem; }

    /* Featured testimonial — tiny screens */
    .featured-testimonial { padding: 24px 16px; gap: 24px; }
    .featured-testimonial-content p { font-size: 0.88rem; line-height: 1.7; }
    .featured-testimonial-proof { flex-direction: column; }
    .proof-badge { font-size: 0.62rem; }

    .cta-section h2 { font-size: 1.5rem; }
    .cta-section p { font-size: 0.88rem; }

    .faq-question { font-size: 0.86rem; padding: 16px 14px; }
    .faq-answer-inner { font-size: 0.86rem; padding: 0 14px 16px; }

    .calc-card { padding: 24px 16px; }
    .calc-card h3 { font-size: 1.1rem; }
    .form-group label { font-size: 0.82rem; }
    .form-group input, .form-group select, .form-group textarea { font-size: 16px; padding: 10px 14px; }

    .modal { padding: 28px 16px; width: 96%; }

    .footer-brand p { font-size: 0.82rem; }
    .footer-col a { font-size: 0.82rem; }

    .btn-primary, .btn-outline { font-size: 0.88rem; padding: 14px 24px; }
    .btn-secondary { font-size: 0.85rem; padding: 12px 20px; }
}

/* ─── SAFE AREA (notched iPhones) ─── */
@supports (padding: env(safe-area-inset-top)) {
    .social-ticker { padding-top: calc(8px + env(safe-area-inset-top)); }
    nav { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
    .whatsapp-float { bottom: calc(16px + env(safe-area-inset-bottom)); right: calc(16px + env(safe-area-inset-right)); }
    footer { padding-bottom: calc(32px + env(safe-area-inset-bottom)); }
    .modal { padding-bottom: calc(32px + env(safe-area-inset-bottom)); }
}

/* ─── LANDSCAPE MOBILE ─── */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 88px 0 40px; }
    .hero .container { gap: 24px; }
    .hero-image-wrapper { width: 160px; height: 200px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ─── HOVER-CAPABLE ONLY (prevents sticky hovers on touch) ─── */
@media (hover: none) {
    .service-card:hover { transform: none; box-shadow: var(--shadow-sm); border-color: var(--gray-200); }
    .service-card:hover::before { transform: scaleX(0); }
    .school-logo-card:hover { transform: none; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); }
    .testimonial-card:hover { box-shadow: none; }
    .faq-item:hover { border-color: var(--gray-200); }
}
