/* GoodWorks Consult — Professional Light Theme v3 */
/* Ocean Teal + Sustainability Green — Premium UI */

:root {
    --gw-primary: #0E7490;
    --gw-primary-dark: #0C4A6E;
    --gw-primary-light: #22D3EE;
    --gw-secondary: #059669;
    --gw-secondary-light: #34D399;
    --gw-accent: #0891B2;
    --gw-navy: #0F172A;
    --gw-slate: #334155;
    --gw-text: #1E293B;
    --gw-text-light: #64748B;
    --gw-bg: #FFFFFF;
    --gw-bg-alt: #F0FDFA;
    --gw-bg-section: #F8FAFC;
    --gw-border: #E2E8F0;
    --gw-radius: 16px;
    --gw-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --gw-shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --gw-shadow-lg: 0 10px 40px rgba(14,116,144,0.1);
    --gw-shadow-xl: 0 20px 60px rgba(14,116,144,0.15);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Plus Jakarta Sans', var(--font-sans);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--gw-text);
    background: var(--gw-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    animation: pageLoad 0.6s ease-out 0.1s forwards;
}

@keyframes pageLoad {
    to { opacity: 1; }
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
    width: 0%;
    background: linear-gradient(90deg, var(--gw-primary-light), var(--gw-secondary-light), #67E8F9);
    box-shadow: 0 0 12px rgba(34,211,238,0.5);
    transition: width 0.1s linear;
}

/* ── Grain Texture Overlay ── */
.grain-overlay {
    position: fixed; inset: 0; z-index: 9998; pointer-events: none;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

a { color: var(--gw-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gw-primary-dark); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── News Ticker Bar ── */
.ticker-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 101;
    height: 36px; overflow: hidden;
    background: linear-gradient(90deg, var(--gw-navy) 0%, #0C4A6E 50%, #064E3B 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.ticker-track {
    display: flex; width: max-content; height: 100%;
    animation: tickerScroll 40s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-content {
    display: flex; align-items: center; gap: 0;
    white-space: nowrap; height: 100%; flex-shrink: 0;
}

.ticker-item {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0 16px; font-size: 0.72rem; font-weight: 600;
    color: rgba(255,255,255,0.75); letter-spacing: 0.3px;
    transition: color 0.2s;
}

.ticker-item:hover { color: var(--gw-primary-light); }

.ticker-item .material-icons {
    font-size: 14px; color: var(--gw-primary-light); opacity: 0.7;
}

.ticker-sep {
    color: rgba(255,255,255,0.15); font-size: 0.6rem;
    padding: 0 4px;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Navbar — Glassmorphism ── */
.navbar {
    position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226,232,240,0.6);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar.scrolled {
    top: 0;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 4px 30px rgba(14,116,144,0.08);
    border-bottom-color: transparent;
}

.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 68px;
}

.nav-brand {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
    color: var(--gw-navy);
}

.nav-brand .brand-icon {
    width: 38px; height: 38px; border-radius: 11px;
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-secondary));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px;
    box-shadow: 0 2px 10px rgba(14,116,144,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-brand:hover .brand-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 4px 16px rgba(14,116,144,0.4);
}

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

.nav-links a {
    padding: 8px 16px; border-radius: 10px; font-size: 0.88rem; font-weight: 500;
    color: var(--gw-slate); transition: all 0.25s; position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gw-primary); background: rgba(14,116,144,0.06);
}

.nav-links a.active::after {
    content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 16px; height: 2px; border-radius: 1px;
    background: linear-gradient(90deg, var(--gw-primary), var(--gw-secondary));
}

.nav-cta {
    padding: 9px 22px !important; border-radius: 10px !important;
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-accent)) !important;
    color: #fff !important; font-weight: 600 !important;
    box-shadow: 0 2px 10px rgba(14,116,144,0.3) !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(14,116,144,0.4) !important;
    color: #fff !important;
}

.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    color: var(--gw-slate); font-size: 24px; padding: 4px;
}

/* ── Sign In Dropdown ── */
.nav-dropdown { position: relative; }

.nav-signin-btn {
    display: inline-flex !important; align-items: center !important; gap: 2px !important;
    padding: 9px 20px !important; border-radius: 10px !important;
    background: linear-gradient(135deg, var(--gw-navy), #1E3A5F) !important;
    color: #fff !important; font-weight: 600 !important; font-size: 0.85rem !important;
    box-shadow: 0 2px 10px rgba(15,23,42,0.25) !important;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
    cursor: pointer !important;
}

.nav-signin-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 18px rgba(15,23,42,0.35) !important;
    background: linear-gradient(135deg, #1E293B, #0C4A6E) !important;
    color: #fff !important;
}

.nav-chevron {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dropdown.open .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute; top: calc(100% + 10px); right: 0;
    min-width: 280px; padding: 8px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(226,232,240,0.7);
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(14,116,144,0.12), 0 4px 16px rgba(0,0,0,0.06);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    display: flex !important; align-items: center !important; gap: 14px !important;
    padding: 14px 16px !important; border-radius: 10px !important;
    color: var(--gw-text) !important; text-decoration: none !important;
    transition: all 0.25s !important; background: transparent !important;
}

.dropdown-item:hover {
    background: rgba(14,116,144,0.06) !important;
    transform: translateX(2px) !important;
}

.dropdown-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dropdown-icon .material-icons { font-size: 20px; }

.dropdown-item:hover .dropdown-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 5px 16px rgba(0,0,0,0.18);
}

.dropdown-text strong {
    display: block; font-size: 0.88rem; font-weight: 700; color: var(--gw-navy);
    line-height: 1.3;
}

.dropdown-text span {
    font-size: 0.75rem; color: var(--gw-text-light); line-height: 1.3;
}

/* ── Hero — Dark Ocean Immersive ── */
.hero {
    padding: 0; min-height: 100vh;
    background: linear-gradient(160deg, #011520 0%, #012E3A 15%, #0C4A6E 35%, #0E7490 55%, #064E3B 80%, #011A12 100%);
    position: relative; overflow: hidden; display: flex; align-items: center;
}

/* Animated mesh overlay */
.hero > .hero-mesh {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 600px 400px at 20% 30%, rgba(14,116,144,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 70%, rgba(5,150,105,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 60% 20%, rgba(34,211,238,0.06) 0%, transparent 70%);
    animation: meshShift 20s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% { opacity: 1; transform: scale(1) translate(0, 0); }
    50% { opacity: 0.8; transform: scale(1.05) translate(-2%, 3%); }
    100% { opacity: 1; transform: scale(1) translate(2%, -2%); }
}
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-particle {
    position: absolute; border-radius: 50%; background: rgba(255,255,255,0.25);
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translateY(80vh) scale(1); }
    90% { opacity: 0.4; }
    100% { transform: translateY(-10vh) scale(0.2); opacity: 0; }
}

/* Dot grid pattern — animated fade */
.hero-dots {
    position: absolute; inset: 0; z-index: 1;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(34,211,238,0.04) 1px, transparent 1px);
    background-size: 32px 32px, 48px 48px;
    background-position: 0 0, 16px 16px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 15%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 15%, transparent 75%);
    animation: dotsFlicker 8s ease-in-out infinite alternate;
}

@keyframes dotsFlicker {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Mouse-follow glow */
.hero-mouse-glow {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,0.1) 0%, transparent 70%);
    pointer-events: none; z-index: 1;
    transform: translate(-50%, -50%);
    transition: left 0.4s ease-out, top 0.4s ease-out;
    will-change: left, top;
}

.hero::before {
    content: ''; position: absolute; top: -300px; right: -150px;
    width: 900px; height: 900px; border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,0.18) 0%, rgba(14,116,144,0.06) 40%, transparent 65%);
    animation: heroGlow 8s ease-in-out infinite alternate; z-index: 1;
}

.hero::after {
    content: ''; position: absolute; bottom: -250px; left: -200px;
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(52,211,153,0.12) 0%, rgba(5,150,105,0.04) 40%, transparent 65%);
    animation: heroGlow 10s ease-in-out 2s infinite alternate; z-index: 1;
}

@keyframes heroGlow {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.25); opacity: 1; }
}

.hero .container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
    position: relative; z-index: 2; padding-top: 120px; padding-bottom: 100px;
}

.hero-content {
    position: relative; z-index: 2;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: 30px; font-size: 0.72rem; font-weight: 700;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9);
    margin-bottom: 28px; text-transform: uppercase; letter-spacing: 1.5px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,211,238,0.2); }
    50% { box-shadow: 0 0 0 8px rgba(34,211,238,0); }
}

.hero h1 {
    font-family: var(--font-display); font-size: 3.8rem; font-weight: 800;
    line-height: 1.06; color: #fff; margin-bottom: 26px;
    letter-spacing: -0.035em;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero h1 span {
    background: linear-gradient(90deg, var(--gw-primary-light), var(--gw-secondary-light), #67E8F9, var(--gw-primary-light));
    background-size: 300% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 5s ease-in-out infinite;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 1.08rem; color: rgba(255,255,255,0.6); line-height: 1.85;
    margin-bottom: 40px; max-width: 500px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--gw-primary-light), var(--gw-secondary-light));
    color: var(--gw-navy); font-weight: 700;
    box-shadow: 0 4px 20px rgba(34,211,238,0.4);
}
.hero-actions .btn-primary:hover { box-shadow: 0 8px 32px rgba(34,211,238,0.5); transform: translateY(-3px); }
.hero-actions .btn-outline {
    background: rgba(255,255,255,0.08); color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px);
}
.hero-actions .btn-outline:hover {
    background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4);
    color: #fff; transform: translateY(-2px);
}

/* ── Hero Floating Graphic ── */
.hero-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
    min-height: 420px;
}

.hero-graphic {
    position: relative; width: 100%; max-width: 440px;
}

.hero-float-card {
    position: absolute; padding: 16px 22px; border-radius: 16px;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    display: flex; align-items: center; gap: 14px;
    animation: floatCard 7s ease-in-out infinite;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-float-card:hover {
    background: rgba(255,255,255,0.15);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    transform: translateY(-16px) scale(1.03) !important;
    border-color: rgba(255,255,255,0.25);
}

.hero-float-card:nth-child(1) { top: 8%; left: -10px; animation-delay: 0s; }
.hero-float-card:nth-child(2) { top: 42%; right: -20px; animation-delay: 2s; }
.hero-float-card:nth-child(3) { bottom: 8%; left: 5%; animation-delay: 4s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero-float-card .hfc-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-float-card .hfc-icon .material-icons { font-size: 22px; }

.hero-float-card .hfc-text h4 {
    font-size: 0.85rem; font-weight: 700; color: #fff; line-height: 1.2;
}

.hero-float-card .hfc-text p {
    font-size: 0.72rem; color: rgba(255,255,255,0.55); margin: 2px 0 0; line-height: 1.3;
}

/* Central orb */
.hero-orb {
    width: 220px; height: 220px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(34,211,238,0.15), rgba(52,211,153,0.1), rgba(14,116,144,0.12));
    border: 2px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    position: relative; margin: 0 auto;
    animation: orbPulse 5s ease-in-out infinite;
    box-shadow: 0 0 100px rgba(34,211,238,0.15), 0 0 200px rgba(14,116,144,0.08), inset 0 0 60px rgba(34,211,238,0.06);
}

.hero-orb::before {
    content: ''; position: absolute; inset: -20px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.07);
    animation: orbSpin 25s linear infinite;
}

.hero-orb::after {
    content: ''; position: absolute; inset: -45px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    animation: orbSpin 35s linear infinite reverse;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 80px rgba(34,211,238,0.12); }
    50% { transform: scale(1.06); box-shadow: 0 0 120px rgba(34,211,238,0.18); }
}

@keyframes orbSpin {
    to { transform: rotate(360deg); }
}

.hero-orb .material-icons {
    font-size: 56px; color: rgba(255,255,255,0.85);
    filter: drop-shadow(0 0 30px rgba(34,211,238,0.5)) drop-shadow(0 0 60px rgba(34,211,238,0.2));
}

/* ── Hero Carousel Slides ── */
.hero-slide {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 2;
    display: flex; align-items: center;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.8s;
}

.hero-slide.active {
    opacity: 1; visibility: visible; pointer-events: auto; z-index: 3;
}

.hero-slide .hero-content,
.hero-slide .hero-visual { transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s; }

.hero-slide:not(.active) .hero-content { transform: translateX(-40px); opacity: 0; }
.hero-slide:not(.active) .hero-visual { transform: translateX(40px); opacity: 0; }
.hero-slide.active .hero-content,
.hero-slide.active .hero-visual { transform: translateX(0); opacity: 1; }

/* Arrows */
.hero-arrow {
    position: absolute; top: 50%; z-index: 10;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(-50%);
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow .material-icons { font-size: 24px; }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* Indicators */
.hero-indicators {
    position: absolute; bottom: 32px; left: 50%; z-index: 10;
    transform: translateX(-50%);
    display: flex; gap: 12px; align-items: center;
}

.hero-dot {
    width: 40px; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,0.2); border: none; cursor: pointer;
    position: relative; overflow: hidden; padding: 0;
    transition: all 0.3s;
}

.hero-dot.active { background: rgba(255,255,255,0.3); }

.dot-progress {
    position: absolute; inset: 0; border-radius: 2px;
    background: linear-gradient(90deg, var(--gw-primary-light), var(--gw-secondary-light));
    transform: scaleX(0); transform-origin: left;
}

.hero-dot.active .dot-progress {
    animation: dotFill 6s linear forwards;
}

@keyframes dotFill {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

/* ── Wave Divider ── */
.wave-divider {
    position: relative; margin-top: -2px; line-height: 0;
}

.wave-divider svg {
    display: block; width: 100%;
}

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px; border-radius: 12px; font-size: 0.9rem; font-weight: 600;
    border: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none; position: relative; overflow: hidden;
}

.btn::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0; transition: opacity 0.3s;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-accent));
    color: #fff; box-shadow: 0 4px 16px rgba(14,116,144,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,116,144,0.35);
    color: #fff;
}

.btn-outline {
    background: rgba(255,255,255,0.8); color: var(--gw-primary);
    border: 2px solid rgba(14,116,144,0.3);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--gw-primary); color: #fff;
    border-color: var(--gw-primary);
    box-shadow: 0 4px 16px rgba(14,116,144,0.3);
}

/* ── Section ── */
.section { padding: 90px 0; }
.section-alt { background: var(--gw-bg-section); }

.section-header {
    text-align: center; max-width: 640px; margin: 0 auto 56px;
}

.section-header .overline {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--gw-primary); margin-bottom: 14px;
    display: inline-flex; align-items: center; gap: 8px;
}

.section-header .overline::before,
.section-header .overline::after {
    content: ''; width: 20px; height: 1.5px;
    background: linear-gradient(90deg, var(--gw-primary), transparent);
}

.section-header .overline::before {
    background: linear-gradient(90deg, transparent, var(--gw-primary));
}

.section-header h2 {
    font-family: var(--font-display); font-size: 2.3rem; font-weight: 800;
    color: var(--gw-navy); margin-bottom: 16px; line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1.05rem; color: var(--gw-text-light); line-height: 1.75;
}

/* ── Trust Section ── */
.trust-section {
    background: var(--gw-bg-section); padding: 20px 0;
}

.trust-bar {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
}

.trust-item {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; font-size: 0.82rem; font-weight: 600;
    color: var(--gw-slate); white-space: nowrap;
    transition: color 0.2s;
}

.trust-item .material-icons {
    font-size: 18px; color: var(--gw-primary); opacity: 0.7;
}

.trust-item:hover { color: var(--gw-primary); }

.trust-divider {
    width: 1px; height: 20px; background: var(--gw-border); flex-shrink: 0;
}

/* ── Service Cards — Premium ── */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px; perspective: 1200px;
}

.service-card {
    background: #fff; border: 1px solid var(--gw-border); border-radius: var(--gw-radius);
    padding: 36px 32px 28px; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative; overflow: hidden;
    transform-style: preserve-3d;
    counter-increment: service-counter;
    display: flex; flex-direction: column;
}

.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; border-radius: 3px 3px 0 0;
    background: linear-gradient(90deg, var(--gw-primary), var(--gw-secondary));
    transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: left;
}

.service-card::after {
    content: counter(service-counter, decimal-leading-zero);
    position: absolute; top: 16px; right: 20px;
    font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
    color: rgba(14,116,144,0.04); line-height: 1;
    transition: color 0.3s;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { color: rgba(14,116,144,0.08); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(14,116,144,0.12), 0 4px 12px rgba(0,0,0,0.04);
    border-color: rgba(14,116,144,0.2);
}

.service-card .card-icon {
    width: 54px; height: 54px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(14,116,144,0.08), rgba(5,150,105,0.06));
    display: flex; align-items: center; justify-content: center;
    color: var(--gw-primary); font-size: 24px; margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(14,116,144,0.08);
}

.service-card:hover .card-icon {
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-accent));
    color: #fff; border-color: transparent;
    box-shadow: 0 8px 24px rgba(14,116,144,0.3);
    transform: scale(1.08) rotate(-3deg);
}

.service-card h3 {
    font-family: var(--font-display); font-size: 1.12rem; font-weight: 700;
    color: var(--gw-navy); margin-bottom: 10px;
}

.service-card p {
    font-size: 0.86rem; color: var(--gw-text-light); line-height: 1.75; flex: 1;
}

.service-card .card-tags {
    margin-top: 18px; display: flex; flex-wrap: wrap; gap: 6px;
}

.service-card .tag {
    padding: 5px 13px; border-radius: 8px; font-size: 0.71rem; font-weight: 600;
    background: rgba(14,116,144,0.04); color: var(--gw-primary);
    border: 1px solid rgba(14,116,144,0.08);
    transition: all 0.25s;
}

.service-card:hover .tag {
    background: rgba(14,116,144,0.08);
    border-color: rgba(14,116,144,0.18);
}

.card-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 18px; font-size: 0.82rem; font-weight: 600;
    color: var(--gw-primary); opacity: 0; transform: translateY(8px);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-link .material-icons { font-size: 16px; transition: transform 0.25s; }

.service-card:hover .card-link { opacity: 1; transform: translateY(0); }
.card-link:hover .material-icons { transform: translateX(4px); }

/* ── Process Grid (How We Work) — With Connectors ── */
.process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    position: relative;
}

.process-step {
    text-align: center; padding: 36px 24px 32px; border-radius: var(--gw-radius);
    background: #fff; border: 1px solid var(--gw-border);
    position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gw-primary), var(--gw-secondary));
    transform: scaleX(0); transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: left;
}

.process-step:hover::before { transform: scaleX(1); }

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(14,116,144,0.1), 0 4px 16px rgba(0,0,0,0.04);
    border-color: rgba(14,116,144,0.15);
}

/* Connector arrows between steps */
.process-step:not(:last-child)::after {
    content: '\e5cc'; font-family: 'Material Icons';
    position: absolute; top: 50%; right: -20px; z-index: 2;
    width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-accent));
    color: #fff; font-size: 18px; line-height: 28px; text-align: center;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(14,116,144,0.25);
    transition: all 0.3s;
}

.process-step:not(:last-child):hover::after {
    box-shadow: 0 4px 14px rgba(14,116,144,0.4);
    transform: translateY(-50%) scale(1.1);
}

.process-number {
    position: absolute; top: 12px; right: 16px;
    font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
    color: rgba(14,116,144,0.05); line-height: 1;
    transition: color 0.4s;
}

.process-step:hover .process-number { color: rgba(14,116,144,0.1); }

.process-icon {
    width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(14,116,144,0.1), rgba(5,150,105,0.06));
    display: flex; align-items: center; justify-content: center;
    color: var(--gw-primary); transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(14,116,144,0.08);
}

.process-icon .material-icons { font-size: 26px; }

.process-step:hover .process-icon {
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-accent));
    color: #fff; border-color: transparent;
    box-shadow: 0 8px 24px rgba(14,116,144,0.3);
    transform: scale(1.1) rotate(-5deg);
}

.process-step h4 {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
    color: var(--gw-navy); margin-bottom: 10px;
}

.process-step p {
    font-size: 0.85rem; color: var(--gw-text-light); line-height: 1.7;
}

@media (max-width: 768px) {
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* ── Stats Bar — Dark Ocean Glass ── */
.stats-section {
    padding: 100px 0; position: relative;
    background: linear-gradient(160deg, #012E3A 0%, #0C4A6E 40%, #064E3B 100%);
    overflow: hidden;
}

.stats-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.stats-section::after {
    content: ''; position: absolute; top: -200px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,0.08) 0%, transparent 60%);
    animation: heroGlow 10s ease-in-out infinite alternate;
}

.stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    position: relative; z-index: 1;
}

.stat-item {
    text-align: center; padding: 40px 20px; border-radius: var(--gw-radius);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative; overflow: hidden;
}

.stat-item::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 100px; height: 100px; border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,0.08) 0%, transparent 70%);
    transition: all 0.4s;
}

.stat-item:hover::before { transform: scale(2); }

.stat-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.stat-item .stat-number {
    font-family: var(--font-display); font-size: 3.2rem; font-weight: 800;
    color: #fff; line-height: 1.1;
    text-shadow: 0 0 40px rgba(34,211,238,0.3);
}

.stat-item .stat-label {
    font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 10px;
    font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
}

/* ── Trust Bar — Enhanced ── */
.trust-bar {
    display: flex; align-items: center; justify-content: center;
    gap: 36px; flex-wrap: wrap; padding: 28px 0;
}

.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.83rem; font-weight: 600; color: var(--gw-slate);
    padding: 8px 16px; border-radius: 10px;
    background: rgba(14,116,144,0.03);
    border: 1px solid rgba(14,116,144,0.06);
    transition: all 0.3s;
}

.trust-item:hover {
    background: rgba(14,116,144,0.06);
    border-color: rgba(14,116,144,0.12);
    transform: translateY(-1px);
}

.trust-item .material-icons {
    font-size: 18px; color: var(--gw-primary);
}

/* ── CTA Section — Premium Ocean ── */
.cta-section {
    background: linear-gradient(160deg, #011520 0%, #012E3A 20%, #0C4A6E 50%, #064E3B 80%, #011A12 100%);
    padding: 120px 0; text-align: center; color: #fff;
    position: relative; overflow: hidden;
}

.cta-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 10%, transparent 70%);
}

.cta-section::before {
    content: ''; position: absolute; top: 50%; left: 30%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,0.14) 0%, rgba(14,116,144,0.04) 40%, transparent 65%);
    animation: ctaGlow 8s ease-in-out infinite alternate;
}

.cta-section::after {
    content: ''; position: absolute; top: -20%; right: -5%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(52,211,153,0.1) 0%, transparent 60%);
    animation: ctaGlow 10s ease-in-out 2s infinite alternate;
}

@keyframes ctaGlow {
    0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
    font-family: var(--font-display); font-size: 2.6rem; font-weight: 800;
    margin-bottom: 18px; letter-spacing: -0.02em;
    background: linear-gradient(90deg, #fff, var(--gw-primary-light), #67E8F9, #fff);
    background-size: 200% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 6s ease-in-out infinite;
}

.cta-section p {
    font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--gw-primary-light), var(--gw-secondary-light));
    color: var(--gw-navy); position: relative;
    box-shadow: 0 4px 24px rgba(34,211,238,0.35);
    padding: 15px 34px; font-size: 0.92rem;
}

.cta-section .btn-primary:hover {
    box-shadow: 0 8px 40px rgba(34,211,238,0.5); transform: translateY(-3px);
}

.cta-section .btn-ghost {
    background: rgba(255,255,255,0.06); color: #fff;
    border: 1.5px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    padding: 15px 34px; font-size: 0.92rem;
    border-radius: 12px; cursor: pointer; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
}

.cta-section .btn-ghost:hover {
    background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px); color: #fff;
}

/* ── Page Hero (About/Services/Contact) — Premium ── */
.about-hero, .page-hero {
    padding: 0; position: relative; overflow: hidden;
    background: linear-gradient(160deg, #011520 0%, #012E3A 20%, #0C4A6E 45%, #0E7490 65%, #064E3B 85%, #011A12 100%);
    min-height: 360px; display: flex; align-items: flex-end;
}

.about-hero::before, .page-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px),
        radial-gradient(circle, rgba(34,211,238,0.03) 1px, transparent 1px);
    background-size: 28px 28px, 42px 42px;
    background-position: 0 0, 14px 14px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 60%, black 15%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 60%, black 15%, transparent 75%);
}

.about-hero::after, .page-hero::after {
    content: ''; position: absolute; top: -200px; right: -100px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,0.14) 0%, rgba(14,116,144,0.04) 40%, transparent 65%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.page-hero-mesh {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 500px 300px at 25% 40%, rgba(14,116,144,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 75% 60%, rgba(5,150,105,0.08) 0%, transparent 70%);
    animation: meshShift 18s ease-in-out infinite alternate;
}

.about-hero .container, .page-hero .container {
    position: relative; z-index: 2; padding-top: 140px; padding-bottom: 60px;
}

.about-hero .section-header h2,
.about-hero .section-header p,
.page-hero .section-header h2,
.page-hero .section-header p { color: #fff; }

.about-hero .section-header p,
.page-hero .section-header p { color: rgba(255,255,255,0.65); }

.about-hero .section-header .overline,
.page-hero .section-header .overline { color: var(--gw-primary-light); }

.about-hero .section-header .overline::before,
.about-hero .section-header .overline::after,
.page-hero .section-header .overline::before,
.page-hero .section-header .overline::after {
    background: linear-gradient(90deg, var(--gw-primary-light), transparent);
}

.about-hero .section-header .overline::before,
.page-hero .section-header .overline::before {
    background: linear-gradient(90deg, transparent, var(--gw-primary-light));
}

/* Shimmer text animation */
@keyframes shimmerText {
    0% { background-position: 200% 50%; }
    100% { background-position: -200% 50%; }
}

/* Page hero wave transition */
.page-wave {
    position: relative; margin-top: -2px; line-height: 0;
    background: linear-gradient(180deg, #011A12 0%, transparent 100%);
}
.page-wave svg { display: block; width: 100%; }

/* Feature panel animated rings */
.feature-panel {
    background: linear-gradient(135deg, #F0FDFA, #ECFEFF);
    border-radius: var(--gw-radius); padding: 40px;
    display: flex; flex-direction: column; gap: 22px;
    position: relative; overflow: hidden;
    border: 1px solid rgba(14,116,144,0.08);
}

.feature-panel::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    border: 2px solid rgba(14,116,144,0.06);
    animation: featureRing 12s linear infinite;
}

.feature-panel::after {
    content: ''; position: absolute; bottom: -40px; left: -40px;
    width: 150px; height: 150px; border-radius: 50%;
    border: 2px solid rgba(5,150,105,0.05);
    animation: featureRing 16s linear infinite reverse;
}

@keyframes featureRing { to { transform: rotate(360deg); } }

.feature-row {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 16px; border-radius: 12px;
    background: rgba(255,255,255,0.6); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.8);
    transition: all 0.3s; position: relative; z-index: 1;
}

.feature-row:hover {
    background: rgba(255,255,255,0.9);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(14,116,144,0.08);
}

.feature-row .fr-icon {
    width: 42px; height: 42px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px; flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.feature-row .fr-text strong {
    display: block; font-size: 0.88rem; font-weight: 700; color: var(--gw-navy);
}

.feature-row .fr-text span {
    font-size: 0.78rem; color: var(--gw-text-light);
}

.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}

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

.value-card {
    background: #fff; border: 1px solid var(--gw-border); border-radius: var(--gw-radius);
    padding: 32px; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative; overflow: hidden;
}

.value-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gw-primary), var(--gw-secondary));
    transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: left;
}

.value-card:hover::before { transform: scaleX(1); }

.value-card:hover {
    border-color: rgba(14,116,144,0.2);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(14,116,144,0.1);
}

.value-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.value-icon .material-icons { font-size: 22px; }

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.value-card h4 {
    font-size: 1rem; font-weight: 700; color: var(--gw-navy); margin-bottom: 10px;
}

.value-card p { font-size: 0.85rem; color: var(--gw-text-light); line-height: 1.7; }

/* ── Org Model Grid ── */
.org-model-grid {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
    max-width: 900px; margin: 0 auto;
}

.org-card {
    background: #fff; border: 1px solid var(--gw-border); border-radius: var(--gw-radius);
    padding: 36px 32px; position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.org-card::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
    border-radius: 4px 0 0 4px;
}

.org-consulting::before { background: linear-gradient(180deg, var(--gw-primary), var(--gw-accent)); }
.org-foundation::before { background: linear-gradient(180deg, var(--gw-secondary), #34D399); }

.org-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(14,116,144,0.1);
    border-color: rgba(14,116,144,0.2);
}

.org-badge {
    display: inline-block; padding: 4px 12px; border-radius: 6px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 16px;
}

.org-consulting .org-badge { background: rgba(14,116,144,0.08); color: var(--gw-primary); }
.org-foundation .org-badge { background: rgba(5,150,105,0.08); color: var(--gw-secondary); }

.org-card h3 {
    font-family: var(--font-display); font-size: 1.12rem; font-weight: 700;
    color: var(--gw-navy); margin-bottom: 10px;
}

.org-card p { font-size: 0.86rem; color: var(--gw-text-light); line-height: 1.75; }

.org-divider {
    display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 20px;
}

.org-divider-line {
    width: 2px; height: 40px;
    background: linear-gradient(180deg, transparent, var(--gw-border), transparent);
}

.org-divider-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(14,116,144,0.08), rgba(5,150,105,0.06));
    display: flex; align-items: center; justify-content: center;
    color: var(--gw-primary); border: 1px solid rgba(14,116,144,0.1);
}

.org-divider-icon .material-icons { font-size: 18px; }

@media (max-width: 768px) {
    .org-model-grid { grid-template-columns: 1fr; gap: 0; }
    .org-divider { flex-direction: row; padding: 16px 0; }
    .org-divider-line { width: 40px; height: 2px; }
}

/* ── Timeline — Enhanced ── */
.timeline { max-width: 620px; margin: 0 auto; position: relative; }

.timeline::before {
    content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, var(--gw-primary), var(--gw-secondary), rgba(14,116,144,0.1));
}

.timeline-item {
    padding-left: 56px; margin-bottom: 36px; position: relative;
}

.timeline-item::before {
    content: ''; position: absolute; left: 13px; top: 4px;
    width: 16px; height: 16px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-secondary));
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(14,116,144,0.2), 0 2px 8px rgba(14,116,144,0.2);
}

.timeline-item .year {
    font-size: 0.75rem; font-weight: 700; color: var(--gw-primary);
    text-transform: uppercase; letter-spacing: 1.2px;
}

.timeline-item h4 { font-size: 1.05rem; color: var(--gw-navy); margin: 6px 0; font-weight: 700; }
.timeline-item p { font-size: 0.85rem; color: var(--gw-text-light); line-height: 1.7; }

/* ── Contact — Enhanced ── */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }

.info-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 22px; border-radius: var(--gw-radius);
    background: var(--gw-bg-alt); border: 1px solid rgba(14,116,144,0.06);
    transition: all 0.3s;
}

.info-card:hover {
    border-color: rgba(14,116,144,0.15);
    transform: translateX(4px);
    box-shadow: var(--gw-shadow-md);
}

.info-card .ic-icon {
    width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-accent));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px;
    box-shadow: 0 4px 12px rgba(14,116,144,0.2);
}

.info-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--gw-navy); margin-bottom: 4px; }
.info-card p { font-size: 0.85rem; color: var(--gw-text-light); margin: 0; }

.contact-form {
    background: #fff; border-radius: var(--gw-radius);
    padding: 40px; position: relative;
    box-shadow: 0 8px 40px rgba(14,116,144,0.06);
    border: 1px solid transparent;
    background-clip: padding-box;
}

.contact-form::before {
    content: ''; position: absolute; inset: -1px; border-radius: calc(var(--gw-radius) + 1px);
    background: linear-gradient(135deg, rgba(14,116,144,0.15), rgba(5,150,105,0.1), rgba(14,116,144,0.05));
    z-index: -1;
    transition: all 0.4s;
}

.contact-form:focus-within::before {
    background: linear-gradient(135deg, rgba(14,116,144,0.3), rgba(5,150,105,0.2), rgba(14,116,144,0.15));
    box-shadow: 0 0 20px rgba(14,116,144,0.08);
}

.form-group { margin-bottom: 22px; }

.form-group label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--gw-slate); margin-bottom: 8px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--gw-border);
    border-radius: 10px; font-size: 0.9rem; font-family: var(--font-sans);
    transition: all 0.25s; background: #FAFBFC; color: var(--gw-text);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--gw-primary); background: #fff;
    box-shadow: 0 0 0 4px rgba(14,116,144,0.08);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #94A3B8;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Footer Wave ── */
.footer-wave { line-height: 0; margin-bottom: -1px; }
.footer-wave svg { display: block; width: 100%; }

/* ── Footer — Premium Dark Ocean ── */
.footer {
    background: linear-gradient(180deg, #0F172A 0%, #080E1A 100%);
    color: rgba(255,255,255,0.6); position: relative;
    padding: 0 0 0; overflow: hidden;
}

.footer-glow {
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 400px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(14,116,144,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer .container { position: relative; z-index: 1; }

/* Footer Top — Brand + Newsletter */
.footer-top {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
    align-items: start; padding: 72px 0 40px;
}

.footer-logo {
    display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}

.footer-brand-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-secondary));
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(14,116,144,0.3);
}

.footer-brand h3 {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
    color: #fff; margin: 0; line-height: 1.2;
}

.footer-tagline {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px;
    color: var(--gw-primary-light); opacity: 0.8;
}

.footer-brand > p {
    font-size: 0.85rem; line-height: 1.8; max-width: 400px;
    color: rgba(255,255,255,0.5); margin-bottom: 24px;
}

/* Social icons */
.footer-socials { display: flex; gap: 10px; }

.footer-social {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-social:hover {
    background: rgba(14,116,144,0.15); border-color: rgba(14,116,144,0.3);
    color: var(--gw-primary-light); transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(14,116,144,0.15);
}

.footer-social .material-icons { font-size: 18px; }

/* Newsletter */
.footer-newsletter h4 {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
    color: #fff; margin-bottom: 10px; text-transform: none; letter-spacing: 0;
}

.footer-newsletter > p {
    font-size: 0.84rem; line-height: 1.7; color: rgba(255,255,255,0.45);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex; gap: 0; border-radius: 12px; overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.newsletter-form:focus-within {
    border-color: rgba(14,116,144,0.4);
    box-shadow: 0 0 0 4px rgba(14,116,144,0.08);
}

.newsletter-form input {
    flex: 1; padding: 14px 18px; border: none; background: transparent;
    color: #fff; font-size: 0.88rem; font-family: var(--font-sans);
    outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-form button {
    padding: 14px 20px; border: none; cursor: pointer;
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-accent));
    color: #fff; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}

.newsletter-form button:hover { background: linear-gradient(135deg, var(--gw-primary-light), var(--gw-secondary-light)); color: var(--gw-navy); }

.newsletter-form button .material-icons { font-size: 20px; }

/* Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), rgba(14,116,144,0.12), rgba(255,255,255,0.06), transparent);
}

/* Links Grid */
.footer-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
    padding: 40px 0;
}

.footer h4 {
    font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.4);
    text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
    font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 8px;
}

.footer-links a .material-icons { font-size: 15px; opacity: 0.5; transition: all 0.25s; }

.footer-links a:hover {
    color: var(--gw-primary-light); transform: translateX(3px);
}

.footer-links a:hover .material-icons { opacity: 1; color: var(--gw-primary-light); }

/* Contact items */
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px; font-size: 0.84rem; color: rgba(255,255,255,0.5);
}

.footer-contact-item .material-icons {
    font-size: 17px; color: var(--gw-primary-light); opacity: 0.6;
    margin-top: 2px; flex-shrink: 0;
}

.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gw-primary-light); }

/* Bottom bar */
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0 32px; font-size: 0.76rem; color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: var(--gw-primary-light); opacity: 0.7; transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 1; }

/* ── SDG Cards — Interactive ── */
.sdg-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.sdg-card {
    background: #fff; border-radius: var(--gw-radius); padding: 28px 24px;
    border: 1px solid var(--gw-border); position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sdg-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    border-radius: 3px 3px 0 0; transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sdg-card:hover::before { height: 5px; }

.sdg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.sdg-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sdg-card-icon .material-icons { font-size: 22px; }

.sdg-card:hover .sdg-card-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.sdg-card-num {
    position: absolute; top: 14px; right: 18px;
    font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
    opacity: 0.06; line-height: 1; transition: opacity 0.3s;
}

.sdg-card:hover .sdg-card-num { opacity: 0.12; }

.sdg-card h4 {
    font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
    color: var(--gw-navy); margin-bottom: 8px;
}

.sdg-card p {
    font-size: 0.8rem; color: var(--gw-text-light); line-height: 1.65; margin: 0;
}

.sdg-8::before { background: linear-gradient(90deg, #A21942, #C62828); }
.sdg-8 .sdg-card-icon { background: linear-gradient(135deg, #A21942, #C62828); }
.sdg-12::before { background: linear-gradient(90deg, #BF8B2E, #D4A03C); }
.sdg-12 .sdg-card-icon { background: linear-gradient(135deg, #BF8B2E, #D4A03C); }
.sdg-13::before { background: linear-gradient(90deg, #3F7E44, #4CAF50); }
.sdg-13 .sdg-card-icon { background: linear-gradient(135deg, #3F7E44, #4CAF50); }
.sdg-14::before { background: linear-gradient(90deg, #0A97D9, #00BCD4); }
.sdg-14 .sdg-card-icon { background: linear-gradient(135deg, #0A97D9, #00BCD4); }
.sdg-17::before { background: linear-gradient(90deg, #19486A, #1E5F8A); }
.sdg-17 .sdg-card-icon { background: linear-gradient(135deg, #19486A, #1E5F8A); }

/* ── Back to Top ── */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 99;
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-accent));
    color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(14,116,144,0.3);
    transform: translateY(80px); opacity: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.back-to-top.visible { transform: translateY(0); opacity: 1; }
.back-to-top:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(14,116,144,0.4); }
.back-to-top .material-icons { font-size: 22px; }

/* ── Toast ── */
.toast {
    position: fixed; bottom: 24px; left: 50%; z-index: 9999;
    padding: 14px 28px; border-radius: 12px; font-size: 0.88rem; font-weight: 500;
    color: #fff; transform: translate(-50%, 100px); opacity: 0;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    max-width: 420px; backdrop-filter: blur(8px);
    display: flex; align-items: center; gap: 8px;
}

.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast.success { background: rgba(5,150,105,0.95); box-shadow: 0 8px 32px rgba(5,150,105,0.3); }
.toast.error { background: rgba(220,38,38,0.95); box-shadow: 0 8px 32px rgba(220,38,38,0.3); }

/* ── Legal Pages ── */
.legal-page { padding: 140px 0 80px; }
.legal-page h1 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--gw-navy); margin-bottom: 8px; }
.legal-page .updated { font-size: 0.85rem; color: var(--gw-text-light); margin-bottom: 36px; }
.legal-page h2 { font-size: 1.3rem; font-weight: 700; color: var(--gw-navy); margin: 36px 0 12px; }
.legal-page p, .legal-page li { font-size: 0.92rem; color: var(--gw-text-light); line-height: 1.75; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; }

/* ── Scroll Reveal — Staggered ── */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
    .hero .container { gap: 32px; }
    .hero h1 { font-size: 2.8rem; }
    .hero-orb { width: 180px; height: 180px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-arrow-prev { left: 12px; }
    .hero-arrow-next { right: 12px; }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
    .ticker-bar { display: none; }
    .navbar { top: 0 !important; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 68px; left: 0; right: 0;
        background: rgba(255,255,255,0.98); padding: 20px 24px;
        border-bottom: 1px solid var(--gw-border);
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        backdrop-filter: blur(20px); gap: 4px;
    }
    .nav-links.open li a { padding: 12px 16px; border-radius: 10px; font-size: 0.95rem; }
    .nav-signin-btn { width: 100%; justify-content: center; text-align: center; }
    .nav-dropdown-menu { position: static; min-width: auto; transform: none; box-shadow: none; border: 1px solid var(--gw-border); margin-top: 8px; }
    .nav-dropdown.open .nav-dropdown-menu { transform: none; }

    /* Hero — mobile: active slide drives height, visual hidden */
    .hero { min-height: 0; display: block; }
    .hero .container { display: flex; flex-direction: column; padding-top: 110px; padding-bottom: 80px; gap: 24px; }
    .hero-slide {
        position: absolute; top: 0; left: 0; right: 0; bottom: auto;
        width: 100%;
    }
    .hero-slide.active {
        position: relative; top: auto; left: auto; right: auto;
    }
    .hero h1 { font-size: 2rem; line-height: 1.15; }
    .hero p { font-size: 0.95rem; margin-bottom: 28px; }
    .hero-mouse-glow { display: none; }
    .hero-particles { display: none; }
    .hero-visual { display: none; }

    /* Carousel controls */
    .hero-arrow { display: none; }
    .hero-indicators { bottom: 20px; gap: 8px; }
    .hero-dot { width: 28px; height: 3px; }

    /* Sections */
    .section { padding: 60px 0; }
    .section-alt { padding: 60px 0; }
    .section-header h2 { font-size: 1.6rem; }
    .section-header p { font-size: 0.9rem; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 28px 24px; }
    .service-card::after { display: none; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .process-step { padding: 28px 18px 24px; }
    .stats-section { padding: 70px 0; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-item { padding: 28px 16px; }
    .stat-item .stat-number { font-size: 2.4rem; }
    .trust-bar { gap: 12px; }
    .trust-item { font-size: 0.78rem; padding: 8px 14px; }

    /* About/Contact */
    .about-hero .container, .page-hero .container { padding-top: 110px; padding-bottom: 40px; }
    .about-hero .section-header h2, .page-hero .section-header h2 { font-size: 1.6rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .feature-panel { padding: 28px; }
    .contact-info-cards { grid-template-columns: 1fr; gap: 12px; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 32px 0; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 20px 0 28px; }
    .footer-brand > p { max-width: 100%; }
    .newsletter-form input { padding: 12px 14px; font-size: 0.84rem; }
    .newsletter-form button { padding: 12px 16px; }

    .form-row { grid-template-columns: 1fr; }
    .cta-section { padding: 70px 0; }
    .cta-section h2 { font-size: 1.6rem; }
    .values-grid { grid-template-columns: 1fr; }
    .timeline { padding-left: 24px; }
}

/* ── Responsive: Small Mobile ── */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero .container { padding-top: 100px; padding-bottom: 60px; }
    .hero h1 { font-size: 1.7rem; }
    .hero p { font-size: 0.88rem; }
    .hero-badge { font-size: 0.65rem; padding: 6px 14px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-arrow { display: none; }
    .hero-indicators { bottom: 14px; }

    .section-header h2 { font-size: 1.35rem; }
    .stats-bar { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-item { padding: 24px 12px; }
    .stat-item .stat-number { font-size: 2rem; }
    .process-grid { grid-template-columns: 1fr; }
    .services-grid { gap: 12px; }
    .sdg-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
    .sdg-card { padding: 20px 18px; }
    .sdg-card-num { font-size: 1.8rem; }
    .footer-top { padding: 40px 0 28px; gap: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px 0; }
    .footer-socials { justify-content: flex-start; }
    .trust-bar { gap: 8px; }
    .trust-item { font-size: 0.72rem; padding: 6px 10px; }
    .cta-section { padding: 56px 0; }
    .cta-section h2 { font-size: 1.4rem; }
}
