* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --navy: #2c3e50;
    --navy-mid: #3b566e;
    --cyan: #00ccff;
    --cyan-dim: #00b7eb;
    --cyan-pale: #e0f8ff;
    --light: #ecf0f1;
    --mid: #34495e;
    --white: #ffffff;
    --radius: 14px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--light);
    color: var(--navy);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding-top: 48px;
}

/* ── TOOLBAR ── */
.toolbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.97);
   /* backdrop-filter: blur(8px);*/
    z-index: 1000;
    height: 49px;
}

.toolbar-container {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    height: 100%;
    align-items: center;
}

.toolbar-container a {
    color: #d1e8f0;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.toolbar-container a:hover {
    color: var(--cyan);
    background: rgba(0, 204, 255, 0.1);
}

/* ── CONTAINER ── */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── SECTION LABEL ── */
.section-label {
    display: inline-block;
    background: rgba(0, 204, 255, 0.15);
    color: var(--cyan-dim);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 204, 255, 0.25);
}

/* ── HIDDEN ── */
.hidden {
    display: none !important;
}

/* ── HERO ── */
.hero {
    min-height: calc(100vh - 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 40%, #1a7fa8 80%, #009fc2 100%);
    padding: 40px 20px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    background: var(--cyan);
}

.shape-1 {
    width: 460px;
    height: 460px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 280px;
    height: 280px;
    bottom: -60px;
    left: -60px;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.9s ease-out both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 204, 255, 0.18);
    border: 1px solid rgba(0, 204, 255, 0.35);
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ecf0f1;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero h1 .highlight {
    color: var(--cyan);
}

.hero p {
    font-size: 1.05rem;
    font-weight: 300;
    color: #c8e0ec;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dim) 100%);
    color: var(--navy);
    padding: 15px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 204, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 204, 255, 0.5);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8e0ec;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 224, 236, 0.35);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.cta-secondary:hover {
    color: var(--cyan);
    border-color: var(--cyan);
}

/* ── SECTIONS ── */
.section {
    padding: 64px 0;
    background: var(--white);
}

.section-alt {
    background: var(--light);
}

.section-cta {
    background: var(--white);
    text-align: center;
}

.section .container > h2,
.section-cta .container > h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section .container > p,
.section-cta .container > p {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 580px;
}

.section-cta .container > p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

/* ── CARDS ── */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
}

.card {
    background: #e8f4f8;
    border: 1px solid #eaecef;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.card i {
    font-size: 1.8rem;
    color: var(--cyan-dim);
    margin-bottom: 12px;
    display: block;
}

.card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.card p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.6;
}

.card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* ── TIMELINE ── */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid #eaecef;
    padding: 20px;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--cyan-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon i {
    color: var(--cyan-dim);
    font-size: 1rem;
}

.timeline-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.6;
}

/* ── FOOTER ── */
footer {
    background: #1a2838;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 20px 16px;
    font-size: 0.82rem;
    font-weight: 300;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE 768px+ ── */
@media (min-width: 768px) {
    .hero h1 { font-size: 3.2rem; }
    .hero p { font-size: 1.1rem; }
    .hero-ctas { flex-direction: row; justify-content: center; }

    .cards { grid-template-columns: repeat(3, 1fr); }

    .section .container > h2,
    .section-cta .container > h2 {
        font-size: 2.2rem;
    }
}

/* ── RESPONSIVE 480px ── */
@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 0.92rem; }
    .cta-primary { padding: 13px 26px; font-size: 0.97rem; }

    .section { padding: 48px 0; }

    .section .container > h2,
    .section-cta .container > h2 {
        font-size: 1.65rem;
    }

    .timeline-item { padding: 16px; }
}

/* ── RESPONSIVE 320px ── */
@media (max-width: 320px) {
    .toolbar-container { gap: 16px; }
    .toolbar-container a { font-size: 0.9rem; width: 28px; height: 28px; }
    .hero h1 { font-size: 1.75rem; }
}