@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

:root {
    --primary-color: #00d4d4;
    --accent-color: #6ae0ff;
    --dark-bg: #050c16;
    --panel: #0f243a;
    --navy: #0f2a47;
    --muted: #c7d3e0;
    --border: #153a5e;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

body {
    font-family: 'Space Grotesk', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(120% 120% at 20% 20%, rgba(0, 212, 212, 0.12), transparent), radial-gradient(80% 100% at 80% 0%, rgba(86, 158, 255, 0.12), transparent), var(--dark-bg);
    color: #e9f2ff;
    line-height: 1.7;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 212, 212, 0.02), rgba(255, 255, 255, 0)), linear-gradient(0deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    pointer-events: none;
}

a {
    color: inherit;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(10, 18, 30, 0.82);
    border-bottom: 1px solid rgba(0, 212, 212, 0.25);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    gap: 1.5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo {
    height: 46px;
    width: auto;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.09), transparent);
    padding: 6px;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.4rem;
    align-items: center;
}

.nav-links a {
    color: #e9f2ff;
    text-decoration: none;
    padding: 0.4rem 0.2rem;
    border-bottom: 2px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background-color: #e9f2ff;
    transition: 0.3s;
    border-radius: 2px;
}

/* Layout */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4.5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.25rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--accent-color);
}

.section-header h2,
section h2 {
    font-size: 2.4rem;
    margin: 0.75rem 0 0.4rem;
    color: #f5fbff;
}

.section-header p,
.lead {
    max-width: 720px;
    margin: 0.75rem auto 0;
    color: var(--muted);
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 2.5rem;
    padding: 5rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero p {
    color: var(--muted);
    margin-bottom: 1.8rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.cta-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary-color);
    color: #02101c;
    border: none;
    padding: 0.85rem 1.6rem;
    font-size: 1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(0, 212, 212, 0.35);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 212, 212, 0.45);
}

.ghost-button {
    background: rgba(255, 255, 255, 0.06);
    color: #e9f2ff;
    border: 1px solid rgba(0, 212, 212, 0.4);
    box-shadow: none;
}

.ghost-button:hover {
    background: rgba(0, 212, 212, 0.08);
    transform: translateY(-2px);
}

.hero-card {
    background: linear-gradient(160deg, rgba(0, 212, 212, 0.08), rgba(11, 30, 52, 0.9));
    border: 1px solid rgba(0, 212, 212, 0.25);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: var(--shadow);
}

.hero-card h3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.pill-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 212, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 500;
}

/* Cards and grids */
.grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.6rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 212, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.card h3,
.card h4 {
    color: #f5fbff;
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--muted);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 212, 212, 0.12);
    border: 1px solid rgba(0, 212, 212, 0.3);
    color: #c2f9ff;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.highlight {
    background: linear-gradient(145deg, rgba(0, 212, 212, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(106, 224, 255, 0.4);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 212, 212, 0.2);
}

.stat strong {
    display: block;
    font-size: 1.4rem;
    color: #f5fbff;
}

.stat span {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Timeline / steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.step {
    padding: 1.3rem 1.4rem;
    border-radius: 12px;
    border: 1px dashed rgba(0, 212, 212, 0.4);
    background: rgba(255, 255, 255, 0.03);
}

.step strong {
    color: #f5fbff;
}

.step small {
    color: var(--muted);
    display: block;
    margin-top: 0.4rem;
}

/* Contact */
.contact {
    background: linear-gradient(150deg, rgba(0, 212, 212, 0.08), rgba(9, 18, 30, 0.95));
    border: 1px solid rgba(0, 212, 212, 0.25);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

form {
    display: grid;
    gap: 1rem;
    max-width: 540px;
    width: 100%;
    justify-self: start;
    align-self: start;
    padding: 1.25rem 1.4rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 212, 0.18);
    box-shadow: var(--shadow);
}

label {
    display: block;
    color: #f5fbff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

input,
select,
textarea {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 212, 212, 0.3);
    color: #e9f2ff;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 212, 0.15);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.contact-card {
    padding: 1.5rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 212, 212, 0.25);
    text-align: left;
}

.contact-card h3 {
    color: #f5fbff;
    margin-bottom: 0.4rem;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact form .cta-button {
    margin-top: 0.5rem;
    min-width: 190px;
    width: auto;
    justify-content: center;
}

/* Footer */
footer {
    background: rgba(6, 12, 24, 0.85);
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(0, 212, 212, 0.2);
    color: var(--muted);
    margin-top: 3rem;
}

@media (max-width: 520px) {
    form {
        padding: 1rem;
    }

    .contact form .cta-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .navbar {
        padding: 1rem 1.25rem;
    }

    .nav-links {
        position: absolute;
        top: 74px;
        right: -100%;
        background: rgba(10, 18, 30, 0.95);
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(0, 212, 212, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 4rem 1.25rem 3rem;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    section {
        padding: 3rem 1.25rem;
    }

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

@media (max-width: 520px) {
    .navbar {
        padding: 0.85rem 1rem;
    }

    .logo {
        height: 40px;
    }

    .company-name {
        font-size: 1.05rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-button,
    .ghost-button {
        width: 100%;
        justify-content: center;
    }

    .pill-list {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}
