/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg: #070b1a;
    --bg-alt: rgba(255,255,255,0.015);
    --card-bg: rgba(255,255,255,0.04);

    --text: #e6eaf2;
    --text-soft: #c3cbdb;
    --text-muted: #aab4c0;

    --accent: #4da3ff;
    --accent-hover: #79b8ff;

    --border: rgba(255,255,255,0.08);
    --border-accent: rgba(77,163,255,0.18);
}

body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(
            circle at top center,
            rgba(77,163,255,0.08),
            transparent 45%
        ),
        var(--bg);

    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

/* =========================
   CONTAINER
========================= */
.container {
    width: 94%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================
   NAVIGATION
========================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;

    background: rgba(7, 11, 26, 0.88);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(77,163,255,0.10);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo img {
    height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    position: relative;

    text-decoration: none;
    color: #b7c0d8;

    font-size: 14px;
    font-weight: 500;

    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(77,163,255,0.35);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    background: var(--accent);
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;

    cursor: pointer;
    position: absolute;
    left: 0;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    display: block;
}

/* =========================
   HERO
========================= */

.hero {
    padding: 120px 0 80px;
    min-height: 75vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;
    top: -300px;
    left: 50%;

    transform: translateX(-50%);

    width: 1000px;
    height: 1000px;

    background: radial-gradient(
        circle,
        rgba(77,163,255,0.14) 0%,
        rgba(77,163,255,0.04) 45%,
        transparent 75%
    );

    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: "";

    position: absolute;
    top: -130px;
    left: 50%;

    width: 1500px;
    height: 600px;

    background-image: url("assets/cloud-network.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;

    pointer-events: none;

    opacity: 0.22;

    filter:
        drop-shadow(0 0 20px rgba(77,163,255,0.35))
        drop-shadow(0 0 40px rgba(77,163,255,0.20));

    transform: translateX(-50%);

    animation: floatNetwork 16s ease-in-out infinite;

    z-index: 1;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-clouds {
    position: absolute;

    width: min(900px, 100%);
    max-width: 900px;

    top: -140px;
    left: 50%;

    transform: translateX(-50%);

    opacity: 0.20;

    pointer-events: none;
    z-index: 0;

    animation: floatClouds 8s ease-in-out infinite;
}

.hero-logo {
    position: relative;
    z-index: 2;

    width: min(700px, 90%);
    max-width: 700px;
    height: auto;

    filter: drop-shadow(0 0 30px rgba(77,163,255,.25));
}

@keyframes floatClouds {

    0% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-12px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }

}
.hero-clouds {
    position: absolute;

    width: min(900px,100%);
    max-width: 900px;

    top: -140px;
    left: 50%;

    transform: translateX(-50%);

    opacity: 0.20;

    pointer-events: none;
    z-index: 0;

    animation: floatNetwork 8s ease-in-out infinite;
}

.hero-logo {
    position: relative;
    z-index: 2;

    width: min(700px,90%);
    max-width: 700px;
    height: auto;
    margin-bottom: 20px;

    filter: drop-shadow(0 0 30px rgba(77,163,255,0.25));
}

.hero h1 {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.hero-subtext,
.hero p {
    max-width: 680px;
    margin: 0 auto 30px;

    color: var(--text-soft);

    font-size: 0.95rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Floating Animation */

@keyframes floatNetwork {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(20px);
    }
}

.cta-button {
    display: inline-block;

    padding: 14px 26px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    background: var(--accent);
    color: #07111f;

    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* =========================
   SECTIONS
========================= */

.section {
    position: relative;

    opacity: 1;
    transform: none;
}

.section-spacing {
    padding: 80px 0;

    border-top: 1px solid rgba(255,255,255,0.04);
}

.dark-section {
    position: relative;
}

#insights,
#approach,
#impact {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.015),
            rgba(255,255,255,0)
        );
}

.section h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;

    margin-bottom: 20px;
}

.section h2 {
    font-size: clamp(1.5rem, 2.7vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;

    margin-bottom: 20px;
}

.section h3 {
    font-size: 1.1rem;
    font-weight: 700;

    margin-bottom: 12px;
}

.section p {
    color: var(--text-soft);

    max-width: 950px;

    margin-bottom: 18px;
}

.section > .container > p:first-of-type {
    margin-bottom: 24px;
}

.section:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* =========================
   CARDS
========================= */

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;

    margin-top: 30px;
}

.card-grid.horizontal {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;

    background: var(--card-bg);

    padding: 24px;

    border-radius: 18px;

    border: 1px solid var(--border-accent);

    backdrop-filter: blur(10px);

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 10px 30px rgba(0,0,0,0.28);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);

    border-color: rgba(77,163,255,0.55);

    box-shadow:
        0 0 25px rgba(77,163,255,0.12),
        0 18px 40px rgba(0,0,0,0.35);
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 700;

    color: #ffffff;

    margin-bottom: 14px;
}

.card p {
    color: var(--text-soft);

    font-size: 0.95rem;
    line-height: 1.7;

    margin-bottom: 0;

    max-width: none;
}

/* =========================
   SUMMARY PANELS
   (Homepage Summary Sections)
========================= */

.summary-panel {
    max-width: 1000px;

    padding: 36px;

    border-radius: 18px;

    background: var(--card-bg);

    border: 1px solid var(--border-accent);

    backdrop-filter: blur(10px);

    margin-top: 25px;
}

.summary-panel p:last-child {
    margin-bottom: 0;
}

/* =========================
   FINAL CTA
========================= */

.cta-section {
    text-align: center;
}

.cta-panel {
    max-width: 900px;
    margin: 0 auto;

    padding: 60px 50px;

    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(77,163,255,0.08),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(77,163,255,0.18);

    box-shadow:
        0 0 40px rgba(77,163,255,0.08),
        0 20px 50px rgba(0,0,0,0.30);
}

.cta-panel h2 {
    margin-bottom: 20px;
}

.cta-panel p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: var(--text-soft);

    font-size: 1.05rem;
    line-height: 1.9;
}

.cta-panel .cta-button {
    font-size: 15px;
    padding: 15px 30px;
}


/* =========================
   CONTACT INTRO
========================= */

.contact-intro {
    width: 100%;
    max-width: 900px;

    margin: 0 auto 40px;
}

.contact-intro h2 {
    margin-bottom: 18px;
}

.contact-intro p {
    color: var(--text-soft);
    line-height: 1.8;

    margin-bottom: 14px;

    max-width: none;
}

.contact-intro p:last-child {
    margin-bottom: 0;
}

.cta-trust {
    color: var(--text-soft);
    font-size: 1rem;
    margin-bottom: 24px;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section form {
    display: flex;
    flex-direction: column;

    gap: 14px;

    max-width: 700px;

    margin-top: 30px;

    background: rgba(255,255,255,0.03);

    padding: 32px;

    border-radius: 20px;

    border: 1px solid var(--border-accent);

    backdrop-filter: blur(10px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.25);
}

input,
textarea {
    width: 100%;

    padding: 14px 16px;

    border-radius: 10px;

    border: 1px solid var(--border);

    background: rgba(255,255,255,0.04);

    color: var(--text);

    font-family: inherit;
    font-size: 15px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

input:focus,
textarea:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(77,163,255,0.15);

    outline: none;
}

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

button {
    padding: 14px 18px;

    border: none;
    border-radius: 10px;

    background: var(--accent);

    color: #07111f;

    font-weight: 700;
    font-size: 15px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

button:hover {
    background: var(--accent-hover);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(77,163,255,0.25);
}

.form-subnote {
    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.6;
}

/* =========================
   PRIVACY POLICY
========================= */

.privacy-policy {
    max-width: 900px;

    margin: 0 auto;

    padding: 120px 20px 80px;

    color: var(--text-soft);

    line-height: 1.8;
}

.privacy-policy h1 {
    font-size: clamp(2rem, 4vw, 3rem);

    color: var(--text);

    margin-bottom: 20px;
}

.privacy-policy h2 {
    color: var(--text);

    margin-top: 40px;
    margin-bottom: 15px;

    font-size: 1.4rem;
}

.privacy-policy p {
    margin-bottom: 16px;
}

.privacy-policy ul {
    margin: 0 0 20px 25px;
}

.privacy-policy li {
    margin-bottom: 8px;

    color: var(--text-soft);
}
/* =========================
   ADDITIONAL CLOUD LAYERS
========================= */

.cloud {
    position: absolute;

    pointer-events: none;

    background-image: url("assets/cloud-network.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    z-index: 1;

    opacity: 0.10;
}

.cloud-1 {
    top: 20px;
    left: -150px;

    width: 700px;
    height: 250px;

    animation: driftLeft 32s ease-in-out infinite;
}

.cloud-2 {
    top: 60px;
    left: 30%;

    width: 650px;
    height: 220px;

    opacity: 0.08;

    animation: driftRight 40s ease-in-out infinite;
}

.cloud-3 {
    top: 10px;
    right: -180px;

    width: 750px;
    height: 260px;

    opacity: 0.12;

    animation: driftLeft 50s ease-in-out infinite;
}

/* =========================
   NETWORK ANIMATION
========================= */

@keyframes driftLeft {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(35px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes driftRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-35px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes floatNetwork {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);

        opacity: 0.22;
    }

    50% {
        transform: translateX(-50%) translateY(-15px);

        opacity: 0.35;
    }
}
/* =========================
   HERO NAVIGATION
========================= */

.hero-navigation {
    display: flex;
    justify-content: center;

    margin-top: 70px;
    padding-top: 10px;
}

.hero-navigation a,
.hero-navigation a:visited {
    color: var(--accent);
    text-decoration: none;

    font-size: 1.1rem;
    font-weight: 600;

    transition: all 0.3s ease;
}

.hero-navigation a:hover {
    color: var(--accent-hover);

    text-shadow:
        0 0 10px rgba(77,163,255,0.45);
}

/* =========================
   SECTION NAVIGATION
========================= */

.section-navigation {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 900px;

    margin: 70px auto 0;
    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.06);
}

.section-navigation a,
.section-navigation .current {
    flex: 1;
    text-align: center;
}

.section-navigation a,
.section-navigation a:visited {
    color: var(--accent);
    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 600;

    transition: all .3s ease;
}

.section-navigation a:hover {
    color: var(--accent-hover);

    text-shadow:
        0 0 10px rgba(77,163,255,0.45);
}

.section-navigation .current {
    color: #ffffff;
    font-weight: 700;

    pointer-events: none;
    white-space: nowrap;
}

/* =========================
   CTA TRUST
========================= */

.cta-trust {
    margin-top: 18px;

    color: var(--text-muted);

    font-size: 0.95rem;
    line-height: 1.8;

    opacity: 0.9;
}

/* =========================
   TRUST STATEMENT
========================= */

.site-trust {
    display: block;

    width: 100%;

    text-align: center;

    margin: 40px auto 25px;

    color: var(--text-muted);

    font-size: 0.95rem;

    letter-spacing: 0.02em;

    opacity: 0.9;
}

/* =========================
   CONTACT NEXT STEPS
========================= */

.contact-next-steps {
    max-width: 900px;
    margin: 20px 0 30px;
}

.contact-next-steps h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-next-steps p {
    color: var(--text-soft);
}

/* =========================
   FOOTER
========================= */

.footer {
    margin-top: 60px;

    padding: 40px 0;

    border-top: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.01);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-tagline {
    text-align: center;
    color: var(--text-soft);

    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;

    margin-bottom: 24px;
}

.footer-links a,
.footer-link {
    color: var(--text-muted);

    text-decoration: none;

    font-size: 0.9rem;

    transition: color .3s ease;
}

.footer-links a:hover,
.footer-link:hover {
    color: var(--accent);
}

.footer-copyright {
    width: 100%;

    text-align: center;

    color: var(--text-muted);

    font-size: 0.8rem;
}

/* ==========================================
   CONTACT PAGE
========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-intro,
.contact-form-wrapper {
    text-align: left;
}

.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

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

}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 900px) {

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .section-navigation {
        flex-direction: column;
        gap: 14px;
    }

}

@media (max-width: 600px) {

    .nav-links {
        position: absolute;

        top: 65px;
        right: 0;

        width: 240px;

        display: none;
        flex-direction: column;

        background: #0a1024;

        padding: 18px;

        border-radius: 12px;

        border: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .hero {
        padding: 110px 0 70px;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .section-spacing {
        padding: 70px 0;
    }

    .contact-section form {
        padding: 24px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}