/* ============================================
   AeilON COMMODITIES - Cinematic Design System
   "Odds Over Opinion"
   ============================================ */

:root {
    /* Brand Colors - From Logo */
    --primary-blue: #052699;
    --blue-2: #062A9B;
    --blue-3: #0834A1;
    --blue-4: #0B47AB;
    --blue-5: #0F60BA;
    --blue-6: #1581CC;
    --blue-7: #1DA9E2;
    --primary-cyan: #20BCED;

    /* Extended Palette */
    --bg-deep: #000000;
    --bg-dark: #0a0a0f;
    --bg-surface: #0f0f1a;
    --bg-elevated: #151520;

    --text-primary: #ffffff;
    --text-secondary: #b4b4c4;
    --text-muted: #6b6b7a;

    --accent-glow: rgba(32, 188, 237, 0.3);
    --accent-glow-strong: rgba(32, 188, 237, 0.6);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
    --grad-text: linear-gradient(135deg, #ffffff 0%, var(--primary-cyan) 100%);
    --grad-glow: radial-gradient(circle, rgba(5, 38, 153, 0.4) 0%, transparent 70%);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --container-max: min(90vw, 1920px);
    --section-padding: clamp(80px, 12vw, 160px);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary-cyan);
    color: var(--bg-deep);
}

/* Cursor styles removed */

/* ============================================
   Hero Section Re-style
   ============================================ */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-logo-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 0 3rem 0;
    /* Removing auto margin */
    animation: zoomIn 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: scale(0.8);
}

.hero-main-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(32, 188, 237, 0.1));
    /* Reduced from 30px 0.2 */
}

.hero-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(32, 188, 237, 0.2) 0%, transparent 70%);
    z-index: -1;
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    /* Changed from 700 to 300 (Light) */
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    /* Changed from center to flex-start */
}

.tagline-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.tagline-line:nth-child(1) {
    animation-delay: 2.8s;
    /* Delayed after logo */
}

.tagline-line:nth-child(2) {
    animation-delay: 3.0s;
}

/* Hero Statement Block */
.hero-statement {
    max-width: 620px;
    margin: 2rem 0 2rem auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 3.2s forwards;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: right;
    align-self: flex-end;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    font-weight: 500;
    line-height: 1.4;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.hero-accent-line {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-cyan);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    /* Changed from center to flex-start */
    flex-wrap: wrap;
    margin-bottom: 5rem;
    animation: fadeInUp 1s ease-out 3.4s both;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 5vw;
    /* Changed from 50% */
    transform: none;
    /* Removed translate */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align left */
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    animation: fadeIn 1s ease-out 2.2s both;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 5vw;
    transition: background 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    /* Removed background as requested */
}

.nav-wrapper {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo-img {
    width: 40px;
    height: 40px;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover .nav-link-underline {
    width: 100%;
}

.nav-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-padding) 5vw;
    overflow: hidden;
}

.global-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--bg-deep);
    /* Ensure dark background behind canvas */
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Wind Farm */
.wind-farm {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.turbine-wrap {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 96px;
    height: 192px;
}

.turbine-rotor {
    position: absolute;
    top: 0;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: turbineSpin linear infinite;
}

@keyframes turbineSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.turbine-hub {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    z-index: 2;
}

.turbine-hub-accent {
    background: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.turbine-blade {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 48px;
    transform-origin: top center;
    transform: rotate(var(--deg)) translateY(-2px);
    background: var(--text-muted);
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 20% 100%);
    border-radius: 9999px;
    opacity: 0.9;
}

.turbine-blade-accent {
    background: var(--primary-cyan);
}

.turbine-tower {
    width: 4px;
    height: 144px;
    margin-top: 48px;
    border-radius: 0 0 2px 2px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    opacity: 0.8;
}

.turbine-tower-accent {
    background: linear-gradient(to bottom, var(--primary-cyan), transparent);
}

.turbine-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: var(--primary-cyan);
    filter: blur(40px);
    opacity: 0.20;
    pointer-events: none;
}

.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(5, 38, 153, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(32, 188, 237, 0.1) 0%, transparent 60%);
    z-index: 0;
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite;
}

.hero-particles .particle:nth-child(1) {
    left: 20%;
    top: 20%;
    animation-delay: 0s;
}

.hero-particles .particle:nth-child(2) {
    left: 60%;
    top: 40%;
    animation-delay: 3s;
}

.hero-particles .particle:nth-child(3) {
    left: 80%;
    top: 60%;
    animation-delay: 6s;
}

.hero-particles .particle:nth-child(4) {
    left: 30%;
    top: 80%;
    animation-delay: 9s;
}

.hero-particles .particle:nth-child(5) {
    left: 70%;
    top: 10%;
    animation-delay: 12s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    10%,
    90% {
        opacity: 0.6;
    }

    50% {
        transform: translate(100px, -100px) scale(1.5);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    width: 100%;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(32, 188, 237, 0.1);
    border: 1px solid rgba(32, 188, 237, 0.3);
    border-radius: 50px;
    color: var(--primary-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.5s both;
    position: relative;
}

.hero-badge::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: var(--grad-primary);
    opacity: 0;
    z-index: -1;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 0.2;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: titleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.8s;
}

.title-line:nth-child(2) {
    animation-delay: 1s;
}

.title-line:nth-child(3) {
    animation-delay: 1.2s;
}

.title-line:nth-child(4) {
    animation-delay: 1.4s;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-line.highlight {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 1.6s both;
}

.subtitle-highlight {
    color: var(--primary-cyan);
    font-weight: 600;
    font-style: italic;
    text-shadow: 0 0 20px rgba(32, 188, 237, 0.5);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
    animation: fadeInUp 1s ease-out 1.8s both;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 2s both;
}

.hero-stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    animation: fadeIn 1s ease-out 2.2s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--grad-primary);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(0);
        opacity: 0;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(32, 188, 237, 0.5);
}

.btn-secondary:hover {
    background: rgba(32, 188, 237, 0.1);
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn:hover svg {
    transform: translateX(5px);
}

/* ============================================
   Sections
   ============================================ */

section {
    position: relative;
    padding: var(--section-padding) 5vw;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-header {
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(32, 188, 237, 0.1);
    border: 1px solid rgba(32, 188, 237, 0.3);
    border-radius: 50px;
    color: var(--primary-cyan);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    /* Lighter weight */
    letter-spacing: 0.02em;
    line-height: 1.3;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.title-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-bottom: 0.2em;
    margin-bottom: -0.2em;
}

/* ============================================
   About Section
   ============================================ */

.about {
    background: transparent;
    /* Changed from var(--bg-surface) */
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.lead {
    font-size: 1.75rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 500;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.about-text p strong {
    color: var(--primary-cyan);
    font-weight: 600;
}

/* ============================================
   Services Section
   ============================================ */

.services {
    background: transparent;
    /* Changed from var(--bg-dark) */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-surface);
    border: 1px solid rgba(32, 188, 237, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(32, 188, 237, 0.3);
    box-shadow: 0 10px 30px rgba(32, 188, 237, 0.1);
    /* Reduced from 0 20px 60px 0.2 */
    background: var(--bg-elevated);
}

/* Flaticon-style animated line icons */
.service-icon {
    width: 50px;
    /* Slightly larger for detail */
    height: 50px;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-icon svg path,
.service-icon svg circle,
.service-icon svg rect,
.service-icon svg polyline,
.service-icon svg line {
    fill: none;
    stroke: var(--primary-cyan);
    stroke-width: 1.5;
    /* Ensure visibility */
    stroke-dasharray: 100;
    /* Assumes max path length ~100 */
    stroke-dashoffset: 100;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: drawLines 3s ease-in-out infinite;
}

/* Stagger animations */
.service-card:nth-child(1) .service-icon svg * {
    animation-delay: 0s;
}

.service-card:nth-child(2) .service-icon svg * {
    animation-delay: 0.5s;
}

.service-card:nth-child(3) .service-icon svg * {
    animation-delay: 1.0s;
}

.service-card:nth-child(4) .service-icon svg * {
    animation-delay: 1.5s;
}

@keyframes drawLines {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        stroke-dashoffset: 0;
    }

    80% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: -100;
        /* Continues drawing out */
        opacity: 0;
    }
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   Platform Section - Cinematic
   ============================================ */

.platform {
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Wind Turbine Canvas */
.wind-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Floating glow orbs for depth */
.platform-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.platform-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 38, 153, 0.12) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation: orbFloat 12s ease-in-out infinite;
}

.platform-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(32, 188, 237, 0.06) 0%, transparent 70%);
    bottom: 10%;
    right: -5%;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -40px); }
}

/* Platform Statement */
.platform-statement {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.platform-statement-sub {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

/* ---- Animated Network Graph ---- */
.network-graph {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 2;
}

.network-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

/* Connection Lines */
.net-line {
    stroke: rgba(32, 188, 237, 0.12);
    stroke-width: 1;
    stroke-dasharray: 6 4;
}

.net-line-highlight {
    stroke: rgba(32, 188, 237, 0.25);
    stroke-width: 1.5;
    stroke-dasharray: none;
}

/* Animated Pulse Dots */
.net-pulse {
    fill: rgba(32, 188, 237, 0.6);
    filter: drop-shadow(0 0 4px rgba(32, 188, 237, 0.4));
}

.net-pulse-core {
    fill: var(--primary-cyan);
    filter: drop-shadow(0 0 8px rgba(32, 188, 237, 0.6));
}

/* Node Circles */
.net-node {
    fill: rgba(15, 15, 26, 0.7);
    stroke: rgba(32, 188, 237, 0.15);
    stroke-width: 1;
    transition: all 0.4s;
}

.net-node-active {
    fill: rgba(15, 15, 26, 0.8);
    stroke: rgba(32, 188, 237, 0.35);
    stroke-width: 1.5;
}

.net-node-sm {
    fill: rgba(15, 15, 26, 0.6);
    stroke: rgba(32, 188, 237, 0.12);
    stroke-width: 1;
}

/* Glow behind core nodes */
.net-glow {
    fill: rgba(32, 188, 237, 0.04);
    animation: netGlowPulse 4s ease-in-out infinite;
}

@keyframes netGlowPulse {
    0%, 100% { fill: rgba(32, 188, 237, 0.03); }
    50% { fill: rgba(32, 188, 237, 0.08); }
}

/* SVG Icons inside nodes */
.net-svg-icon {
    color: var(--text-secondary);
}

.net-svg-icon-core {
    color: var(--primary-cyan);
}

.net-svg-icon-sm {
    color: var(--text-muted);
}

/* Labels */
.net-label {
    font-family: var(--font-body);
    font-size: 10px;
    fill: var(--text-muted);
    text-anchor: middle;
    letter-spacing: 0.04em;
}

.net-label-core {
    font-family: var(--font-display);
    font-size: 12px;
    fill: var(--primary-cyan);
    text-anchor: middle;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.net-label-sub {
    font-family: var(--font-body);
    font-size: 9px;
    fill: var(--text-muted);
    text-anchor: middle;
    letter-spacing: 0.03em;
}

.net-section-label {
    font-family: var(--font-display);
    font-size: 10px;
    fill: rgba(32, 188, 237, 0.3);
    text-anchor: middle;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsive: scale graph on mobile */
@media (max-width: 768px) {
    .network-graph {
        margin-top: 2rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .network-svg {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .network-svg {
        min-width: 500px;
    }
}

/* ---- Architecture Flow Diagram ---- */
.arch-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 3rem 0;
    position: relative;
}

.arch-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
    width: 120px;
    flex-shrink: 0;
}

.arch-node-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid rgba(32, 188, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: var(--text-secondary);
    transition: all 0.4s;
}

.arch-node-icon svg {
    width: 100%;
    height: 100%;
}

.arch-node-highlight .arch-node-icon {
    border-color: rgba(32, 188, 237, 0.35);
    color: var(--primary-cyan);
    background: rgba(32, 188, 237, 0.05);
}

.arch-node-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    white-space: nowrap;
}

.arch-node-highlight .arch-node-label {
    color: var(--primary-cyan);
}

/* Connector with animated pulse */
.arch-connector {
    flex: 1;
    min-width: 60px;
    height: 2px;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 32px; /* Half of 64px icon = vertically centered with circle */
}

.arch-connector-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(32, 188, 237, 0.1), rgba(32, 188, 237, 0.3), rgba(32, 188, 237, 0.1));
}

.arch-connector-pulse {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-cyan);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(32, 188, 237, 0.3);
    animation: dataPulse 2.5s ease-in-out infinite;
}

.arch-connector:nth-child(2) .arch-connector-pulse { animation-delay: 0s; }
.arch-connector:nth-child(4) .arch-connector-pulse { animation-delay: 0.4s; }
.arch-connector:nth-child(6) .arch-connector-pulse { animation-delay: 0.8s; }

@keyframes dataPulse {
    0% { left: -4px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(100% - 4px); opacity: 0; }
}

/* ---- Platform Cards - Glassmorphic ---- */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.platform-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(15, 15, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(32, 188, 237, 0.12);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.platform-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(32, 188, 237, 0.06) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.5s;
    opacity: 0;
}

.platform-card:hover {
    transform: translateY(-6px);
    border-color: rgba(32, 188, 237, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.platform-card:hover .platform-card-glow {
    opacity: 1;
}

.platform-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}

.platform-icon-wrap {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: rgba(32, 188, 237, 0.08);
    border: 1px solid rgba(32, 188, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: var(--primary-cyan);
    transition: all 0.4s;
}

.platform-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.platform-card:hover .platform-icon-wrap {
    background: rgba(32, 188, 237, 0.12);
}

.platform-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.platform-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: rgba(32, 188, 237, 0.08);
    border: 1px solid rgba(32, 188, 237, 0.2);
    border-radius: 50px;
    color: var(--primary-cyan);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.platform-card-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Feature list with animated dots */
.platform-features {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(32, 188, 237, 0.08);
    border-bottom: 1px solid rgba(32, 188, 237, 0.08);
}

.platform-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.feature-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--primary-cyan);
    margin-top: 6px;
}

@keyframes featurePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.platform-feature span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Capability Tags */
.platform-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.capability-tag {
    padding: 0.35rem 0.9rem;
    background: rgba(5, 38, 153, 0.2);
    border: 1px solid rgba(5, 38, 153, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--blue-7);
    letter-spacing: 0.04em;
    transition: all 0.3s;
}

.capability-tag:hover {
    background: rgba(5, 38, 153, 0.35);
    border-color: var(--blue-6);
    color: var(--primary-cyan);
}

/* Integration Statement */
.platform-integration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.integration-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(32, 188, 237, 0.3), transparent);
}

.integration-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
    max-width: 600px;
}

.integration-text strong {
    color: var(--primary-cyan);
    font-weight: 600;
}

/* ============================================
   Vision Section - Cinematic
   ============================================ */

.vision {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.vision-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.vision-glow-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(32, 188, 237, 0.06) 0%, transparent 70%);
    top: 20%;
    right: -8%;
    animation: orbFloat 14s ease-in-out infinite;
}

.vision-glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(5, 38, 153, 0.1) 0%, transparent 70%);
    bottom: 5%;
    left: -5%;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

/* Vision Pillars */
.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.vision-pillar {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(15, 15, 26, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(32, 188, 237, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-pillar:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 188, 237, 0.2);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.pillar-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(32, 188, 237, 0.15) 0%, rgba(5, 38, 153, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.pillar-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pillar-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Bottom accent gradient bar */
.pillar-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.vision-pillar:hover .pillar-accent {
    opacity: 1;
}

/* Grand Vision Statement */
.vision-grand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 5rem;
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 1;
}

.vision-grand-line {
    width: 60px;
    height: 2px;
    background: var(--grad-primary);
}

.vision-grand-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 0.03em;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .vision-pillars {
        grid-template-columns: 1fr;
    }

    /* Keep arch-flow horizontal but scale it down */
    .arch-flow {
        max-width: 100%;
        transform: scale(0.85);
        transform-origin: center center;
        padding: 2rem 0;
        margin-bottom: 3rem;
    }

    .arch-node {
        width: 100px;
    }

    .arch-node-icon {
        width: 52px;
        height: 52px;
        padding: 12px;
    }

    .arch-node-label {
        font-size: 0.7rem;
    }

    .arch-connector {
        min-width: 40px;
        margin-top: 26px; /* Half of 52px icon */
    }
}

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .platform-integration {
        flex-direction: column;
        gap: 1rem;
    }

    /* Arch flow: scale down further on mobile */
    .arch-flow {
        transform: scale(0.7);
        margin-bottom: 2rem;
    }

    .arch-node-icon {
        width: 44px;
        height: 44px;
        padding: 10px;
    }

    .arch-node {
        width: 80px;
    }

    .arch-node-label {
        font-size: 0.6rem;
    }

    .arch-connector {
        min-width: 30px;
        margin-top: 22px; /* Half of 44px icon */
    }
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    background: transparent;
    /* Transparent to show global bg */
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
}

.contact-content-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    max-width: 800px;
}

.contact-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(32, 188, 237, 0.2));
}

.contact-text-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    /* Center vertically */
    gap: 1.5rem;
    padding: 0.5rem 0;
    /* Minimal padding */
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    max-width: 500px;
}

.contact-item:hover {
    background: transparent;
    border-color: transparent;
    /* transform: translateX(10px); Removed movement */
    opacity: 0.8;
}

.contact-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: var(--primary-cyan);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Form styles removed */

/* ============================================
   Footer
   ============================================ */

.footer {
    background: rgba(5, 10, 20, 0.8);
    /* Semi-transparent for readability */
    border-top: 1px solid rgba(32, 188, 237, 0.1);
    padding: 4rem 5vw;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(32, 188, 237, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-full {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(32, 188, 237, 0.2));
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-cyan);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ============================================
   Responsive Design & Mobile Menu
   ============================================ */

/* Mobile Menu Styles */
@media (max-width: 968px) {
    .nav-menu-toggle {
        display: flex;
        z-index: 2000;
        position: relative;
    }

    .nav-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        background: rgba(5, 10, 20, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 1500;
        clip-path: circle(0% at 100% 0%);
        pointer-events: none;
        visibility: hidden;
        transition: clip-path 0.6s cubic-bezier(0.85, 0, 0.15, 1), visibility 0s 0.6s;
    }

    .nav-menu.active {
        clip-path: circle(150% at 100% 0%);
        pointer-events: all;
        visibility: visible;
        transition: clip-path 0.6s cubic-bezier(0.85, 0, 0.15, 1), visibility 0s 0s;
    }

    .nav-link {
        font-size: 2rem;
        font-family: var(--font-display);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s, transform 0.4s;
    }

    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-link:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-link:nth-child(3) {
        transition-delay: 0.3s;
    }

    /* Layout Adjustments */
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-content-left {
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .hero-stats {
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    /* Hero Adjustments */
    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-logo-wrapper {
        margin: 0 auto 2rem auto;
        transform: scale(1);
    }

    .hero-tagline {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        align-items: center;
        text-align: center;
    }

    .hero-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    /* General Typography */
    .section-title {
        font-size: clamp(2.5rem, 8vw, 3rem);
        justify-content: center;
        text-align: center;
    }

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

    /* Contact Details */
    .contact-item {
        margin: 0 auto;
        justify-content: center;
        text-align: left;
        width: 100%;
    }

    .contact-details {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-text {
        align-items: center;
    }

    .service-card {
        padding: 2rem;
    }

    .hero-scroll {
        display: none;
        /* Hide scroll indicator on very small screens to save space */
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}

/* ============================================
   Responsive: Wind Turbines
   ============================================ */

/* Tablet: scale turbines down */
@media (max-width: 968px) {
    .turbine-wrap {
        width: 72px;
        height: 144px;
    }
    .turbine-rotor {
        width: 72px;
        height: 72px;
    }
    .turbine-blade {
        height: 36px;
        width: 5px;
    }
    .turbine-tower {
        height: 108px;
        margin-top: 36px;
    }
    .turbine-glow {
        width: 96px;
        height: 96px;
    }

    /* Scale down all turbines further */
    .turbine-wrap.turbine-hero {
        transform: scale(1.0) !important;
    }
    .turbine-wrap.turbine-mid {
        transform: scale(0.7) !important;
    }
    .turbine-wrap.turbine-distant {
        transform: scale(0.5) !important;
    }

    .floating-cta {
        display: none;
    }

    /* Hero statement: center on tablet */
    .hero-statement {
        max-width: 100%;
        margin: 2rem auto;
        text-align: center;
        align-self: center;
    }
}

/* Mobile: further scale turbines + hide some */
@media (max-width: 768px) {
    .turbine-wrap {
        width: 56px;
        height: 112px;
    }
    .turbine-rotor {
        width: 56px;
        height: 56px;
    }
    .turbine-blade {
        height: 28px;
        width: 4px;
    }
    .turbine-tower {
        height: 84px;
        margin-top: 28px;
    }
    .turbine-glow {
        width: 72px;
        height: 72px;
    }

    /* Scale down turbines on mobile but keep all visible */
    .turbine-wrap.turbine-distant {
        transform: scale(0.35) !important;
        opacity: 0.2 !important;
    }

    /* Scale down remaining turbines */
    .turbine-wrap.turbine-hero {
        transform: scale(0.7) !important;
        opacity: 0.5 !important;
    }
    .turbine-wrap.turbine-mid {
        transform: scale(0.5) !important;
        opacity: 0.3 !important;
    }

    /* Platform grid: prevent overflow on narrow screens */
    .platform-grid {
        grid-template-columns: 1fr;
    }

    /* Vision pillars: ensure single column */
    .vision-pillars {
        grid-template-columns: 1fr;
    }

    /* Context section */
    .context-grid {
        max-width: 100%;
    }

    /* Section padding reduction */
    section {
        padding: clamp(40px, 8vw, 80px) 5vw;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    /* Lead text sizing */
    .lead {
        font-size: 1.35rem;
    }

    /* Integration text */
    .integration-text {
        max-width: 100%;
        font-size: 1rem;
    }

    /* Floating CTA: hide on mobile */
    .floating-cta {
        display: none;
    }

    /* Hero text: prevent overflow */
    .hero-tagline {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-brand {
        max-width: 100%;
        overflow: hidden;
    }

    /* Hero statement: left-align on mobile, full width */
    .hero-statement {
        max-width: 100%;
        margin: 1.5rem 0;
        text-align: left;
        align-self: flex-start;
    }

    .hero-headline {
        font-size: clamp(1.05rem, 4.5vw, 1.35rem);
    }

    .hero-body {
        font-size: 0.9rem;
    }

    .hero-accent-line {
        font-size: 0.85rem;
    }
}

/* Small phone */
@media (max-width: 480px) {
    /* Keep all turbines, just smaller */
    .turbine-wrap.turbine-mid {
        transform: scale(0.4) !important;
        opacity: 0.25 !important;
    }

    .turbine-wrap.turbine-distant {
        transform: scale(0.25) !important;
        opacity: 0.15 !important;
    }

    .turbine-wrap.turbine-hero {
        transform: scale(0.55) !important;
        opacity: 0.4 !important;
    }

    /* Services grid: single column */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Section title sizing */
    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        gap: 0.5rem;
    }

    /* About text */
    .about-text p {
        font-size: 1rem;
    }

    /* Lead text */
    .lead {
        font-size: 1.15rem;
    }

    /* Vision pillar padding */
    .vision-pillar {
        padding: 1.5rem;
    }

    /* Platform card padding */
    .platform-card {
        padding: 2rem 1.5rem;
    }

    /* Floating CTA: keep hidden on small phones */
    .floating-cta {
        display: none;
    }

    /* Hero brand: further size reduction */
    .brand-name {
        font-size: 1.8rem;
    }

    .brand-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .hero-tagline {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}

/* ============================================
   Scroll Animations
   ============================================ */



/* ============================================
   Footer Fixes
   ============================================ */
.footer {
    padding: 4rem 5vw 2rem !important;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

/* Left Column */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Right Column */
.footer-right {
    text-align: right;
}

.company-details h3 {
    color: white;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.company-details p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        /* Keep left alignment for structure */
        gap: 3rem;
    }

    .footer-right {
        text-align: left;
        /* Align address left on mobile */
        margin-top: 1rem;
    }

    .footer-contacts {
        gap: 2rem;
    }
}

/* ============================================
   Market Context Section
   ============================================ */

.context {
    background: transparent;
}

.context-grid {
    display: flex;
    justify-content: flex-start;
    max-width: 900px;
}

.context-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}




/* ============================================
   Scroll Reveal Animations
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }