/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --color-navy: #0F4C75;
    --color-navy-dark: #0A3759;
    --color-navy-deep: #082A45;
    --color-orange: #F2A03D;
    --color-orange-dark: #E08A1F;
    --color-orange-light: #FCE4C1;
    --color-cream: #FAF7F2;
    --color-white: #FFFFFF;
    --color-slate-900: #0F172A;
    --color-slate-700: #334155;
    --color-slate-500: #64748B;
    --color-slate-300: #CBD5E1;
    --color-slate-100: #F1F5F9;
    --color-slate-50: #F8FAFC;
    --color-success: #10B981;
    --color-danger: #EF4444;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(15, 76, 117, 0.08);
    --shadow-md: 0 8px 24px rgba(15, 76, 117, 0.10);
    --shadow-lg: 0 20px 60px rgba(15, 76, 117, 0.15);
    --shadow-orange: 0 12px 32px rgba(242, 160, 61, 0.35);

    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-slate-700);
    background: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-navy-deep);
    letter-spacing: -0.02em;
}

/* ============================================
   COUNTDOWN BANNER
   ============================================ */
.countdown-banner {
    background: linear-gradient(90deg, var(--color-navy-deep) 0%, var(--color-navy) 50%, var(--color-navy-deep) 100%);
    color: var(--color-white);
    padding: 10px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.countdown-banner strong {
    color: var(--color-orange);
    font-weight: 700;
}

.countdown-banner #countdown {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
    .countdown-banner {
        font-size: 12px;
    }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-navy);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
}

.logo img {
    height: 56px;
    width: auto;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    color: var(--color-white);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone svg {
    width: 18px;
    height: 18px;
    color: var(--color-orange);
}

.btn-primary {
    background: var(--color-orange);
    color: var(--color-navy-deep);
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-orange-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
}

.btn-secondary:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .logo img {
        height: 44px;
    }

    .header-phone {
        display: none;
    }

    .btn-primary {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    color: var(--color-white);
    padding: 64px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 160, 61, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 160, 61, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 160, 61, 0.15);
    color: var(--color-orange);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(242, 160, 61, 0.3);
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    background: var(--color-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero h1 .highlight {
    color: var(--color-orange);
    font-style: italic;
    font-weight: 700;
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 540px;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.hero-bullet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
}

.hero-bullet svg {
    width: 16px;
    height: 16px;
    color: var(--color-orange);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.btn-hero {
    background: var(--color-orange);
    color: var(--color-navy-deep);
    padding: 18px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-orange);
    transition: all 0.25s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(242, 160, 61, 0.45);
}

.btn-hero-ghost {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-trust .star {
    color: var(--color-orange);
}

.hero-trust .divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero form */
.hero-form {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    position: relative;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100px;
    height: 100px;
    background: var(--color-orange);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.6;
}

.form-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-navy-deep);
    margin-bottom: 6px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 14px;
    color: var(--color-slate-500);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-slate-700);
    margin-bottom: 6px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--color-slate-300);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    color: var(--color-slate-900);
    background: var(--color-white);
    transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(242, 160, 61, 0.15);
}

.form-submit {
    width: 100%;
    background: var(--color-navy);
    color: var(--color-white);
    padding: 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    margin-top: 8px;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit:hover {
    background: var(--color-navy-deep);
    transform: translateY(-1px);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--color-slate-500);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

.form-disclaimer .check {
    color: var(--color-success);
    font-weight: 700;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-form {
        padding: 24px;
    }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--color-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--color-slate-100);
}

.trust-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
    opacity: 0.7;
}

.trust-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--color-slate-500);
    letter-spacing: -0.02em;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.trust-logo:hover {
    filter: grayscale(0%);
    color: var(--color-navy);
}

@media (max-width: 640px) {
    .trust-logos {
        gap: 28px;
    }

    .trust-logo {
        font-size: 16px;
    }
}

/* ============================================
   SECTION DEFAULTS
   ============================================ */
section {
    padding: 80px 0;
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    background: var(--color-orange-light);
    color: var(--color-orange-dark);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
    max-width: 800px;
}

.section-title em {
    color: var(--color-orange);
    font-style: italic;
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-slate-500);
    max-width: 700px;
    margin-bottom: 48px;
}

.section-header {
    text-align: center;
}

.section-header .section-title,
.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    section {
        padding: 56px 0;
    }
}

/* ============================================
   WHY US (USPs)
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--color-white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-slate-100);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-orange);
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--color-slate-500);
    line-height: 1.6;
}

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

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

/* ============================================
   COURSES
   ============================================ */
.courses-section {
    background: var(--color-slate-50);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.course-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-slate-100);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-orange);
}

.course-header {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
    padding: 28px;
    color: var(--color-white);
    position: relative;
}

.course-badge {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-navy-deep);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.course-card h3 {
    color: var(--color-white);
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.course-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.course-body {
    padding: 24px 28px;
    flex: 1;
}

.course-meta {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-slate-100);
    margin-bottom: 20px;
}

.course-meta-item {
    flex: 1;
}

.course-meta-label {
    font-size: 11px;
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.course-meta-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy-deep);
    margin-top: 2px;
}

.course-features {
    list-style: none;
    margin-bottom: 24px;
}

.course-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-slate-700);
    margin-bottom: 10px;
}

.course-features svg {
    width: 18px;
    height: 18px;
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 1px;
}

.course-cta {
    padding: 0 28px 28px;
}

.course-cta button {
    width: 100%;
    background: var(--color-navy);
    color: var(--color-white);
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
}

.course-cta button:hover {
    background: var(--color-orange);
    color: var(--color-navy-deep);
}

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

/* ============================================
   TOOLS GRID
   ============================================ */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.tool-chip {
    background: var(--color-white);
    border: 1px solid var(--color-slate-100);
    padding: 18px 12px;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-slate-700);
    transition: all 0.2s ease;
}

.tool-chip:hover {
    border-color: var(--color-orange);
    color: var(--color-navy);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 540px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   PLACEMENT SECTION
   ============================================ */
.placement-section {
    background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.placement-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 160, 61, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.placement-section .section-title {
    color: var(--color-white);
}

.placement-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.placement-section .section-eyebrow {
    background: rgba(242, 160, 61, 0.2);
    color: var(--color-orange);
}

.placement-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--color-orange);
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.placements-title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--color-white);
    margin-bottom: 32px;
    text-align: center;
}

.placements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.placement-card {
    background: var(--color-white);
    color: var(--color-slate-900);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
}

.placement-avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-white);
}

.placement-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-navy-deep);
    margin-bottom: 4px;
}

.placement-role {
    font-size: 13px;
    color: var(--color-slate-500);
    margin-bottom: 12px;
}

.placement-company {
    display: inline-block;
    background: var(--color-slate-50);
    color: var(--color-navy);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.placement-package {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-orange-dark);
}

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

    .placements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .placement-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .placements-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PLACEMENT PROCESS
   ============================================ */
.process-section {
    background: var(--color-cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--color-slate-300) 0, var(--color-slate-300) 8px, transparent 8px, transparent 16px);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--color-white);
    border: 3px solid var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-navy-deep);
    box-shadow: var(--shadow-md);
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-navy-deep);
}

.process-step p {
    font-size: 14px;
    color: var(--color-slate-500);
    line-height: 1.6;
}

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

    .process-grid::before {
        display: none;
    }
}

/* ============================================
   FACULTY
   ============================================ */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.faculty-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--color-slate-100);
    transition: all 0.3s ease;
}

.faculty-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.faculty-photo {
    width: 96px;
    height: 96px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-orange);
    border: 4px solid var(--color-orange-light);
}

.faculty-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.faculty-credential {
    display: inline-block;
    background: var(--color-orange-light);
    color: var(--color-orange-dark);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faculty-experience {
    font-size: 14px;
    color: var(--color-slate-500);
    margin-bottom: 16px;
}

.faculty-companies {
    font-size: 13px;
    color: var(--color-slate-700);
    font-weight: 600;
}

@media (max-width: 900px) {
    .faculty-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--color-slate-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-slate-100);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 96px;
    color: var(--color-orange-light);
    line-height: 1;
}

.testimonial-stars {
    color: var(--color-orange);
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-slate-700);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--color-slate-100);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 18px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-navy-deep);
}

.testimonial-role {
    font-size: 13px;
    color: var(--color-slate-500);
}

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

/* ============================================
   FEES
   ============================================ */
.fees-card {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.fees-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.fees-card-inner {
    position: relative;
    z-index: 1;
}

.fees-offer-tag {
    display: inline-block;
    background: var(--color-navy-deep);
    color: var(--color-orange);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fees-card h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--color-white);
    margin-bottom: 16px;
}

.fees-card p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 600px;
}

.fees-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}

.fees-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
}

.fees-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.fees-cta {
    background: var(--color-navy-deep);
    color: var(--color-white);
    padding: 18px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.fees-cta:hover {
    background: var(--color-white);
    color: var(--color-navy-deep);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .fees-card {
        padding: 36px 24px;
    }

    .fees-features {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table-wrap {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: var(--color-navy-deep);
    color: var(--color-white);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--color-slate-100);
}

.comparison-table th {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}

.comparison-table th.feature-col {
    text-align: left;
}

.comparison-table th.iota-col {
    background: var(--color-orange);
    color: var(--color-navy-deep);
    position: relative;
}

.comparison-table td.feature-cell {
    font-weight: 600;
    color: var(--color-navy-deep);
}

.comparison-table td.iota-cell {
    background: rgba(242, 160, 61, 0.06);
    color: var(--color-navy-deep);
    font-weight: 600;
    text-align: center;
}

.comparison-table td.other-cell {
    color: var(--color-slate-500);
    text-align: center;
}

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

.check-icon {
    color: var(--color-success);
    font-size: 18px;
}

.cross-icon {
    color: var(--color-danger);
    font-size: 18px;
}

@media (max-width: 640px) {
    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    background: var(--color-slate-50);
}

.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--color-slate-100);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item.open {
    box-shadow: var(--shadow-md);
    border-color: var(--color-orange);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--color-navy-deep);
    text-align: left;
    background: transparent;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--color-slate-50);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-orange-dark);
    font-size: 20px;
    font-weight: 700;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--color-orange);
    color: var(--color-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-slate-700);
}

.faq-answer-inner strong {
    color: var(--color-navy-deep);
}

@media (max-width: 640px) {
    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }

    .faq-answer-inner {
        padding: 0 18px 18px;
        font-size: 14px;
    }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(242, 160, 61, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(242, 160, 61, 0.1) 0%, transparent 50%);
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: var(--color-white);
    font-size: clamp(32px, 4.5vw, 52px);
    margin-bottom: 16px;
}

.final-cta h2 em {
    color: var(--color-orange);
    font-style: italic;
}

.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 880px;
    margin: 0 auto;
}

.cta-option {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.cta-option:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-orange);
    transform: translateY(-4px);
}

.cta-option-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-option-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-navy-deep);
}

.cta-option h4 {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 8px;
}

.cta-option p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.cta-option .btn-link {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 56px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-display);
    color: var(--color-white);
    font-size: 17px;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col a {
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--color-orange);
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact-row svg {
    width: 18px;
    height: 18px;
    color: var(--color-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

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

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all 0.3s ease;
    animation: bob 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
    color: white;
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.mobile-bottom-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-slate-100);
    padding: 10px 16px;
    z-index: 90;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    gap: 8px;
}

.mobile-bottom-cta a {
    flex: 1;
    padding: 14px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mobile-call-btn {
    background: var(--color-navy);
    color: var(--color-white);
}

.mobile-form-btn {
    background: var(--color-orange);
    color: var(--color-navy-deep);
}

@media (max-width: 768px) {
    .mobile-bottom-cta {
        display: flex;
    }

    .floating-whatsapp {
        bottom: 80px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }

    body {
        padding-bottom: 70px;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   POPUP MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 55, 89, 0.7);
    backdrop-filter: blur(4px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 460px;
    width: 100%;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-slate-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-slate-700);
}

.modal-close:hover {
    background: var(--color-slate-300);
}

/* Social proof popup */
.social-proof {
    position: fixed;
    bottom: 90px;
    left: 24px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--color-success);
    max-width: 320px;
    z-index: 80;
    transform: translateX(-400px);
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-proof.show {
    transform: translateX(0);
}

.social-proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
}

.social-proof-text {
    font-size: 13px;
    color: var(--color-slate-700);
}

.social-proof-text strong {
    color: var(--color-navy-deep);
}

.social-proof-time {
    font-size: 11px;
    color: var(--color-slate-500);
    margin-top: 2px;
}

@media (max-width: 640px) {
    .social-proof {
        display: none;
    }
}