/* ================================================= */
/* SEA GLITZ PREMIUM WEBSITE */
/* PART 4A */
/* FOUNDATION + HERO + DASHBOARD + ABOUT */
/* ================================================= */

/* ==========================
ROOT VARIABLES
========================== */

:root {

    --primary: #071a35;
    --primary-light: #0d2b57;
    --secondary: #0ea5ff;
    --accent: #00d4ff;
    --cyan: #00e5ff;

    --dark: #020817;
    --dark-light: #081426;

    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);

    --white: #ffffff;
    --gray: #c5d2e3;
    --gray-light: #e9f0f7;

    --success: #00d084;
    --warning: #ffb703;

    --shadow-lg:
        0 30px 60px rgba(0, 0, 0, .30);

    --shadow-md:
        0 15px 40px rgba(0, 0, 0, .20);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;

    --transition:
        all .35s ease;

    --container:
        1300px;

}

/* ==========================
RESET
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Inter', sans-serif;

    background:
        linear-gradient(180deg,
            #020817 0%,
            #071a35 100%);

    color: var(--white);

    overflow-x: hidden;

    line-height: 1.7;

}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button,
input {
    font-family: inherit;
    outline: none;
    border: none;
}

/* ==========================
CONTAINER
========================== */

.container {

    width: min(var(--container),
            92%);

    margin: auto;

}

/* ==========================
CUSTOM SCROLLBAR
========================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #04101f;
}

::-webkit-scrollbar-thumb {

    background:
        linear-gradient(180deg,
            var(--accent),
            var(--secondary));

    border-radius: 20px;

}

/* ==========================
SELECTION
========================== */

::selection {

    background:
        var(--accent);

    color: #000;

}

/* ==========================
PARTICLE BACKGROUND
========================== */

#particles-js {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: -2;

    pointer-events: none;

}

/* ==========================
PRELOADER
========================== */

#preloader {

    position: fixed;

    inset: 0;

    background: #010814;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    z-index: 99999;

}

.loader-ring {

    width: 90px;
    height: 90px;

    border-radius: 50%;

    border: 5px solid rgba(255, 255, 255, .1);

    border-top:
        5px solid var(--accent);

    animation:
        spin 1s linear infinite;

}

.loader-text {

    margin-top: 20px;

    letter-spacing: 4px;

    font-size: .9rem;

    font-weight: 700;

    color: var(--accent);

}

@keyframes spin {

    100% {
        transform: rotate(360deg);
    }

}

/* ==========================
TYPOGRAPHY
========================== */

h1,
h2,
h3,
h4,
h5 {

    font-weight: 700;

    line-height: 1.15;

}

.section-title {

    max-width: 900px;

    margin-bottom: 70px;

}

.section-title.center {

    text-align: center;
    margin-left: auto;
    margin-right: auto;

}

.section-title span {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 999px;

    background:
        rgba(0, 212, 255, .1);

    border:
        1px solid rgba(0, 212, 255, .2);

    color: var(--accent);

    font-size: .8rem;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 20px;

}

.section-title h2 {

    font-size:
        clamp(2.2rem,
            4vw,
            4rem);

    margin-bottom: 20px;

}

.section-title p {

    color: var(--gray);

    font-size: 1.05rem;

}

/* ==========================
BUTTONS
========================== */

.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding:
        15px 32px;

    border-radius: 999px;

    font-weight: 600;

    cursor: pointer;

    transition:
        var(--transition);

}

.btn-primary {

    background:
        linear-gradient(135deg,
            var(--accent),
            var(--secondary));

    color: #001018;

    box-shadow:
        0 15px 35px rgba(0, 212, 255, .25);

}

.btn-primary:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 20px 45px rgba(0, 212, 255, .35);

}

.btn-outline {

    border:
        1px solid rgba(255, 255, 255, .25);

    background:
        rgba(255, 255, 255, .04);

    backdrop-filter:
        blur(15px);

}

.btn-outline:hover {

    background:
        rgba(255, 255, 255, .08);

}

/* ==========================
HEADER
========================== */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 500;

    padding: 22px 0;

    transition: .4s ease;

}

.header.scrolled {

    background:
        rgba(3, 10, 22, .95);

    backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid rgba(255, 255, 255, .08);

}

.navbar {

    display: flex;

    align-items: center;
    justify-content: space-between;

}

.logo img {

    height: auto;
    /* opacity: 1; */
    background: white;
    padding: 15px;
    width: 140px;

}

.nav-links {

    display: flex;
    gap: 40px;

}

.nav-links a {

    font-weight: 500;

    color: var(--gray);

    transition: .3s;

}

.nav-links a:hover {

    color: var(--accent);

}

.nav-actions {

    display: flex;
    align-items: center;
    gap: 15px;

}

/* ==========================
MOBILE MENU BUTTON
========================== */

.mobile-toggle {

    display: none;

    background: none;

    cursor: pointer;

}

.mobile-toggle span {

    display: block;

    width: 28px;
    height: 3px;

    margin: 6px 0;

    border-radius: 20px;

    background: #fff;

    transition: .3s;

}

/* ==========================
HERO
========================== */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    padding-top: 130px;

    overflow: hidden;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(circle at 20% 20%,
            rgba(0, 212, 255, .15),
            transparent 40%),

        radial-gradient(circle at 80% 40%,
            rgba(14, 165, 255, .12),
            transparent 40%);

    z-index: -1;

}

.hero-grid {

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 80px;

    align-items: center;

}

.eyebrow {

    display: inline-block;

    padding: 10px 18px;

    background:
        rgba(0, 212, 255, .08);

    border:
        1px solid rgba(0, 212, 255, .2);

    border-radius: 999px;

    color: var(--accent);

    font-size: .85rem;

    font-weight: 600;

    margin-bottom: 25px;

}

.hero-content h1 {

    font-size:
        clamp(3.5rem,
            4.5vw,
            6.8rem);

    line-height: 1;

    margin-bottom: 25px;

}

.hero-content h1 span {

    background:
        linear-gradient(135deg,
            var(--accent),
            #ffffff);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.hero-content p {

    font-size: 1.2rem;

    max-width: 700px;

    color: var(--gray);

    margin-bottom: 20px;

}

.hero-subtext {

    color: #9eb2ca;

    font-size: 1rem;

    margin-bottom: 35px;

    max-width: 650px;

}

.hero-badges {

    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    margin-bottom: 40px;

}

.badge {

    padding: 12px 18px;

    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 999px;

    display: flex;
    align-items: center;
    gap: 10px;

}

.hero-buttons {

    display: flex;
    gap: 20px;
    flex-wrap: wrap;

}

/* ==========================
DASHBOARD
========================== */

.hero-dashboard {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;

}

.dashboard-card {

    background:
        var(--glass);

    backdrop-filter:
        blur(25px);

    border:
        1px solid var(--glass-border);

    border-radius:
        var(--radius-md);

    padding: 25px;

    box-shadow:
        var(--shadow-md);

    transition:
        var(--transition);

}

.dashboard-card:hover {

    transform:
        translateY(-6px);

}

.card-header {

    font-size: .9rem;

    color: var(--gray);

    margin-bottom: 18px;

}

/* Fleet */

.fleet-card {

    grid-column: span 2;

}

.fleet-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

}

.metric {

    text-align: center;

}

.metric h3 {

    font-size: 2rem;

    color: var(--accent);

}

/* Compliance */

.compliance-card {

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-height: 220px;

}

.score-circle {

    width: 120px;
    height: 120px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 2rem;
    font-weight: 700;

    background:
        conic-gradient(var(--accent) 92%,
            rgba(255, 255, 255, .08) 0);

}

/* Graph */

.graph {

    height: 120px;

    border-radius: 12px;

    background:
        linear-gradient(180deg,
            rgba(0, 212, 255, .15),
            transparent);

    position: relative;

    overflow: hidden;

}

.line-chart {

    position: absolute;

    left: 0;
    bottom: 20px;

    width: 100%;
    height: 3px;

    background: var(--accent);

    transform:
        skewY(-12deg);

}

/* Map */

.map-card img {

    opacity: .85;

    filter:
        drop-shadow(0 0 25px rgba(0, 212, 255, .3));

}

/* Competency */

.competency-card {

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    min-height: 180px;

}

.competency-card h3 {

    font-size: 3rem;

    color: var(--accent);

}

/* ================================================= */
/* PART 4B */
/* ABOUT + ECOSYSTEM + PLATFORMS + MAP + ROADMAP */
/* ================================================= */

/* ==========================
ABOUT SECTION
========================== */

.about-section {
    padding: 40px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
}

.feature-item i {
    color: var(--accent);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.floating-location {
    position: absolute;
    bottom: 30px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-item {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(0, 212, 255, .15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, .2);
}

/* ==========================
VISION & MISSION
========================== */

.vision-mission-section {
    padding: 40px 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, .02),
            transparent);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vision-card {
    padding: 45px;
    border-radius: 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    transition: .4s;
}

.vision-card:hover {
    transform: translateY(-10px);
}

.vm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg,
            var(--accent),
            var(--secondary));
    color: #001018;
}

/* ==========================
ECOSYSTEM SECTION
========================== */

.ecosystem-section {
    padding: 40px 0;
}

.ecosystem-visual {

    position: relative;

    height: 950px;

    max-width: 1200px;

    margin: 80px auto 0;

}

/* ===========================
CENTER CORE
=========================== */

.eco-core {

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #00d4ff,
            #0099ff);

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    z-index: 5;

    box-shadow:
        0 0 60px rgba(0, 212, 255, .5);

}

.eco-core h2 {

    color: #001018;

    font-size: 2.2rem;

    margin-bottom: 10px;

}

.eco-core p {

    color: #001018;

    font-weight: 700;

}

.eco-core span {

    margin-top: 10px;

    font-size: .9rem;

    color: #00324d;

}

/* ===========================
CARDS
=========================== */

.eco-card {

    position: absolute;

    width: 240px;

    padding: 28px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, .05);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .08);

    text-align: center;

    transition: all .35s ease;

}

.eco-card:hover {
    border-color: #00d4ff;
    box-shadow:
        0 0 20px rgba(0, 212, 255, .25),
        0 0 50px rgba(0, 212, 255, .15);
}

.eco-icon {

    width: 70px;
    height: 70px;

    margin: auto auto 20px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(0, 212, 255, .15);

}

.eco-icon i {

    color: #00d4ff;

    font-size: 28px;

}

.eco-card h4 {

    margin-bottom: 10px;

    font-size: 1.2rem;

}

.eco-card p {

    color: #b9c7d8;

    font-size: .95rem;

}

/* ===========================
POSITIONS
=========================== */

.top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.right-top {
    top: 120px;
    right: 0;
}

.right-bottom {
    bottom: 120px;
    right: 0;
}

.bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.left-bottom {
    bottom: 120px;
    left: 0;
}

.left-top {
    top: 120px;
    left: 0;
}

.left-top:hover,
.left-bottom:hover,
.right-top:hover,
.right-bottom:hover {

    transform: translateY(-10px);

    border-color: #00d4ff;

    box-shadow:
        0 20px 40px rgba(0, 212, 255, .15);

}

.top:hover {

    transform:
        translateX(-50%) translateY(-10px);

    border-color: #00d4ff;

    box-shadow:
        0 20px 40px rgba(0, 212, 255, .15);

}

.bottom:hover {

    transform:
        translateX(-50%) translateY(-10px);

    border-color: #00d4ff;

    box-shadow:
        0 20px 40px rgba(0, 212, 255, .15);

}


/* ===========================
LINES
=========================== */

.eco-lines {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

}

.eco-lines line {

    stroke: #00d4ff;

    stroke-width: 2;

    opacity: .5;

    stroke-dasharray: 10 10;

    animation:
        ecoFlow 8s linear infinite;

}

@keyframes ecoFlow {

    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -100;
    }

}

@media(max-width:992px) {

    .ecosystem-visual {

        height: auto;

        display: grid;

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .eco-lines {
        display: none;
    }

    .eco-core,
    .eco-card {

        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        transform: none;

        width: 100%;

        max-width: 500px;

        margin: auto;

    }

    .eco-core {

        height: 260px;

        border-radius: 30px;

    }

}


/* ==========================
PLATFORMS
========================== */

.platform-section {
    padding: 40px 0;
}

.alt-bg {
    background: rgba(255, 255, 255, .02);
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-grid.reverse .platform-dashboard {
    order: 1;
}

.platform-grid.reverse .platform-content {
    order: 2;
}

.platform-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 212, 255, .08);
    color: var(--accent);
    margin-bottom: 20px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.platform-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.platform-content h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.platform-content p {
    color: var(--gray);
    margin-bottom: 25px;
}

.feature-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin: 30px 0;
}

.feature-columns ul li {
    margin-bottom: 12px;
    color: var(--gray);
}

.feature-list-modern {
    margin: 35px 0;
}

.feature-list-modern li {
    padding: 16px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, .04);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .05);
}

/* ==========================
GLASS PANELS
========================== */

.platform-card-glass,
.training-dashboard,
.audit-screen,
.human-factor-panel {

    background: var(--glass);

    backdrop-filter: blur(25px);

    border: 1px solid var(--glass-border);

    border-radius: 28px;

    padding: 35px;

    box-shadow: var(--shadow-lg);

}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.analytics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.analytic-box {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    text-align: center;
}

.analytic-box h3 {
    color: var(--accent);
    font-size: 2rem;
}

.progress-item span {
    display: block;
    margin-bottom: 10px;
}

.progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, .08);
    border-radius: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg,
            var(--accent),
            var(--secondary));
    border-radius: 20px;
}

/* ==========================
TRAINING DASHBOARD
========================== */

.training-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.training-grid span {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    text-align: center;
}

/* ==========================
AUDIT SCREEN
========================== */

.audit-score {
    text-align: center;
    margin-bottom: 30px;
}

.audit-score h2 {
    font-size: 4rem;
    color: var(--accent);
}

.audit-bars {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    height: 180px;
}

.audit-bar {
    flex: 1;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(180deg,
            var(--accent),
            var(--secondary));
}

.audit-bar:nth-child(1) {
    height: 55%;
}

.audit-bar:nth-child(2) {
    height: 85%;
}

.audit-bar:nth-child(3) {
    height: 70%;
}

.audit-bar:nth-child(4) {
    height: 95%;
}

/* ==========================
HUMAN FACTOR PANEL
========================== */

.human-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.hm-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, .04);
    border-radius: 18px;
}

.hm-item {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.hm-item span {
    display: block;
    font-size: .9rem;
    color: var(--gray);
    margin-top: 8px;
}

.highlight-box {
    padding: 25px;
    border-left: 4px solid var(--accent);
    background: rgba(0, 212, 255, .08);
    margin: 30px 0;
    border-radius: 12px;
}

/* ==========================
WHY SECTION
========================== */

.why-section {
    padding: 40px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    padding: 35px;
    border-radius: 22px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: .35s;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.why-card p {
    color: var(--gray);
    margin-top: 15px;
}

/* ==========================
INDUSTRIES
========================== */

.industries-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, .02);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.industry-card {
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: .35s;
}

.industry-card:hover {
    transform: translateY(-8px);
}

.industry-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* ==========================
GLOBAL MAP
========================== */

.global-section {
    padding: 40px 0;
    position: relative;
}

.world-map-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.world-map {
    opacity: .85;
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, .25));
}

.map-marker {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow:
        0 0 20px var(--accent),
        0 0 40px var(--accent);
}

.map-marker span {
    position: absolute;
    top: 25px;
    left: -10px;
    white-space: nowrap;
    font-size: .9rem;
}

.dubai {
    top: 47%;
    left: 58%;
}

.india {
    top: 45%;
    left: 66%;
}

.singapore {
    top: 61%;
    left: 72%;
}

.greece {
    top: 35%;
    left: 50%;
}

.map-marker::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(.6);
        opacity: 1;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/* ==========================
ROADMAP
========================== */

.roadmap-section {
    padding: 40px 0;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.roadmap-item {
    padding: 35px;
    border-radius: 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
}

.roadmap-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg,
            var(--accent),
            var(--secondary));
    color: #001018;
}

.roadmap-item p {
    color: var(--gray);
    margin-top: 15px;
}

/* ==========================
LEADERSHIP
========================== */

.leadership-section {
    padding: 40px 0;
}

.leadership-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    border-radius: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
}

.leader-image img {
    border-radius: 25px;
}

.leader-content span {
    display: block;
    color: var(--accent);
    margin: 12px 0 20px;
}

.leader-content p {
    color: var(--gray);
    margin-bottom: 25px;
}

.leadership-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.leadership-tags span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0, 212, 255, .1);
    border: 1px solid rgba(0, 212, 255, .15);
}

/* ================================================= */
/* PART 4C */
/* CTA + FOOTER + RESPONSIVE + ANIMATIONS */
/* ================================================= */

/* ==========================
STATISTICS BAND
========================== */

.statistics-band {
    padding: 80px 0;
    background:
        linear-gradient(135deg,
            rgba(0, 212, 255, .08),
            rgba(14, 165, 255, .05));
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.stats-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.band-item {
    text-align: center;
}

.band-item h2 {
    font-size: 3.5rem;
    color: var(--accent);
    font-weight: 800;
}

.band-item p {
    color: var(--gray);
}

/* ==========================
PREMIUM CTA
========================== */

.premium-cta {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
            rgba(0, 212, 255, .15),
            transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 900px;
    margin: auto;
    text-align: center;
    z-index: 2;
}

.cta-content span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 212, 255, .1);
    border: 1px solid rgba(0, 212, 255, .15);
    color: var(--accent);
    font-size: .85rem;
    margin-bottom: 25px;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 750px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================
NEWSLETTER
========================== */

.newsletter-section {
    padding: 100px 0;
}

.newsletter-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 50px;
    border-radius: 30px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.newsletter-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: var(--gray);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-form input {
    width: 320px;
    padding: 18px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: white;
}

.newsletter-form button {
    padding: 18px 28px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    background:
        linear-gradient(135deg,
            var(--accent),
            var(--secondary));
    color: #001018;
}

/* ==========================
FOOTER
========================== */

.footer {
    padding: 40px 0 40px;
    background: #010712;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-grid {
    display: grid;
    grid-template-columns:
        1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer h3,
.footer h4 {
    margin-bottom: 20px;
}

.footer p,
.footer li {
    color: #9fb2c7;
    margin-bottom: 10px;
}

.footer ul li {
    transition: .3s;
    cursor: pointer;
}

.footer ul li:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: center;
}

/* ==========================
FLOATING ANIMATIONS
========================== */

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatMedium {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow:
            0 0 15px rgba(0, 212, 255, .2);
    }

    50% {
        box-shadow:
            0 0 40px rgba(0, 212, 255, .5);
    }
}

.dashboard-card {
    animation: floatSlow 6s ease-in-out infinite;
}

.compliance-card {
    animation: floatMedium 7s ease-in-out infinite;
}

.center-circle {
    animation: glow 3s infinite;
}

/* ==========================
SCROLL REVEAL
========================== */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
UTILITY CLASSES
========================== */

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

.hidden {
    display: none;
}

/* ==========================
TABLET RESPONSIVE
========================== */

@media (max-width:1200px) {

    .hero-grid,
    .about-grid,
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .leadership-card {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-dashboard {
        max-width: 700px;
        margin: auto;
    }

}

/* ==========================
MEDIUM DEVICES
========================== */

@media (max-width:992px) {

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .stats-grid,
    .stats-band-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roadmap-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .feature-columns {
        grid-template-columns: 1fr;
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }

    .ecosystem-visual {
        height: 900px;
    }

}

/* ==========================
MOBILE DEVICES
========================== */

@media (max-width:768px) {

    .hero {
        padding-top: 140px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-badges,
    .hero-buttons {
        justify-content: center;
    }

    .hero-dashboard {
        grid-template-columns: 1fr;
    }

    .fleet-card {
        grid-column: auto;
    }

    .stats-grid,
    .stats-band-grid,
    .why-grid,
    .industries-grid,
    .roadmap-timeline {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .training-grid {
        grid-template-columns: 1fr;
    }

    .human-metrics {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-box {
        padding: 35px;
    }

    .platform-content h2 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2.3rem;
    }

    .ecosystem-visual {
        display: none;
    }

    .about-grid {
        gap: 40px;
    }

    .floating-location {
        position: static;
        margin-top: 20px;
        flex-direction: row;
        flex-wrap: wrap;
    }

}

/* ==========================
SMALL PHONES
========================== */

@media (max-width:480px) {

    .container {
        width: 94%;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .badge {
        width: 100%;
        justify-content: center;
    }

    .metric h3 {
        font-size: 1.5rem;
    }

    .band-item h2 {
        font-size: 2.3rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .newsletter-content h3 {
        font-size: 1.5rem;
    }

}

/* ================================================= */
/* END OF PART 4C */
/* ================================================= */

/* Mobile Menu */

.mobile-open {
    display: flex !important;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #04101f;
    padding: 30px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.nav-links a.active {
    color: #00d4ff;
}

/* Particle Animation */

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 212, 255, .6);
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-300px);
        opacity: 0;
    }
}

/* ==========================================
THREE JS OCEAN
========================================== */

#ocean-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: hidden;
}

#ocean-background canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Hero glow */

.hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background:
        radial-gradient(circle,
            rgba(0, 212, 255, .18),
            transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
    filter: blur(80px);
}

/* ==========================================
STATS SECTION
========================================== */

.stats-section {
    position: relative;
    z-index: 10;
    padding-top: 60px;
    padding-bottom: 80px;
}

.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

    max-width: 1300px;

    margin: auto;

}

.stat-card {

    background:
        rgba(255, 255, 255, .05);

    backdrop-filter:
        blur(20px);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    padding: 30px;

    text-align: center;

    transition: .4s ease;

}

.stat-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(0, 212, 255, .4);

    box-shadow:
        0 20px 50px rgba(0, 212, 255, .15);

}

.stat-card .icon {

    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            rgba(0, 212, 255, .2),
            rgba(14, 165, 255, .2));

}

.stat-card .icon i {

    font-size: 28px;

    color: #00d4ff;

}

.stat-card h2 {

    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 10px;

    color: #ffffff;

}

.stat-card p {

    color: #b7c4d8;

    font-size: 1rem;

    margin: 0;

}

@media (max-width:992px) {

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media (max-width:768px) {

    .stats-grid {
        grid-template-columns: 1fr;
    }

}

/* ==========================================
   BUSINESS DIVISIONS
========================================== */

.business-divisions {
    padding: 40px 0;
    background: rgba(255, 255, 255, .02);
}

.division-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.division-card {
    padding: 40px;
    border-radius: 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    transition: .35s;
}

.division-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, .4);
    box-shadow: 0 20px 50px rgba(0, 212, 255, .15);
}

.division-card>i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.division-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.division-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.division-card ul li {
    padding: 8px 0;
    color: var(--gray);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .95rem;
}

.division-card ul li:last-child {
    border-bottom: none;
}

/* ==========================================
   MEDIA SECTION
========================================== */

.media-section {
    padding: 40px 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.media-card {
    padding: 38px;
    border-radius: 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    transition: .35s;
}

.media-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, .35);
    box-shadow: 0 20px 50px rgba(0, 212, 255, .12);
}

.media-card-highlight {
    border-color: rgba(0, 212, 255, .2);
    background: rgba(0, 212, 255, .05);
}

.media-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, .2), rgba(14, 165, 255, .2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.media-icon i {
    font-size: 1.6rem;
    color: var(--accent);
}

.media-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.media-card p {
    color: var(--gray);
    font-size: .97rem;
}

.media-list {
    list-style: none;
    margin-top: 16px;
}

.media-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray);
    font-size: .95rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.media-list li:last-child {
    border-bottom: none;
}

.media-list li i {
    color: var(--accent);
    font-size: .8rem;
}

/* ==========================================
   EVENTS SECTION
========================================== */

.events-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, .02);
}

.events-flagship {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 60px;
    backdrop-filter: blur(20px);
}

.flagship-header {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 40px;
    letter-spacing: .5px;
}

.flagship-header i {
    font-size: 1.3rem;
}

.flagship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.flagship-item {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    transition: .35s;
}

.flagship-item:hover {
    border-color: rgba(0, 212, 255, .3);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, .1);
}

.flagship-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #001018;
    font-size: 1.3rem;
}

.flagship-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.flagship-item p {
    color: var(--gray);
    font-size: .92rem;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.event-type {
    text-align: center;
    padding: 28px 18px;
    border-radius: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: .35s;
}

.event-type:hover {
    border-color: rgba(0, 212, 255, .3);
    transform: translateY(-6px);
}

.event-type>i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}

.event-type h4 {
    font-size: .95rem;
    margin-bottom: 8px;
}

.event-type p {
    font-size: .82rem;
    color: var(--gray);
}

/* ==========================================
   RESPONSIVE — MEDIA & EVENTS
========================================== */

@media (max-width: 1200px) {
    .event-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .division-grid,
    .media-grid,
    .flagship-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .division-grid,
    .media-grid,
    .flagship-grid,
    .event-types-grid {
        grid-template-columns: 1fr;
    }

    .events-flagship {
        padding: 30px 24px;
    }
}