﻿
:root {
    --primary: #0057ff;
    --primary-dark: #0040cc;
    --secondary: #00c896;
    --accent: #ff6b35;
    --dark: #0a0f1e;
    --dark2: #111827;
    --light: #f5f8ff;
    --muted: #64748b;
    --border: #e2e8f0;
    --card-bg: #ffffff;
    --screen-bg: #1e2a3a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

    .navbar-brand span {
        color: var(--secondary);
    }

.nav-link {
    font-weight: 500;
    color: #334155 !important;
    font-size: 0.9rem;
    padding: 0.4rem 0.7rem !important;
}

    .nav-link:hover {
        color: var(--primary) !important;
    }

.btn-nav-cta {
    background: var(--primary);
    color: white !important;
    border-radius: 8px;
    padding: 0.45rem 1.1rem !important;
    font-weight: 600;
    font-size: 0.85rem;
}

    .btn-nav-cta:hover {
        background: var(--primary-dark);
    }

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1f4e 50%, #0a1a3a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,87,255,0.18) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,200,150,0.12) 0%, transparent 60%);
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,87,255,0.15);
    border: 1px solid rgba(0,87,255,0.3);
    color: #7eb3ff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -1px;
}

    .hero h1 .highlight {
        background: linear-gradient(90deg, #00c896, #0057ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-hero-primary:hover {
        background: #003ee0;
        transform: translateY(-2px);
    }

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-hero-outline:hover {
        border-color: white;
        background: rgba(255,255,255,0.08);
    }

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
}

    .hero-stat .num {
        font-family: 'Sora', sans-serif;
        font-size: 1.6rem;
        font-weight: 800;
        color: white;
    }

    .hero-stat .lbl {
        font-size: 0.8rem;
        color: #64748b;
    }

/* ── HERO SCREEN MOCKUP ── */
.hero-mockup {
    position: relative;
    z-index: 2;
}

.browser-window {
    background: #1e2a3a;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.07);
}

.browser-bar {
    background: #151f2e;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

    .browser-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

.dot-red {
    background: #ff5f57;
}

.dot-yellow {
    background: #febc2e;
}

.dot-green {
    background: #28c840;
}

.browser-url {
    flex: 1;
    background: #0d1621;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.72rem;
    color: #64748b;
    font-family: monospace;
}

/* ── DASHBOARD SCREEN ── */
.dash-screen {
    padding: 16px;
    display: flex;
    gap: 12px;
    min-height: 360px;
}

.dash-sidebar {
    width: 48px;
    background: #111827;
    border-radius: 10px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.dash-sidebar-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #64748b;
    cursor: pointer;
}

    .dash-sidebar-icon.active {
        background: var(--primary);
        color: white;
    }

.dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dash-topbar {
    background: #111827;
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-topbar-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.dash-topbar-right {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dash-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: white;
    font-weight: 700;
}

.dash-search {
    background: #0d1621;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.65rem;
    color: #475569;
}

.dash-kpi-row {
    display: flex;
    gap: 8px;
}

.dash-kpi {
    flex: 1;
    border-radius: 8px;
    padding: 10px 12px;
}

.kpi-blue {
    background: linear-gradient(135deg, #0057ff, #003ee0);
}

.kpi-green {
    background: linear-gradient(135deg, #00c896, #009e78);
}

.kpi-orange {
    background: linear-gradient(135deg, #ff6b35, #e04e18);
}

.kpi-purple {
    background: linear-gradient(135deg, #8b5cf6, #6d3dd4);
}

.kpi-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
}

.kpi-lbl {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
}

.kpi-change {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

    .kpi-change span {
        color: rgba(255,255,255,0.9);
    }

.dash-content-row {
    display: flex;
    gap: 8px;
    flex: 1;
}

.dash-table-card {
    flex: 1.4;
    background: #111827;
    border-radius: 8px;
    padding: 10px;
    overflow: hidden;
}

.dash-card-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
}

    .dash-table th {
        font-size: 0.55rem;
        color: #64748b;
        font-weight: 600;
        text-transform: uppercase;
        padding: 4px 6px;
        text-align: left;
        border-bottom: 1px solid #1e2a3a;
    }

    .dash-table td {
        font-size: 0.6rem;
        color: #94a3b8;
        padding: 5px 6px;
        border-bottom: 1px solid #1a2535;
    }

        .dash-table td:first-child {
            color: white;
            font-weight: 600;
        }

.status-badge {
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 0.52rem;
    font-weight: 600;
}

.status-paid {
    background: rgba(0,200,150,0.15);
    color: #00c896;
}

.status-due {
    background: rgba(255,107,53,0.15);
    color: #ff6b35;
}

.status-pending {
    background: rgba(251,191,36,0.15);
    color: #fbbf24;
}

.dash-chart-card {
    flex: 1;
    background: #111827;
    border-radius: 8px;
    padding: 10px;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 70px;
    margin-top: 8px;
}

.chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, #0057ff, #4d9fff);
    min-width: 8px;
}

    .chart-bar.secondary {
        background: linear-gradient(to top, #00c896, #4de8c2);
    }

.dash-activity {
    flex: 1;
    background: #111827;
    border-radius: 8px;
    padding: 10px;
}

.activity-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #1a2535;
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 2px;
    flex-shrink: 0;
}

.activity-text {
    font-size: 0.58rem;
    color: #94a3b8;
}

.activity-time {
    font-size: 0.52rem;
    color: #475569;
    margin-top: 2px;
}

/* ── SECTIONS ── */
section {
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    background: rgba(0,87,255,0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 0.75rem;
}

/* ── MODULES GRID ── */
.modules-section {
    background: var(--light);
}

.module-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .module-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--card-accent, linear-gradient(90deg, var(--primary), var(--secondary)));
    }

    .module-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,87,255,0.1);
        border-color: rgba(0,87,255,0.2);
    }

.module-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.module-card h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.module-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.module-features {
    list-style: none;
    padding: 0;
}

    .module-features li {
        font-size: 0.78rem;
        color: #475569;
        padding: 3px 0;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .module-features li::before {
            content: '✓';
            color: var(--secondary);
            font-weight: 700;
            font-size: 0.75rem;
        }

/* ── SCREENSHOTS SECTION ── */
.screenshots-section {
    background: var(--dark);
}

    .screenshots-section .section-title {
        color: white;
    }

    .screenshots-section .section-sub {
        color: #64748b;
    }

    .screenshots-section .section-label {
        background: rgba(0,200,150,0.15);
        color: var(--secondary);
    }

.screen-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.screen-tab {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
}

    .screen-tab.active, .screen-tab:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

.screen-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.screen-card {
    background: #111827;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.3s;
}

    .screen-card:hover {
        transform: scale(1.02);
    }

    .screen-card.large {
        grid-column: span 2;
    }

.screen-header {
    background: #0d1621;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.screen-dots {
    display: flex;
    gap: 5px;
}

    .screen-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

.screen-title-bar {
    font-size: 0.65rem;
    color: #475569;
}

.screen-body {
    padding: 14px;
}

/* Attendance Screen */
.att-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.att-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.att-date {
    font-size: 0.65rem;
    color: #64748b;
}

.att-stats {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.att-stat {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
}

    .att-stat.present {
        background: rgba(0,200,150,0.15);
    }

    .att-stat.absent {
        background: rgba(255,107,53,0.15);
    }

    .att-stat.late {
        background: rgba(251,191,36,0.15);
    }

    .att-stat .n {
        font-size: 1rem;
        font-weight: 800;
    }

    .att-stat .present .n {
        color: #00c896;
    }

    .att-stat.present .n {
        color: #00c896;
    }

    .att-stat.absent .n {
        color: #ff6b35;
    }

    .att-stat.late .n {
        color: #fbbf24;
    }

    .att-stat .l {
        font-size: 0.55rem;
        color: #64748b;
    }

.att-list {
}

.att-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #1a2535;
}

.att-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: white;
}

.att-name {
    flex: 1;
    font-size: 0.62rem;
    color: #94a3b8;
}

.att-roll {
    font-size: 0.58rem;
    color: #475569;
}

.att-toggle {
    display: flex;
    gap: 4px;
}

.att-btn {
    width: 22px;
    height: 18px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.5rem;
    font-weight: 700;
}

    .att-btn.p {
        background: rgba(0,200,150,0.2);
        color: #00c896;
    }

    .att-btn.a {
        background: rgba(255,107,53,0.2);
        color: #ff6b35;
    }

    .att-btn.active-p {
        background: #00c896;
        color: white;
    }

    .att-btn.active-a {
        background: #ff6b35;
        color: white;
    }

/* Fee Screen */
.fee-summary {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.fee-box {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    background: #0d1621;
}

    .fee-box .amount {
        font-size: 0.9rem;
        font-weight: 800;
    }

    .fee-box .collected .amount {
        color: #00c896;
    }

    .fee-box .pending .amount {
        color: #ff6b35;
    }

    .fee-box .total .amount {
        color: var(--primary);
    }

    .fee-box .flbl {
        font-size: 0.55rem;
        color: #64748b;
        margin-top: 2px;
    }

.fee-bar-wrap {
    margin-bottom: 12px;
}

.fee-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.58rem;
    color: #64748b;
    margin-bottom: 4px;
}

.fee-bar-track {
    height: 6px;
    background: #1a2535;
    border-radius: 3px;
    overflow: hidden;
}

.fee-bar-fill {
    height: 100%;
    border-radius: 3px;
}

/* Marks / Report Card Screen */
.marks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.marks-subject {
    background: #0d1621;
    border-radius: 8px;
    padding: 8px;
}

    .marks-subject .subj {
        font-size: 0.6rem;
        color: #64748b;
    }

    .marks-subject .score {
        font-size: 1rem;
        font-weight: 800;
        margin: 4px 0;
    }

    .marks-subject .grade {
        font-size: 0.6rem;
        font-weight: 700;
    }

.grade-a {
    color: #00c896;
}

.grade-b {
    color: #3b82f6;
}

.grade-c {
    color: #fbbf24;
}

.marks-bar {
    height: 3px;
    border-radius: 2px;
    margin-top: 4px;
}

/* Timetable Screen */
.tt-grid {
}

.tt-header-row {
    display: grid;
    grid-template-columns: 50px repeat(6, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}

.tt-header-cell {
    background: #0d1621;
    border-radius: 6px;
    padding: 6px 4px;
    text-align: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #64748b;
}

.tt-row {
    display: grid;
    grid-template-columns: 50px repeat(6, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}

.tt-time {
    font-size: 0.52rem;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-cell {
    border-radius: 6px;
    padding: 5px 4px;
    text-align: center;
}

    .tt-cell .subj {
        font-size: 0.58rem;
        font-weight: 700;
        color: white;
    }

    .tt-cell .teacher {
        font-size: 0.5rem;
        color: rgba(255,255,255,0.6);
        margin-top: 1px;
    }

.tt-empty {
    background: #0d1621;
    border-radius: 6px;
}

.c-math {
    background: rgba(0,87,255,0.25);
}

.c-sci {
    background: rgba(0,200,150,0.25);
}

.c-eng {
    background: rgba(139,92,246,0.25);
}

.c-tel {
    background: rgba(255,107,53,0.25);
}

.c-soc {
    background: rgba(251,191,36,0.2);
}

.c-pe {
    background: rgba(16,185,129,0.25);
}

/* Library Screen */
.lib-search {
    background: #0d1621;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.lib-search-text {
    font-size: 0.65rem;
    color: #475569;
}

.lib-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.lib-book {
    background: #0d1621;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.lib-book-cover {
    height: 50px;
    border-radius: 5px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.lib-book-title {
    font-size: 0.55rem;
    color: white;
    font-weight: 600;
}

.lib-book-author {
    font-size: 0.5rem;
    color: #64748b;
}

.lib-book-status {
    font-size: 0.5rem;
    margin-top: 4px;
}

/* Transport Screen */
.transport-map {
    background: #0d1621;
    border-radius: 10px;
    height: 100px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: linear-gradient(#0057ff 1px, transparent 1px), linear-gradient(90deg, #0057ff 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-route {
    position: absolute;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, #00c896, #0057ff);
    left: 15%;
    top: 50%;
}

.map-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6b35;
    border: 2px solid white;
}

.map-label {
    font-size: 0.55rem;
    color: #94a3b8;
    z-index: 1;
}

.bus-list {
}

.bus-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #1a2535;
}

.bus-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(0,87,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.bus-info {
    flex: 1;
}

.bus-num {
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.bus-route {
    font-size: 0.57rem;
    color: #64748b;
}

.bus-status {
    font-size: 0.58rem;
    font-weight: 600;
}

.on-time {
    color: #00c896;
}

.delayed {
    color: #ff6b35;
}

/* ── PRICING ── */
.pricing-section {
    background: var(--light);
}

.price-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s;
}

    .price-card:hover {
        box-shadow: 0 20px 40px rgba(0,87,255,0.1);
        transform: translateY(-4px);
    }

    .price-card.popular {
        background: linear-gradient(135deg, #0057ff, #003ee0);
        color: white;
        border-color: transparent;
    }

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
}

.price-plan {
    font-weight: 700;
    font-size: 1rem;
}

.price-popular .price-plan {
    color: white;
}

.price-amount {
    font-family: 'Sora', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    margin: 1rem 0;
}

    .price-amount .per {
        font-size: 0.85rem;
        font-weight: 400;
        color: var(--muted);
    }

.price-card.popular .per {
    color: rgba(255,255,255,0.7);
}

.price-card.popular .price-amount {
    color: white;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

    .price-list li {
        font-size: 0.85rem;
        padding: 0.6rem 0;
        border-bottom: 1px solid var(--border);
        display: flex;
        gap: 8px;
        align-items: center;
    }

.price-card.popular .price-list li {
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}

.price-list li .check {
    color: var(--secondary);
    font-weight: 700;
}

.price-card.popular .price-list li .check {
    color: #7fffdf;
}

.btn-price {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-price-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

    .btn-price-outline:hover {
        background: var(--primary);
        color: white;
    }

.btn-price-white {
    background: white;
    color: var(--primary);
}

    .btn-price-white:hover {
        background: rgba(255,255,255,0.9);
    }

/* ── TESTIMONIALS ── */
.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    transition: all 0.3s;
}

    .testimonial-card:hover {
        box-shadow: 0 10px 30px rgba(0,87,255,0.08);
        transform: translateY(-4px);
    }

.stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.quote {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.reviewer {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.reviewer-role {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ── CLIENTS ── */
.client-badge {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

    .client-badge:hover {
        box-shadow: 0 8px 20px rgba(0,87,255,0.08);
        border-color: var(--primary);
    }

    .client-badge .name {
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--dark);
    }

    .client-badge .city {
        font-size: 0.75rem;
        color: var(--muted);
        margin-top: 2px;
    }

    .client-badge .emoji {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

/* ── CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0040cc 100%);
    color: white;
}

    .cta-section h2 {
        font-family: 'Sora', sans-serif;
        font-size: 2.4rem;
        font-weight: 800;
    }

/* ── CONTACT ── */
.contact-section {
    background: var(--light);
}

.contact-card {
    background: white;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0,87,255,0.1);
    }

.btn-submit {
    background: var(--primary);
    color: white;
    border: none;
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-submit:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        color: #64748b;
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: white;
        }

.footer-head {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    margin-right: 6px;
}

    .social-link:hover {
        background: var(--primary);
        color: white;
    }

/* Enquiry modal */
.modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.modal-header-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 1.25rem 1.5rem;
}

@@media (max-width: 768px) {
    .screen-showcase {
        grid-template-columns: 1fr;
    }

    .screen-card.large {
        grid-column: span 1;
    }

    .dash-screen {
        flex-direction: column;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}


