/* ════════ CAMPUS PAGE ════════ */

/* ── HERO ── */
.campus-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 5rem;
    position: relative;
    overflow: hidden;
}

.campus-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.campus-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-family: var(--font-d);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-2);
    margin-bottom: 1.5rem;
    animation: campusStagger 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.campus-hero h1 {
    animation: campusStagger 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.campus-hero-desc {
    animation: campusStagger 0.8s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.campus-hero-ctas {
    animation: campusStagger 0.8s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.campus-hero-social {
    animation: campusStagger 0.8s 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes campusStagger {
    from { opacity: 0; transform: translateY(32px) scale(0.97); filter: blur(4px); }
    to   { opacity: 1; transform: none; filter: blur(0); }
}

.campus-hero-visual {
    animation: campusMockupIn 1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes campusMockupIn {
    from { opacity: 0; transform: perspective(1200px) rotateY(-12deg) rotateX(6deg) translateX(60px) scale(0.92); filter: blur(6px); }
    to   { opacity: 1; transform: perspective(1200px) rotateY(-4deg) rotateX(3deg) translateX(0) scale(1); filter: blur(0); }
}

.campus-hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--olive-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1) }
    50% { opacity: .5; transform: scale(1.3) }
}

.campus-hero h1 {
    font-family: var(--font-d);
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.campus-hero-desc {
    font-size: 1.2rem;
    color: var(--text-2);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.campus-hero-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.campus-hero-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.avatar-stack { display: flex; }
.avatar-stack span {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--olive-500), var(--earth));
    border: 2.5px solid var(--cream-100);
    margin-left: -10px;
    display: grid; place-items: center;
    color: #fff; font-family: var(--font-d); font-size: 0.6rem; font-weight: 700;
}
.avatar-stack span:first-child { margin-left: 0; }

.social-proof-text {
    font-family: var(--font-d); font-size: 0.8rem; color: var(--text-2); line-height: 1.4;
}
.social-proof-text strong { color: var(--text-1); }

.campus-hero-visual {
    perspective: 1200px;
}

/* ── MOCKUP (shared with home.css) ── */
.mockup-wrap {
    transform: rotateY(-4deg) rotateX(3deg);
    transition: 0.5s var(--ease);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    margin: 0 auto;
    animation: mockupFloat 6s ease-in-out infinite;
    animation-delay: 1.2s;
}

@keyframes mockupFloat {
    0%, 100% { transform: rotateY(-4deg) rotateX(3deg) translateY(0); }
    50% { transform: rotateY(-4deg) rotateX(3deg) translateY(-12px); }
}

.mockup-wrap:hover {
    animation-play-state: paused;
    transform: rotateY(-1deg) rotateX(1deg) scale(1.015) translateY(-8px);
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(to bottom, #fafafa, #f3f3f3);
    border-bottom: 1px solid #e5e5e5;
}

.mockup-dots { display: flex; gap: 5px; }
.mockup-dots i { width: 9px; height: 9px; border-radius: 50%; }
.mockup-dots .r { background: #ff5f57; }
.mockup-dots .y { background: #ffbd2e; }
.mockup-dots .g { background: #28c840; }

.mockup-url {
    flex: 1;
    background: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-d);
    font-size: 0.65rem;
    color: var(--text-3);
    border: 1px solid #e5e5e5;
    margin-left: 6px;
}

.mockup-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 340px;
}

.mk-sidebar {
    background: #2d3a2e;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mk-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 6px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.mk-sidebar-logo b {
    color: #fff;
    font-family: var(--font-d);
    font-size: 0.75rem;
}

.mk-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 6px;
    font-family: var(--font-d);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.15s;
    cursor: default;
}

.mk-nav-item.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.mk-nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
}

.mk-nav-item.active .mk-nav-dot {
    background: var(--olive-500);
}

.mk-content {
    padding: 16px;
    background: var(--cream-100);
}

.mk-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mk-title {
    font-family: var(--font-d);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-1);
}

.mk-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--olive-500), var(--earth));
}

.mk-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.mk-kpi {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid var(--border);
}

.mk-kpi-label {
    font-family: var(--font-d);
    font-size: 0.5rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.mk-kpi-val {
    font-family: var(--font-d);
    font-size: 1rem;
    font-weight: 700;
}

.mk-kpi-val.green { color: var(--olive-500); }
.mk-kpi-val.purple { color: #6366f1; }
.mk-kpi-val.amber { color: #d97706; }
.mk-kpi-val.blue { color: #2563eb; }

.mk-panels {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 8px;
}

.mk-panel {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid var(--border);
}

.mk-panel-title {
    font-family: var(--font-d);
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mk-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
}

.mk-bar {
    width: 100%;
    border-radius: 3px 3px 0 0;
    animation: growBar 1.2s ease-out;
}

.mk-bar-soft { background: var(--mint-50); }
.mk-bar-primary { background: var(--olive-500); }
.mk-bar-gradient { background: linear-gradient(to top, var(--olive-500), var(--earth)); }

@keyframes growBar {
    from { height: 0 !important; }
}

.mk-list-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
}

.mk-list-item:last-child { border: none; }
.mk-list-dot { width: 6px; height: 6px; border-radius: 50%; }
.mk-list-text { font-family: var(--font-d); font-size: 0.55rem; color: var(--text-2); }
.mk-list-badge { margin-left: auto; padding: 1px 5px; border-radius: var(--r-full); font-family: var(--font-d); font-size: 0.45rem; font-weight: 600; }

/* ── STATS ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.25s var(--ease);
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--olive-500);
}

.stat-num {
    font-family: var(--font-d);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--olive-500);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-d);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-2);
}

/* ── PROBLEMS ── */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    transition: 0.35s var(--ease);
    box-shadow: var(--shadow-sm);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--olive-300);
}

.problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s var(--ease);
}

.problem-icon:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.pi-red { background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05)); color: #dc2626; }
.pi-amber { background: linear-gradient(135deg, rgba(217, 119, 6, 0.15), rgba(217, 119, 6, 0.05)); color: #b45309; }
.pi-green { background: linear-gradient(135deg, rgba(17, 50, 43, 0.15), rgba(17, 50, 43, 0.05)); color: #11322B; }

.problem-title {
    font-family: var(--font-d);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.problem-desc {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.6;
}

/* ── FEATURES SHOWCASE ── */
.feat-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feat-showcase.reverse { direction: rtl; }
.feat-showcase.reverse > * { direction: ltr; }

.feat-label {
    font-family: var(--font-d);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--olive-500);
    margin-bottom: 0.5rem;
}

.feat-list {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-2);
}

.feat-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--olive-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%237C8A69' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
}

/* Feature mockup panels */
.feat-mock {
    background: #fff;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.feat-mock-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.feat-mock-bar .mockup-dots i { width: 7px; height: 7px; }
.feat-mock-body { padding: 16px; }

.mk-label-sm { font-family: var(--font-d); font-size: 0.6rem; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }

/* Department table mockup */
.mk-table {
    width: 100%;
    border-collapse: collapse;
}

.mk-table th {
    font-family: var(--font-d);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-3);
    padding: 6px 8px;
    text-align: left;
    border-bottom: 2px solid var(--border);
    font-weight: 600;
}

.mk-table td {
    font-family: var(--font-d);
    font-size: 0.6rem;
    padding: 8px;
    border-bottom: 1px solid var(--border);
    color: var(--text-2);
}

.mk-table tr:hover td { background: var(--olive-soft); }

.mk-badge { padding: 2px 6px; border-radius: var(--r-full); font-size: 0.45rem; font-weight: 600; }
.mk-badge-green { background: var(--olive-50); color: var(--olive-500); }
.mk-badge-amber { background: #fef3c7; color: #d97706; }
.mk-badge-blue { background: #dbeafe; color: #2563eb; }
.mk-badge-purple { background: #e0e7ff; color: #6366f1; }

/* Registration mockup */
.mk-reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mk-reg-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
}

.mk-reg-card-title {
    font-family: var(--font-d);
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mk-reg-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    font-family: var(--font-d);
    font-size: 0.48rem;
    color: var(--text-2);
}

.mk-reg-val { font-weight: 600; color: var(--olive-500); }

/* GPA mockup */
.mk-gpa-grid {
    display: grid;
    grid-template-columns: 1fr 70px 70px 70px;
    gap: 1px;
    background: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.mk-gpa-cell {
    background: #fff;
    padding: 6px 8px;
    font-family: var(--font-d);
    font-size: 0.55rem;
}

.mk-gpa-cell.header {
    background: var(--cream-100);
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.5rem;
}

.mk-gpa-cell.name { font-weight: 500; color: var(--text-1); }
.mk-gpa-cell.val { text-align: center; font-weight: 600; }
.mk-gpa-cell.val.high { color: var(--olive-500); }
.mk-gpa-cell.val.mid { color: #d97706; }
.mk-gpa-cell.val.low { color: #ef4444; }

/* Internship mockup */
.mk-intern-list { display: flex; flex-direction: column; gap: 6px; }

.mk-intern-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.mk-intern-avatar {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-family: var(--font-d);
    font-size: 0.45rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.av-grad-green { background: linear-gradient(135deg, #11322B, #28c840) !important; }
.av-grad-blue { background: linear-gradient(135deg, #6366f1, #818cf8) !important; }
.av-grad-amber { background: linear-gradient(135deg, #d97706, #fbbf24) !important; }

.mk-intern-info { flex: 1; min-width: 0; }
.mk-intern-name { font-family: var(--font-d); font-size: 0.52rem; font-weight: 600; color: var(--text-1); }
.mk-intern-detail { font-family: var(--font-d); font-size: 0.42rem; color: var(--text-3); }

.mk-intern-status {
    font-family: var(--font-d);
    font-size: 0.4rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: var(--r-full);
    flex-shrink: 0;
}

/* Thesis mockup */
.mk-thesis-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 20px;
}

.mk-thesis-steps::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border);
}

.mk-thesis-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    position: relative;
}

.mk-thesis-dot {
    position: absolute;
    left: -20px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    z-index: 1;
}

.mk-thesis-dot.done {
    background: var(--olive-500);
    border-color: var(--olive-500);
}

.mk-thesis-dot.active {
    background: #fff;
    border-color: var(--olive-500);
    box-shadow: 0 0 0 3px var(--olive-soft);
}

.mk-thesis-text {
    font-family: var(--font-d);
    font-size: 0.5rem;
    color: var(--text-2);
}

.mk-thesis-text strong { color: var(--text-1); font-weight: 600; }

/* Council mockup */
.mk-council-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 8px;
}

.mk-council-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.mk-council-stat-val {
    font-family: var(--font-d);
    font-size: 0.85rem;
    font-weight: 700;
}

.mk-council-stat-label {
    font-family: var(--font-d);
    font-size: 0.4rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mk-council-actions {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.mk-council-btn {
    padding: 4px 8px;
    border-radius: var(--r-full);
    font-family: var(--font-d);
    font-size: 0.42rem;
    font-weight: 600;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-2);
}

.mk-council-btn.primary {
    background: var(--olive-500);
    color: var(--cream-50);
    border-color: var(--olive-500);
}

/* ── PRICING ── */
.campus-pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.campus-toggle-pill {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    padding: 0.4rem;
    gap: 0.3rem;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.campus-toggle-btn {
    padding: 0.75rem 1.75rem;
    background: transparent;
    border: none;
    border-radius: var(--r-full);
    font-family: var(--font-d);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: 0.25s var(--ease);
}

.campus-toggle-btn.active {
    background: var(--olive-500);
    color: white;
    box-shadow: 0 8px 20px rgba(124, 138, 105, 0.25);
}

.save-badge {
    background: var(--earth);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    transition: 0.35s var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--olive-300);
}

.plan-card.featured {
    background: #ffffff;
    border-color: var(--olive-500);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.plan-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--olive-500), var(--earth));
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--olive-500), var(--earth));
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: var(--r-full);
    font-family: var(--font-d);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.plan-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.5);
}

.plan-icon svg { width: 26px; height: 26px; stroke-width: 2; fill: none; }
.plan-icon.starter { background: var(--olive-100); }
.plan-icon.starter svg { stroke: var(--olive-900); }
.plan-icon.essentiel { background: var(--olive-50); }
.plan-icon.essentiel svg { stroke: var(--olive-500); }
.plan-icon.pro { background: var(--earth-soft); }
.plan-icon.pro svg { stroke: var(--earth); }
.plan-icon.entreprise { background: #f0f4f8; }
.plan-icon.entreprise svg { stroke: var(--text-1); }

.plan-name { font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text-1); }
.plan-tagline { font-size: 0.95rem; color: var(--text-3); margin-bottom: 2rem; line-height: 1.4; }

.plan-price { margin-bottom: 1rem; }
.plan-price-main { font-family: var(--font-d); font-size: 2.75rem; font-weight: 700; color: var(--olive-500); line-height: 1; letter-spacing: -0.04em; }
.plan-price-main.custom { font-size: 1.85rem; }
.plan-price-unit { font-family: var(--font-d); font-size: 1rem; font-weight: 500; color: var(--text-2); }
.plan-price-fcfa { font-family: var(--font-d); font-size: 0.85rem; color: var(--text-3); margin-top: 0.4rem; font-weight: 500; }

.plan-limits {
    display: flex; flex-direction: column; gap: 0.5rem;
    margin: 1.5rem 0; padding: 1.25rem;
    background: var(--olive-50); border-radius: var(--r-md);
    border: 1px solid var(--olive-100);
}

.plan-limit {
    font-family: var(--font-d); font-size: 0.9rem;
    color: var(--olive-900); display: flex; align-items: center; gap: 0.6rem;
}

.plan-limit svg { width: 16px; height: 16px; stroke: var(--olive-500); stroke-width: 2.5; fill: none; flex-shrink: 0; }

.plan-divider { height: 1px; background: var(--border); margin: 1.5rem 0; opacity: 0.5; }

.plan-includes {
    font-size: 0.95rem;
    color: var(--text-1);
    margin-bottom: 1rem;
}

.plan-features {
    list-style: none; flex: 1;
    margin-bottom: 2rem; display: flex;
    flex-direction: column; gap: 0.75rem;
}

.plan-features li {
    font-size: 0.95rem; color: var(--text-2);
    display: flex; align-items: flex-start; gap: 0.75rem;
    line-height: 1.4;
}

.plan-features li::before {
    content: '';
    width: 20px; height: 20px;
    background: var(--olive-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%237C8A69' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    border-radius: 50%; flex-shrink: 0; margin-top: 2px;
}

.plan-btn {
    display: block; width: 100%;
    padding: 0.85rem 1rem;
    background: var(--olive-900); color: white;
    font-family: var(--font-d); font-size: 0.95rem; font-weight: 600;
    text-align: center; text-decoration: none;
    white-space: nowrap;
    border-radius: var(--r-full);
    transition: 0.25s var(--ease);
    box-shadow: 0 8px 20px rgba(62, 74, 53, 0.2);
}

.plan-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(62, 74, 53, 0.3); background: var(--olive-900); }
.plan-card.featured .plan-btn { background: var(--olive-500); box-shadow: 0 10px 24px rgba(124, 138, 105, 0.3); }
.plan-card.featured .plan-btn:hover { background: var(--olive-900); }
.plan-btn.outline { background: transparent; color: var(--text-1); border: 1.5px solid var(--border-md); box-shadow: none; }
.plan-btn.outline:hover { background: var(--olive-50); border-color: var(--olive-500); color: var(--olive-500); }

.fcfa-note { text-align: center; font-family: var(--font-d); font-size: 0.85rem; color: var(--text-3); margin-top: 2rem; opacity: 0.8; }

/* ── FAQ ── */
.faq-list {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 2rem; background: none; border: none;
    font-family: var(--font-d); font-size: 1.15rem; font-weight: 600;
    color: var(--text-1); cursor: pointer; text-align: left;
    transition: 0.25s var(--ease); gap: 1.5rem;
}

.faq-question:hover { color: var(--olive-500); background: var(--olive-50); }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s var(--ease); color: var(--text-3); }
.faq-item.open { border-color: var(--olive-500); box-shadow: var(--shadow-md); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--olive-500); }

.faq-answer {
    padding: 0 2rem; max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    font-size: 1.05rem; color: var(--text-2); line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 2rem; }

/* ── FINAL CTA ── */
.final-cta {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4.5rem 3rem;
    border-radius: var(--r-lg);
    background:
        radial-gradient(circle at 20% 20%, rgba(253, 252, 248, 0.7), transparent 55%),
        linear-gradient(135deg, var(--olive-50) 0%, var(--olive-100) 55%, var(--olive-200) 100%);
    border: 1px solid var(--olive-200);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, transparent 30%, rgba(124, 138, 105, 0.08) 100%);
    pointer-events: none;
}

.final-cta h2 {
    font-family: var(--font-d);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--olive-900);
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
    position: relative;
}

.final-cta p {
    font-family: var(--font-b);
    font-size: 1.05rem;
    color: var(--text-2);
    margin-bottom: 2rem;
    position: relative;
}

.final-cta-btns {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .campus-hero { padding-top: 7rem; }
    .campus-hero-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .campus-hero-desc { margin-left: auto; margin-right: auto; }
    .campus-hero-ctas { justify-content: center; }
    .campus-hero-social { justify-content: center; }
    .campus-hero-visual { order: 1; max-width: min(600px, 100%); margin: 3rem auto 0; }
    .mockup-wrap { transform: none; }
    .problems-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .campus-hero h1 { font-size: 2.5rem; letter-spacing: -0.03em; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .problems-grid { grid-template-columns: 1fr; }
    .feat-showcase { grid-template-columns: 1fr; gap: 3rem; }
    .feat-showcase.reverse { direction: ltr; }
    .plans-grid { grid-template-columns: 1fr; }
    .mockup-body { grid-template-columns: 1fr; }
    .mk-sidebar { display: none !important; }
    .faq-question { padding: 1.25rem 1.5rem; font-size: 1.05rem; }
    .faq-answer { padding: 0 1.5rem; }
    .faq-item.open .faq-answer { padding-bottom: 1.5rem; }
    .final-cta { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
    .campus-hero { padding-top: 7.5rem; padding-bottom: 9rem; }
    .campus-hero h1 { font-size: 1.7rem; line-height: 1.15; margin-bottom: 1rem; }
    .campus-hero-desc { font-size: 1rem; margin-bottom: 2rem; }
    .stats-row { grid-template-columns: 1fr; }
    .stat-num { font-size: 2.25rem; }
    .campus-pricing-toggle { flex-direction: column; }
    .campus-toggle-pill { width: 100%; justify-content: center; }
    .plan-card { padding: 2rem 1.5rem; }
    .plan-price-main { font-size: 2.25rem; }
}
