:root {
    --acadify: #3157d5;
    --acadify-dark: #182f75;
    --acadify-deep: #0d1b43;
    --acadify-light: #eef3ff;
    --accent: #6c8cff;
    --text: #182238;
    --muted: #667085;
    --border: #e6eaf2;
    --soft: #f7f9fc;
    --success: #19a974;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    text-decoration: none;
}

section[id] {
    scroll-margin-top: 90px;
}

.section-padding {
    padding: 110px 0;
}

/* NAVBAR */

.acadify-navbar {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(230, 234, 242, .8);
    padding: 14px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--acadify-deep);
    font-size: 1.35rem;
}

.brand-mark {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-link {
    color: #4d5870;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--acadify);
}

.btn-acadify {
    background: var(--acadify);
    border: 1px solid var(--acadify);
    color: #fff;
    border-radius: 11px;
    font-weight: 600;
    padding: 11px 22px;
    transition: .25s ease;
}

.btn-acadify:hover {
    background: var(--acadify-dark);
    border-color: var(--acadify-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-acadify {
    border: 1px solid #cbd4ee;
    color: var(--acadify-dark);
    border-radius: 11px;
    font-weight: 600;
    padding: 11px 22px;
}

.btn-outline-acadify:hover {
    background: var(--acadify-light);
    color: var(--acadify-dark);
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 15%, rgba(99, 132, 255, .12), transparent 30%),
        linear-gradient(180deg, #fbfcff 0%, #f5f8ff 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .25;
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: #8da3ff;
    right: -100px;
    top: 120px;
}

.hero-glow-2 {
    width: 300px;
    height: 300px;
    background: #a7dfff;
    left: -100px;
    bottom: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--acadify-dark);
    font-size: .88rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(32, 48, 80, .05);
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
    color: var(--acadify-deep);
}

.hero h1 span {
    color: var(--acadify);
}

.hero-description {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 1.75;
    margin-top: 25px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: #566079;
    font-size: .9rem;
}

.hero-points i {
    color: var(--success);
    margin-right: 6px;
}

/* HERO DEMO */

.hero-demo {
    position: relative;
    padding: 40px 0 40px 25px;
}

.demo-window {
    background: #fff;
    border: 1px solid rgba(220, 226, 240, .9);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(28, 48, 95, .16);
    transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
}

.demo-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: .8rem;
}

.demo-dots {
    display: flex;
    gap: 5px;
}

.demo-dots span {
    width: 8px;
    height: 8px;
    background: #d6dbe6;
    border-radius: 50%;
}

.demo-body {
    padding: 25px;
}

.demo-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-welcome small {
    color: var(--muted);
}

.demo-welcome h4 {
    margin: 3px 0 0;
    color: var(--acadify-deep);
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--acadify-light);
    color: var(--acadify);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.children-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 25px 0 18px;
}

.child {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 12px;
}

.child.active {
    background: var(--acadify-light);
    border-color: #cbd7ff;
}

.child-avatar,
.student-avatar {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    border-radius: 50%;
    background: var(--acadify);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.child strong,
.child small {
    display: block;
}

.child small {
    color: var(--muted);
    font-size: .72rem;
}

.event-card {
    display: flex;
    gap: 12px;
    padding: 15px;
    border-radius: 13px;
}

.success-event {
    background: #effbf6;
    border: 1px solid #c9efdf;
}

.event-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 10px;
    background: var(--success);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-content {
    width: 100%;
}

.event-content strong {
    color: #185f48;
    font-size: .86rem;
}

.event-content span,
.event-content p {
    font-size: .72rem;
    color: #668279;
}

.event-content p {
    margin: 3px 0 0;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 16px 0;
}

.mini-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 13px;
}

.mini-card i {
    color: var(--acadify);
}

.mini-card span,
.mini-card strong {
    display: block;
}

.mini-card span {
    font-size: .7rem;
    color: var(--muted);
    margin-top: 10px;
}

.mini-card strong {
    font-size: .82rem;
}

.activity-line {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--acadify);
}

.activity-line div {
    flex: 1;
}

.activity-line strong,
.activity-line p,
.activity-line small {
    font-size: .73rem;
}

.activity-line p {
    color: var(--muted);
    margin: 0;
}

.floating-notification {
    position: absolute;
    right: -25px;
    bottom: 5px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 17px;
    box-shadow: 0 20px 45px rgba(22, 40, 80, .18);
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8faf2;
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-notification strong,
.floating-notification span {
    display: block;
    font-size: .74rem;
}

.floating-notification span {
    color: var(--muted);
}

/* GENERIC HEADINGS */

.section-heading {
    max-width: 730px;
}

.section-heading h2,
.persona-title,
.access-section h2 {
    color: var(--acadify-deep);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -.035em;
    font-weight: 800;
}

.section-heading p,
.persona-description {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.section-kicker {
    display: inline-block;
    color: var(--acadify);
    font-size: .75rem;
    letter-spacing: .14em;
    font-weight: 800;
    margin-bottom: 15px;
}

/* EXPERIENCE CARDS */

.experiences {
    background: #fff;
}

.experience-card {
    height: 100%;
    display: block;
    padding: 34px;
    border-radius: 20px;
    border: 1px solid var(--border);
    color: var(--text);
    transition: .3s ease;
}

.experience-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 55px rgba(29, 48, 88, .1);
    color: var(--text);
}

.experience-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 28px;
}

.family-card .experience-icon {
    background: #fff0f5;
    color: #dc5b88;
}

.teacher-card .experience-icon {
    background: #eef4ff;
    color: var(--acadify);
}

.school-card .experience-icon {
    background: #eafaf4;
    color: #159a69;
}

.experience-card>span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.experience-card h3 {
    color: var(--acadify-deep);
    font-size: 1.55rem;
    margin: 10px 0 14px;
}

.experience-card p {
    color: var(--muted);
    line-height: 1.7;
}

.experience-link {
    margin-top: 25px;
    color: var(--acadify);
    font-weight: 700;
}

/* PERSONA */

.persona-label {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    padding: 7px 12px;
    border-radius: 30px;
    background: #fff0f5;
    color: #c64c77;
    font-size: .75rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.teacher-label {
    background: var(--acadify-light);
    color: var(--acadify);
}

.school-label {
    background: #eafaf4;
    color: #12845c;
}

.features-list {
    margin: 32px 0 15px;
}

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--acadify-light);
    color: var(--acadify);
}

.feature-item h5 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--acadify-deep);
}

.feature-item p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

/* PHONE */

.phone-showcase {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone {
    width: 310px;
    background: #111827;
    border-radius: 42px;
    padding: 9px;
    box-shadow: 0 35px 80px rgba(20, 35, 75, .22);
    position: relative;
    z-index: 2;
}

.phone-speaker {
    position: absolute;
    width: 85px;
    height: 24px;
    background: #111827;
    border-radius: 0 0 16px 16px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.phone-content {
    min-height: 570px;
    background: #fff;
    border-radius: 34px;
    padding: 38px 18px 20px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    color: var(--acadify);
    margin-bottom: 25px;
}

.student-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 13px;
    margin-top: 10px;
}

.student-profile.active {
    background: var(--acadify-light);
    border-color: #ccd8ff;
}

.student-profile strong,
.student-profile span {
    display: block;
    font-size: .78rem;
}

.student-profile span {
    color: var(--muted);
    font-size: .68rem;
}

.phone-section-title {
    display: block;
    color: var(--muted);
    font-size: .65rem;
    margin: 25px 0 8px;
    font-weight: 700;
}

.phone-event {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 3px;
    border-bottom: 1px solid var(--border);
}

.phone-event>i {
    color: var(--success);
}

.phone-event div {
    flex: 1;
}

.phone-event strong,
.phone-event span {
    display: block;
    font-size: .73rem;
}

.phone-event span,
.phone-event small {
    color: var(--muted);
    font-size: .65rem;
}

.phone-decoration {
    position: absolute;
    border-radius: 50%;
}

.decoration-one {
    width: 320px;
    height: 320px;
    background: var(--acadify-light);
}

.decoration-two {
    width: 410px;
    height: 410px;
    border: 1px solid #dde5ff;
}

/* ACCESS */

.access-section {
    background: var(--acadify-deep);
    color: #fff;
    overflow: hidden;
}

.access-section h2 {
    color: #fff;
}

.access-section p {
    color: #bac5df;
    line-height: 1.8;
}

.light-kicker {
    color: #91a9ff;
}

.access-benefits {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.access-benefits i {
    color: #5ee0ac;
    margin-right: 7px;
}

.access-flow {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 35px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    min-height: 310px;
}

.flow-item {
    flex: 1;
    text-align: center;
}

.flow-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.flow-item strong,
.flow-item span {
    display: block;
}

.flow-item span {
    color: #aebbd7;
    font-size: .75rem;
}

.flow-arrow {
    color: #7891db;
}

.access-message {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px;
    width: 72%;
    background: #fff;
    color: var(--text);
    padding: 13px;
    border-radius: 14px;
    display: flex;
    gap: 11px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
}

.access-message-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    background: #e8faf2;
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-message small,
.access-message strong,
.access-message span {
    display: block;
}

.access-message small {
    color: var(--muted);
    font-size: .58rem;
}

.access-message strong {
    font-size: .8rem;
}

.access-message span {
    color: var(--muted);
    font-size: .7rem;
}

/* TEACHER */

.soft-background {
    background: var(--soft);
}

.teacher-dashboard,
.admin-dashboard {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 27px;
    box-shadow: 0 30px 65px rgba(30, 48, 90, .1);
}

.dashboard-header,
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header small,
.admin-header small {
    color: var(--muted);
}

.dashboard-label {
    margin: 28px 0 12px;
    color: var(--muted);
    font-size: .68rem;
    letter-spacing: .08em;
}

.class-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 13px;
    margin-bottom: 10px;
}

.class-card.active {
    border-color: #bdcaff;
    background: var(--acadify-light);
}

.class-time strong,
.class-time span,
.class-info strong,
.class-info span {
    display: block;
}

.class-time {
    min-width: 45px;
}

.class-time strong {
    color: var(--acadify);
}

.class-time span,
.class-info span {
    color: var(--muted);
    font-size: .72rem;
}

.class-info {
    flex: 1;
}

.class-card button {
    border: 0;
    background: var(--acadify);
    color: #fff;
    border-radius: 8px;
    padding: 8px 11px;
    font-size: .72rem;
}

.status-done {
    color: var(--success);
    font-size: .75rem;
    font-weight: 700;
}

.teacher-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.teacher-stats div {
    background: var(--soft);
    border-radius: 11px;
    padding: 14px;
}

.teacher-stats strong,
.teacher-stats span {
    display: block;
}

.teacher-stats strong {
    color: var(--acadify-deep);
    font-size: 1.3rem;
}

.teacher-stats span {
    color: var(--muted);
    font-size: .7rem;
}

/* SCHOOL */

.school-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 30px;
}

.school-features span {
    padding: 11px 13px;
    background: var(--soft);
    border-radius: 10px;
    color: #48536b;
    font-size: .85rem;
}

.school-features i {
    color: var(--acadify);
    margin-right: 7px;
}

.live-status {
    color: var(--success);
    font-size: .75rem;
    font-weight: 700;
}

.live-status i {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    margin-right: 5px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 25px 0;
}

.admin-stat {
    padding: 15px;
    border-radius: 12px;
    background: var(--soft);
}

.admin-stat span,
.admin-stat strong,
.admin-stat small {
    display: block;
}

.admin-stat span,
.admin-stat small {
    color: var(--muted);
    font-size: .68rem;
}

.admin-stat strong {
    font-size: 1.45rem;
    color: var(--acadify-deep);
}

.attendance-widget {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 17px;
}

.widget-heading {
    display: flex;
    justify-content: space-between;
}

.widget-heading strong,
.widget-heading small {
    display: block;
}

.widget-heading small {
    color: var(--muted);
    font-size: .68rem;
}

.widget-heading>span {
    color: var(--success);
    font-weight: 800;
}

.progress {
    height: 7px;
    margin: 15px 0;
}

.progress-bar {
    background: var(--success);
}

.attendance-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.attendance-data div {
    position: relative;
}

.attendance-data strong,
.attendance-data small {
    display: block;
}

.attendance-data small {
    color: var(--muted);
    font-size: .65rem;
}

.dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.present {
    background: var(--success);
}

.absent {
    background: #e75959;
}

.late {
    background: #e6a43b;
}

.admin-activity {
    margin-top: 22px;
}

.admin-activity>strong {
    display: block;
    margin-bottom: 8px;
}

.admin-activity div {
    display: flex;
    align-items: center;
    gap: 9px;
    border-top: 1px solid var(--border);
    padding: 9px 0;
    font-size: .73rem;
}

.admin-activity div i {
    color: var(--acadify);
}

.admin-activity div span {
    flex: 1;
}

.admin-activity div small {
    color: var(--muted);
}

/* CONNECTED */

.connected-section {
    background: var(--soft);
}

.connected-flow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.connected-flow>div {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(30, 50, 90, .06);
}

.connected-flow>div i {
    font-size: 1.5rem;
    color: var(--acadify);
}

.connected-flow>span {
    width: 45px;
    height: 1px;
    background: #cbd4e8;
}

.connected-flow .connected-center {
    background: var(--acadify-deep);
    color: #fff;
    transform: scale(1.15);
}

/* CTA */

.final-cta {
    padding: 100px 0;
}

.cta-box {
    position: relative;
    overflow: hidden;
    padding: 55px;
    border-radius: 26px;
    background: var(--acadify);
    color: #fff;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    right: -150px;
    top: -200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    max-width: 700px;
    font-weight: 800;
    letter-spacing: -.035em;
}

.cta-box>.row>div>span {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    opacity: .75;
}

/* FOOTER */

footer {
    background: #09142f;
    color: #fff;
    padding: 55px 0 25px;
}

footer p {
    color: #8996b4;
    margin: 12px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #aab4ca;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 40px;
    padding-top: 20px;
    color: #7f8aa4;
    font-size: .75rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr auto 1fr;
    align-items: start;
    gap: 60px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-title {
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 3px;
}

.footer-contact>a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: .2s ease;
}

.footer-contact>a:hover {
    color: #fff;
    transform: translateX(3px);
}

.contact-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.footer-contact a div:last-child {
    display: flex;
    flex-direction: column;
}

.footer-contact small {
    color: rgba(255, 255, 255, .5);
    font-size: .72rem;
    line-height: 1.2;
}

.footer-contact a span {
    font-size: .88rem;
    font-weight: 500;
}

@media (max-width:768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 3.8rem;
    }

    .hero-demo {
        padding-left: 0;
    }

    .demo-window {
        transform: none;
    }

    .floating-notification {
        right: 5px;
    }

    .access-flow {
        margin-bottom: 50px;
    }

    .connected-flow {
        flex-wrap: wrap;
        gap: 15px;
    }

    .connected-flow>span {
        display: none;
    }

    .connected-flow .connected-center {
        transform: none;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-points {
        display: grid;
        gap: 8px;
    }

    .demo-grid {
        grid-template-columns: 1fr;
    }

    .floating-notification {
        position: relative;
        right: auto;
        bottom: auto;
        width: 90%;
        margin: -15px auto 0;
        z-index: 5;
    }

    .phone-showcase {
        min-height: 630px;
    }

    .access-flow {
        flex-direction: column;
        padding-bottom: 90px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .access-message {
        width: 90%;
    }

    .school-features {
        grid-template-columns: 1fr;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .footer-content,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}