/* ============================================
   AGROPLUSINTERMED — Loginet-style Dark Teal
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0c1e3a;
    --bg-deep: #081628;
    --bg-card: rgba(255,255,255,0.06);
    --bg-card-hover: rgba(255,255,255,0.10);
    --accent: #00a8e8;
    --accent-hover: #0090c8;
    --accent-soft: rgba(0,168,232,0.12);
    --navy: #1a3a6e;
    --white: #ffffff;
    --text: rgba(255,255,255,0.85);
    --text-muted: rgba(255,255,255,0.55);
    --text-dim: rgba(255,255,255,0.3);
    --border: rgba(255,255,255,0.08);
    --border-light: rgba(255,255,255,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 100px;
    --font: 'Noto Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1320px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg); color: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 48px; }
.accent { color: var(--accent); }

/* ============================================
   GLOBAL BACKGROUND EFFECTS
   ============================================ */
.bg-effects {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    overflow: hidden;
}

/* Subtle grid with moving light */
.bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Moving light beam over grid */
.bg-grid::before {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse 600px 200px at 50% 50%, rgba(0,168,232,0.07) 0%, transparent 70%);
    animation: gridLightMove 12s ease-in-out infinite;
}

.bg-grid::after {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse 300px 400px at 50% 50%, rgba(0,168,232,0.05) 0%, transparent 70%);
    animation: gridLightMove2 18s ease-in-out infinite 4s;
}

@keyframes gridLightMove {
    0% { transform: translate(-30%, -20%); }
    25% { transform: translate(20%, -10%); }
    50% { transform: translate(30%, 30%); }
    75% { transform: translate(-10%, 20%); }
    100% { transform: translate(-30%, -20%); }
}

@keyframes gridLightMove2 {
    0% { transform: translate(30%, 30%); }
    25% { transform: translate(-20%, 10%); }
    50% { transform: translate(-30%, -20%); }
    75% { transform: translate(15%, -15%); }
    100% { transform: translate(30%, 30%); }
}

/* Floating dots */
.bg-dot {
    position: absolute; border-radius: 50%;
    background: var(--accent); opacity: 0.12;
}
.bg-dot--1 { width: 6px; height: 6px; top: 12%; left: 8%; animation: floatDot 18s ease-in-out infinite; }
.bg-dot--2 { width: 4px; height: 4px; top: 35%; right: 12%; animation: floatDot 22s ease-in-out infinite 2s; }
.bg-dot--3 { width: 8px; height: 8px; top: 58%; left: 5%; animation: floatDot 20s ease-in-out infinite 4s; }
.bg-dot--4 { width: 5px; height: 5px; top: 75%; right: 8%; animation: floatDot 16s ease-in-out infinite 1s; }
.bg-dot--5 { width: 3px; height: 3px; top: 20%; left: 45%; animation: floatDot 24s ease-in-out infinite 3s; }
.bg-dot--6 { width: 7px; height: 7px; top: 88%; left: 30%; animation: floatDot 19s ease-in-out infinite 5s; }

@keyframes floatDot {
    0%, 100% { transform: translate(0, 0); opacity: 0.12; }
    25% { transform: translate(30px, -40px); opacity: 0.2; }
    50% { transform: translate(-20px, -80px); opacity: 0.08; }
    75% { transform: translate(40px, -30px); opacity: 0.18; }
}

/* Diagonal animated lines */
.bg-line {
    position: absolute; width: 1px; background: linear-gradient(180deg, transparent, rgba(0,168,232,0.1), transparent);
    transform: rotate(-35deg); transform-origin: top;
}
.bg-line--1 { height: 400px; top: -50px; left: 15%; animation: lineDrift 12s ease-in-out infinite; }
.bg-line--2 { height: 300px; top: 30%; right: 20%; animation: lineDrift 16s ease-in-out infinite 3s; }
.bg-line--3 { height: 500px; top: 50%; left: 60%; animation: lineDrift 14s ease-in-out infinite 6s; }

@keyframes lineDrift {
    0%, 100% { transform: rotate(-35deg) translateY(0); opacity: 0.4; }
    50% { transform: rotate(-35deg) translateY(60px); opacity: 0.8; }
}

/* Soft glowing orbs */
.bg-glow {
    position: absolute; border-radius: 50%;
    filter: blur(100px);
}
.bg-glow--1 {
    width: 500px; height: 500px; top: 10%; left: -10%;
    background: radial-gradient(circle, rgba(0,168,232,0.06) 0%, transparent 70%);
    animation: glowFloat 20s ease-in-out infinite;
}
.bg-glow--2 {
    width: 400px; height: 400px; bottom: 10%; right: -5%;
    background: radial-gradient(circle, rgba(26,58,110,0.08) 0%, transparent 70%);
    animation: glowFloat 25s ease-in-out infinite 5s;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 20px) scale(0.95); }
}

/* Make sure all content sits above effects */
.navbar, .topbar, .hero, .features, .experience, .showcase, .projects,
.process, .marquee-section, .footprint, .cta-section, .contact, .footer,
.mobile-menu, .scroll-top, .stats {
    position: relative; z-index: 1;
}

/* Hide grid on light sections */
.features .bg-grid, .experience .bg-grid { display: none; }

/* Section-level decorative dots */
.showcase::before,
.footprint::before,
.contact::before {
    content: '';
    position: absolute; width: 120px; height: 120px;
    background-image: radial-gradient(circle, rgba(0,168,232,0.15) 2px, transparent 2px);
    background-size: 14px 14px;
    pointer-events: none; z-index: 0;
}
.showcase::before { top: 60px; right: 40px; animation: dotsPulse 3s ease-in-out infinite; }
.footprint::before { bottom: 60px; left: 30px; animation: dotsPulse 4s ease-in-out infinite 1s; }
.contact::before { top: 80px; right: 60px; animation: dotsPulse 3.5s ease-in-out infinite 2s; }

/* Decorative corner lines for sections */
.process::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 200px; height: 200px;
    border-left: 1px solid rgba(0,168,232,0.08);
    border-bottom: 1px solid rgba(0,168,232,0.08);
    pointer-events: none;
}
.footprint::after {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 160px; height: 160px;
    border-right: 1px solid rgba(0,168,232,0.08);
    border-top: 1px solid rgba(0,168,232,0.08);
    pointer-events: none;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
    background: var(--bg-deep); border-bottom: 1px solid var(--border);
    padding: 8px 0; font-size: 13px; color: var(--text-muted);
    position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
    transition: transform 0.3s ease;
}
.topbar-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
}
.topbar-left, .topbar-right {
    display: flex; align-items: center; gap: 8px;
}
.topbar-left svg, .topbar-right svg { color: var(--accent); flex-shrink: 0; }
.topbar-left a { color: var(--white); font-weight: 600; transition: var(--transition); }
.topbar-left a:hover { color: var(--accent); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed; top: 33px; left: 0; right: 0; z-index: 1000;
    transition: var(--transition);
}
.navbar .nav-inner {
    max-width: var(--max-width); margin: 16px auto 0; padding: 16px 32px;
    display: flex; align-items: center; justify-content: space-between;
    background: var(--white); border-radius: var(--radius); color: #1a1a1a;
}
.navbar.scrolled {
    top: 0;
}
.navbar.scrolled .nav-inner {
    max-width: 100%; margin-top: 0; border-radius: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 14px 48px;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 64px; width: auto; object-fit: contain; }
.logo-img--white { filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; color: #555; transition: var(--transition); position: relative; display: flex; align-items: center; gap: 6px; }
.nav-links a svg { opacity: 0.5; transition: var(--transition); }
.nav-links a:hover svg { opacity: 1; color: var(--accent); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent); color: var(--white);
    font-size: 14px; font-weight: 600; padding: 14px 28px;
    border-radius: var(--radius-full); transition: var(--transition);
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,168,232,0.35); }

.lang-switch { display: flex; align-items: center; gap: 4px; }
.lang-btn { font-size: 13px; font-weight: 700; color: #999; padding: 4px 8px; transition: var(--transition); letter-spacing: 0.5px; }
.lang-btn.active, .lang-btn:hover { color: var(--accent); }
.lang-sep { color: #ccc; font-size: 12px; }
.nav-cta:active { transform: translateY(0); }
.cta-sep { opacity: 0.4; margin: 0 2px; }
.nav-burger-btn {
    display: none; width: 44px; height: 44px;
    align-items: center; justify-content: center;
    background: var(--accent); color: var(--white);
    border-radius: 50%; transition: var(--transition);
}
.nav-burger-btn:hover { background: var(--accent-hover); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; inset: 0; background: var(--bg-deep); z-index: 9999;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-inner { padding: 24px; display: flex; flex-direction: column; height: 100%; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.mobile-menu-header .logo-img { filter: brightness(0) invert(1); }
.mobile-close { color: var(--white); padding: 8px; }
.mobile-links { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mobile-links a { font-size: 28px; font-weight: 700; padding: 14px 0; border-bottom: 1px solid var(--border); transition: var(--transition); }
.mobile-links a:hover { color: var(--accent); }
.mobile-cta {
    display: flex; align-items: center; justify-content: center;
    background: var(--accent); padding: 18px; border-radius: var(--radius-full);
    font-size: 16px; font-weight: 600; margin-top: 20px;
}

/* ============================================
   HERO — Circles layout like Loginet v2
   ============================================ */
.hero {
    position: relative; padding: 180px 0 80px; min-height: 100vh;
    overflow: hidden; display: flex; align-items: center;
}
.hero > .hero-bg-img {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0.15; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.hero-content { position: relative; z-index: 2; }
.hero-label {
    display: inline-block; background: linear-gradient(90deg, var(--accent), #4dc9f6);
    color: var(--white); font-size: 13px; font-weight: 700;
    padding: 8px 24px; border-radius: var(--radius-full); margin-bottom: 24px;
}
.hero h1 {
    font-family: var(--font-heading); font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 600; line-height: 1.12; margin-bottom: 36px;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-bottom: 48px; }

.hero-stat-pill { display: flex; align-items: center; gap: 12px; }
.hero-stat-circle {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: var(--accent); border-radius: 50%;
    font-size: 20px; font-weight: 800; color: var(--white);
}
.hero-stat-pill span { font-size: 12px; font-weight: 700; line-height: 1.3; letter-spacing: 0.5px; color: var(--text); }

.hero-bottom-bar { padding-top: 28px; border-top: 1px solid var(--border-light); }
.hero-since { display: flex; align-items: center; gap: 12px; }
.hero-since-icon { color: var(--accent); font-size: 18px; }
.hero-since-top { font-size: 14px; font-weight: 600; display: block; }
.hero-since-sub { font-size: 13px; color: var(--text-muted); display: block; }

/* Hero Circles */
.hero-visual { position: relative; z-index: 1; height: 560px; }
.hero-circles { position: relative; width: 100%; height: 100%; }

.hero-circle {
    position: absolute; border-radius: 50%; overflow: hidden;
    border: 4px solid var(--accent);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-circle img { width: 100%; height: 100%; object-fit: cover; }

.hero-circle--lg {
    width: 320px; height: 320px; top: 0; left: 0;
}
.hero-circle--md {
    width: 240px; height: 240px; top: -20px; right: 0;
    border-color: var(--white); border-width: 5px;
}
.hero-circle--sm {
    width: 300px; height: 300px; bottom: 0; left: 60px;
    border-width: 5px;
}

.hero-deco-dots {
    position: absolute; bottom: 40px; right: 20px;
    width: 80px; height: 80px;
    background-image: radial-gradient(circle, var(--accent) 2px, transparent 2px);
    background-size: 12px 12px;
    animation: dotsPulse 3s ease-in-out infinite;
}
.hero-deco-shape {
    position: absolute; top: 60px; right: 120px;
    width: 50px; height: 50px; background: var(--accent);
    border-radius: 0 50% 50% 50%; transform: rotate(45deg);
    opacity: 0.7;
    animation: shapeRotate 8s ease-in-out infinite;
}

/* Hero circle animations */
.hero-circle--lg {
    animation: floatUp 6s ease-in-out infinite;
}
.hero-circle--md {
    animation: floatDown 5s ease-in-out infinite 0.5s;
}
.hero-circle--sm {
    animation: floatUp 7s ease-in-out infinite 1s;
}

/* Glow pulse on circle borders */
.hero-circle--lg { box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 0 rgba(0,168,232,0.3); animation: floatUp 6s ease-in-out infinite, glowPulse 4s ease-in-out infinite; }
.hero-circle--sm { box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 0 rgba(0,168,232,0.3); animation: floatUp 7s ease-in-out infinite 1s, glowPulse 4s ease-in-out infinite 2s; }

/* Hero content entrance */
.hero-content { animation: slideInLeft 0.8s ease-out both; }
.hero-visual { animation: fadeInRight 1s ease-out 0.3s both; }
.hero-label { animation: slideDown 0.6s ease-out 0.2s both; }

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes floatDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 0 rgba(0,168,232,0); }
    50% { box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 12px rgba(0,168,232,0.15); }
}
@keyframes shapeRotate {
    0%, 100% { transform: rotate(45deg) scale(1); }
    50% { transform: rotate(90deg) scale(1.15); }
}
@keyframes dotsPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Button Accent */
.btn-accent {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent); color: var(--white);
    font-size: 15px; font-weight: 600; padding: 16px 32px;
    border-radius: var(--radius-full); transition: var(--transition);
    border: none; cursor: pointer; white-space: nowrap;
}
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,168,232,0.35); }
.btn-accent:active { transform: translateY(0); box-shadow: none; }
.btn-accent--lg { padding: 20px 40px; font-size: 16px; }
.btn-accent--full { width: 100%; justify-content: center; }
.btn-sep { opacity: 0.4; margin: 0 4px; }

/* ============================================
   FEATURES — Expand/collapse cards
   ============================================ */
.features { padding: 120px 0; background: #e8f0f5; }

.features-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 56px; flex-wrap: wrap; gap: 20px;
}
.features-header h2 {
    font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600; line-height: 1.15; color: var(--bg);
}
.features-header .section-tag { border-color: var(--accent); }

.features-grid {
    display: flex; gap: 20px; height: 420px;
}

.feature-card {
    border-radius: var(--radius); position: relative;
    overflow: hidden; transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex: 1; cursor: pointer; min-width: 0;
}
.feature-card.active,
.features-grid:hover .feature-card:hover { flex: 2.2; }
.features-grid:hover .feature-card:not(:hover) { flex: 0.8; }

/* Card variants — all white by default, dark when active/hovered */
.feature-card--dark,
.feature-card--outline,
.feature-card--white {
    background: var(--white); color: var(--bg);
    border: 2px solid rgba(0,0,0,0.08);
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.feature-card.active,
.features-grid:hover .feature-card:hover {
    background: var(--bg); color: var(--white);
    border-color: var(--bg);
}

/* Keep non-active cards white when grid is hovered */
.features-grid:hover .feature-card:not(:hover) {
    background: var(--white); color: var(--bg);
    border-color: rgba(0,0,0,0.08);
}

/* Corner triangles — hidden by default, shown on non-active */
.feature-corner { display: none; }

/* Text side */
.feature-text {
    padding: 32px 28px; display: flex; flex-direction: column;
    width: 280px; flex-shrink: 0; position: relative; z-index: 1;
}

/* Image side — hidden by default, revealed on active/hover */
.feature-img {
    position: absolute; top: 12px; right: 12px; bottom: 12px;
    width: 0; overflow: hidden;
    border-radius: var(--radius);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card.active .feature-img,
.feature-card:hover .feature-img {
    width: calc(100% - 280px);
}
.feature-img img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: var(--radius);
}

/* Icon */
.feature-icon {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; flex-shrink: 0;
}
.feature-icon--accent { background: var(--accent); color: var(--white); }
.feature-icon--dark { background: var(--bg); color: var(--white); }

/* Text */
.feature-card h4 {
    font-size: 16px; font-weight: 800; letter-spacing: 0.5px;
    line-height: 1.4; margin-bottom: 12px; text-transform: uppercase;
}
.feature-card p {
    font-size: 14px; line-height: 1.7; margin-bottom: 20px; flex: 1;
}
.feature-card p { color: #5a6a78; transition: color 0.4s ease; }
.feature-card.active p,
.features-grid:hover .feature-card:hover p { color: var(--text-muted); }

/* Dark card image override — inside the card with padding */
.feature-card--dark .feature-img {
    top: 16px; right: 16px; bottom: 16px;
}

/* Outline/white cards — image overlaps from right edge */
.feature-card--outline .feature-img,
.feature-card--white .feature-img {
    top: 16px; right: 16px; bottom: 16px;
}

/* Arrow */
.feature-arrow {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(0,0,0,0.15); color: var(--bg);
    transition: var(--transition); flex-shrink: 0;
}
.feature-card.active .feature-arrow,
.features-grid:hover .feature-card:hover .feature-arrow {
    background: var(--accent); border-color: var(--accent);
    color: var(--white); transform: rotate(45deg);
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--accent);
    border: 1px solid rgba(232,101,10,0.3); border-radius: var(--radius-full);
    padding: 8px 20px; margin-bottom: 20px;
}
.tag-icon { font-size: 12px; }
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-tag { margin: 0 auto 20px; }
.section-header h2 {
    font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 600; line-height: 1.2;
}


/* ============================================
   EXPERIENCE / ABOUT — Tabbed section
   ============================================ */
.experience { padding: 120px 0; background: var(--white); color: var(--bg); }

.exp-header { text-align: center; margin-bottom: 56px; }
.exp-header h2 {
    font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700; line-height: 1.2; color: var(--bg); margin-bottom: 32px;
}

.exp-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.exp-tab {
    font-family: var(--font-heading); font-size: 14px; font-weight: 600;
    padding: 14px 32px; border-radius: var(--radius-full);
    border: 2px solid rgba(0,0,0,0.1); background: transparent;
    color: var(--bg); cursor: pointer; transition: var(--transition);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.exp-tab:hover { border-color: var(--accent); color: var(--accent); }
.exp-tab.active { background: var(--bg); color: var(--white); border-color: var(--bg); }

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

.exp-image { position: relative; display: flex; align-items: center; justify-content: center; }
.exp-image img { width: 100%; max-width: 500px; object-fit: contain; }
.exp-stamp {
    position: absolute; bottom: -20px; right: 40px;
    width: 80px; height: 80px; background: var(--accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: 4px solid var(--white); color: var(--white);
}
.exp-stamp-inner { animation: shapeRotate 8s ease-in-out infinite; }

.exp-panel { display: none; }
.exp-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.exp-title-bar { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.exp-title-accent { width: 4px; min-height: 50px; background: var(--accent); border-radius: 2px; flex-shrink: 0; margin-top: 4px; }
.exp-title-bar h3 {
    font-family: var(--font-heading); font-size: 20px; font-weight: 700;
    line-height: 1.35; text-transform: uppercase; color: var(--bg);
}

.exp-info p { font-size: 15px; color: #5a6a78; line-height: 1.8; margin-bottom: 24px; }

.exp-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    padding: 20px 0; border-top: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 20px;
}
.exp-feature { display: flex; align-items: center; gap: 12px; }
.exp-feature-icon {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent); color: var(--white); flex-shrink: 0;
}
.exp-feature h5 { font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 0.3px; color: var(--bg); }

.exp-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.exp-check { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--bg); }
.exp-check svg { flex-shrink: 0; }

/* ============================================
   SHOWCASE — Alternating cards with numbers
   ============================================ */
.showcase { padding: 120px 0; position: relative; overflow: hidden; }

.showcase-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden; margin-bottom: 24px;
    min-height: 320px; position: relative;
}
.showcase-card:last-child { margin-bottom: 0; }
.showcase-card:nth-child(even) { direction: rtl; }
.showcase-card:nth-child(even) > * { direction: ltr; }

.showcase-img { position: relative; overflow: hidden; }
.showcase-img img { width: 100%; height: 100%; object-fit: cover; }

.showcase-text {
    padding: 48px 40px; display: flex; flex-direction: column; justify-content: center;
    position: relative;
}

.showcase-num {
    position: absolute; top: 20px; right: 30px;
    font-family: var(--font-heading); font-size: 80px; font-weight: 800;
    color: rgba(255,255,255,0.06); line-height: 1;
}

.showcase-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    background: var(--accent); color: var(--white);
    padding: 5px 16px; border-radius: var(--radius-full);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
    width: fit-content;
}

.showcase-text h4 {
    font-family: var(--font-heading); font-size: 24px; font-weight: 700;
    text-transform: uppercase; line-height: 1.3; margin-bottom: 20px;
}

.showcase-divider { width: 100%; height: 1px; background: var(--border-light); margin-bottom: 20px; }

.showcase-checks { display: flex; flex-direction: column; gap: 10px; }
.showcase-check { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.showcase-check svg { flex-shrink: 0; }

/* Center arrow button between halves */
.showcase-arrow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--white); border: 4px solid #e8f0f5;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); z-index: 2; transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.showcase-card:hover .showcase-arrow { background: var(--accent); color: var(--white); transform: translate(-50%, -50%) rotate(45deg); }

/* Decorative triangle between halves */
.showcase-deco {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 28px solid transparent; border-right: 28px solid transparent;
    border-top: 32px solid var(--accent); z-index: 2;
}

/* ============================================
   ABOUT (old — removed, replaced by experience)
   ============================================ */
.about { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-left .section-tag { display: inline-flex; }
.about-left h2 { font-family: var(--font-heading); font-size: clamp(28px, 3vw, 40px); line-height: 1.2; margin-bottom: 20px; }
.about-left p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }

.about-right { position: relative; }
.about-img-wrap { border-radius: var(--radius); overflow: hidden; }
.about-main-img { width: 100%; border-radius: var(--radius); }
.about-mini-stats {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--accent); border-radius: var(--radius); padding: 24px 28px;
    display: flex; align-items: center; gap: 16px;
}
.about-mini-num { font-size: 36px; font-weight: 800; display: block; letter-spacing: -1px; }
.about-mini-label { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.3; }

/* ============================================
   WHY US
   ============================================ */
.whyus { padding: 120px 0; }
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.whyus-img-stack { position: relative; }
.whyus-img-main { width: 100%; border-radius: var(--radius); }
.whyus-counter {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--accent); border-radius: var(--radius); padding: 24px 28px;
    text-align: center;
}
.whyus-counter-num { display: block; font-size: 40px; font-weight: 800; letter-spacing: -1px; }
.whyus-counter-label { font-size: 13px; color: rgba(255,255,255,0.8); }

.whyus-content h2 { font-family: var(--font-heading); font-size: clamp(26px, 3vw, 38px); line-height: 1.2; margin-bottom: 36px; }
.whyus-list { display: flex; flex-direction: column; gap: 0; }
.whyus-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 24px 0; border-bottom: 1px solid var(--border);
}
.whyus-item:first-child { border-top: 1px solid var(--border); }
.whyus-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.whyus-item h5 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.whyus-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   PROJECTS / PRODUCTS
   ============================================ */
.projects { padding: 120px 0; }
.projects-showcase { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; }
.projects-showcase .project-card:first-child { grid-row: 1 / 3; }
.project-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    min-height: 280px; cursor: pointer;
}
.project-card--large { min-height: 580px; }
.project-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.project-card:hover .project-img { transform: scale(1.05); }
.project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,30,40,0.85) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 28px;
}
.project-info { position: relative; z-index: 1; }
.project-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    background: var(--bg-card); border: 1px solid var(--border-light);
    padding: 5px 14px; border-radius: var(--radius-full);
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px;
}
.project-info h4 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.project-info p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.project-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--white);
    background: var(--bg-card); border: 1px solid var(--border-light);
    padding: 10px 20px; border-radius: var(--radius-full); transition: var(--transition);
}
.project-link:hover { background: var(--accent); border-color: var(--accent); }

/* ============================================
   PROCESS
   ============================================ */
.process { padding: 120px 0; position: relative; overflow: hidden; }
.process-bg { display: none; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; }
.process-step { text-align: center; }
.process-icon-wrap {
    width: 80px; height: 80px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-soft); border-radius: 50%; color: var(--accent);
}
.process-step h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin: 0 auto; }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    padding: 28px 0; overflow: hidden;
    background: linear-gradient(90deg, var(--navy) 0%, var(--accent) 100%);
}
.marquee-track { display: flex; width: 100%; overflow: hidden; }
.marquee-content {
    display: flex; align-items: center; gap: 24px;
    animation: marquee 20s linear infinite; white-space: nowrap;
}
.marquee-item { font-size: 18px; font-weight: 800; letter-spacing: 2px; flex-shrink: 0; }
.marquee-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   FOOTPRINT
   ============================================ */
.footprint { padding: 120px 0; }
.footprint-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.footprint-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px 24px; transition: var(--transition);
}
.footprint-card:hover { border-color: var(--accent); }
.fp-flag { font-size: 36px; margin-bottom: 14px; }
.footprint-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.fp-role { display: block; font-size: 12px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.footprint-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   CERTIFICATIONS
   ============================================ */
.certifications { padding: 120px 0; background: var(--bg-deep); position: relative; z-index: 1; }

.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.cert-card {
    background: var(--white); color: var(--bg); border: none;
    border-radius: var(--radius); padding: 32px 24px;
    transition: var(--transition); display: flex; flex-direction: column;
}
.cert-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,168,232,0.15); }

.cert-logo { margin-bottom: 20px; height: 90px; display: flex; align-items: center; }
.cert-logo img { max-height: 90px; max-width: 180px; width: auto; object-fit: contain; }

.cert-card h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--bg); }
.cert-card p { font-size: 13px; color: #5a6a78; line-height: 1.7; margin-bottom: 16px; flex: 1; }

.cert-checks {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
    border-top: 1px solid rgba(0,0,0,0.08); padding-top: 16px;
}
.cert-checks li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--bg);
}
.cert-checks svg { flex-shrink: 0; }

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

/* ============================================
   CTA
   ============================================ */
.cta-section { position: relative; padding: 100px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center right; }
.cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 40%, transparent 100%); }
.cta-inner { position: relative; z-index: 1; max-width: 560px; }
.cta-inner .section-tag { border-color: rgba(232,101,10,0.4); }
.cta-inner h2 { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 42px); line-height: 1.2; margin-bottom: 28px; }

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-tag { display: inline-flex; }
.contact-info h2 { font-family: var(--font-heading); font-size: clamp(28px, 3vw, 38px); line-height: 1.2; margin-bottom: 16px; }
.contact-info > p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--text); }
.contact-detail svg { color: var(--accent); flex-shrink: 0; }
.contact-detail a { transition: var(--transition); }
.contact-detail a:hover { color: var(--accent); }

.contact-form-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px;
}
.contact-form-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-input {
    width: 100%; padding: 14px 18px;
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-family: var(--font);
    font-size: 14px; color: var(--white); outline: none; transition: var(--transition);
}
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--text-dim); }
.form-textarea { resize: vertical; min-height: 100px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { position: relative; padding: 0 0 0; overflow: hidden; }
.footer-accent-line { height: 4px; background: linear-gradient(90deg, var(--accent), var(--navy)); }

.footer-ship-img {
    position: absolute; right: -60px; bottom: 60px;
    width: 400px; opacity: 0.06; pointer-events: none;
}
.footer-ship-img img { width: 100%; }

/* Footer CTA */
.footer-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    padding: 60px 0; border-bottom: 1px solid var(--border);
}
.footer-cta-left h2 {
    font-family: var(--font-heading); font-size: clamp(28px, 3vw, 40px);
    font-weight: 700; line-height: 1.2; margin-bottom: 8px;
}
.footer-cta-left p { font-size: 15px; color: var(--text-muted); }

.footer-logo-lg { height: 72px !important; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px; padding: 48px 0;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .logo-img { filter: brightness(0) invert(1); height: 40px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06); border: 1px solid var(--border);
    border-radius: 50%; color: var(--text-muted); transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.footer-mfa { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.footer-mfa span { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.mfa-logo { height: 40px; width: auto; object-fit: contain; }

.footer-col { display: flex; flex-direction: column; gap: 0; }
.footer-col h5 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.footer-col a {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 15px; color: var(--text-muted); padding: 12px 0;
    border-bottom: 1px solid var(--border); transition: var(--transition);
}
.footer-col a svg { opacity: 0; transition: var(--transition); color: var(--accent); }
.footer-col a:hover { color: var(--white); }
.footer-col a:hover svg { opacity: 1; }
.footer-col p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.footer-contact-label { font-size: 12px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; margin-top: 12px; }
.footer-contact-label:first-child { margin-top: 0; }

.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--text-dim); }
.footer-bottom a { color: var(--text-muted); transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 768px) {
    .footer-cta { flex-direction: column; text-align: center; }
    .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
    .footer-ship-img { display: none; }
}

/* ============================================
   SCROLL TOP
   ============================================ */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: var(--accent); color: var(--white);
    border-radius: var(--radius-sm); z-index: 900;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent-hover); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-burger-btn { display: flex; }
    .navbar .nav-inner { margin: 8px 16px 0; padding: 14px 20px; }

    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { height: 400px; }
    .hero-circle--lg { width: 240px; height: 240px; }
    .hero-circle--md { width: 180px; height: 180px; }
    .hero-circle--sm { width: 220px; height: 220px; }

    .features-grid { flex-direction: column; height: auto; }
    .feature-card { flex: none !important; min-height: 180px; }
    .feature-img { display: none !important; }
    .feature-text { width: 100%; }
    .exp-content { grid-template-columns: 1fr; gap: 40px; }
    .showcase-card { grid-template-columns: 1fr; }
    .showcase-card:nth-child(even) { direction: ltr; }
    .showcase-img { height: 280px; }
    .showcase-arrow { display: none; }
    .showcase-deco { display: none; }
    .projects-showcase { grid-template-columns: 1fr; }
    .projects-showcase .project-card:first-child { grid-row: auto; min-height: 360px; }
    .project-card { min-height: 280px; }
    .process-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footprint-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero-left { padding: 48px 20px 32px; }
    .hero h1 { font-size: 32px; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero-bottom-bar { flex-direction: column; gap: 16px; }
    .hero-right { height: 300px; }

    .services, .about, .whyus, .projects, .process, .footprint, .contact { padding: 80px 0; }
    /* features already handled at 1024 */
    .process-grid { grid-template-columns: 1fr; gap: 48px; }
    .footprint-grid { grid-template-columns: 1fr; }
    .stats-grid { padding: 28px 20px; }
    .stat-num { font-size: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-inner h2 { font-size: 28px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .navbar .nav-inner { margin: 8px 8px 0; padding: 12px 16px; }
    .logo-text { font-size: 16px; }
    .topbar { display: none; }
    .navbar { top: 0; }
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--bg); display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-spinner {
    width: 48px; height: 48px; border: 3px solid var(--border);
    border-top-color: var(--accent); border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ============================================
   NAV ACTIVE STATE
   ============================================ */
.nav-links a.active { color: var(--accent) !important; }
.nav-links a.active::after { width: 100%; }

/* ============================================
   THANK YOU MODAL
   ============================================ */
.thankyou-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 24px;
}
.thankyou-overlay.active { opacity: 1; visibility: visible; }
.thankyou-modal {
    background: var(--bg-deep);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    max-width: 440px;
    width: 100%;
    padding: 48px 40px;
    text-align: center;
    transform: translateY(30px) scale(0.92);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.thankyou-overlay.active .thankyou-modal { transform: translateY(0) scale(1); }
.thankyou-modal::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -30%;
    width: 160%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(0,168,232,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.thankyou-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.thankyou-close:hover { color: var(--white); border-color: var(--accent); background: rgba(0,168,232,0.1); }
.thankyou-icon { margin-bottom: 24px; position: relative; }
.thankyou-overlay.active .thankyou-circle-anim {
    animation: drawCircle 0.8s 0.3s ease forwards;
}
.thankyou-overlay.active .thankyou-check-anim {
    animation: drawCheck 0.5s 0.9s ease forwards;
}
@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}
.thankyou-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.thankyou-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}
.thankyou-btn {
    min-width: 160px;
    cursor: pointer;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--bg-deep); border-top: 1px solid var(--border);
    padding: 20px 40px; transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.cookie-text h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    font-family: var(--font); font-size: 14px; font-weight: 600;
    padding: 12px 28px; border-radius: var(--radius-full); cursor: pointer;
    transition: var(--transition);
}
.cookie-btn--accept { background: var(--accent); color: var(--white); border: none; }
.cookie-btn--accept:hover { background: var(--accent-hover); }
.cookie-btn--reject { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.cookie-btn--reject:hover { color: var(--white); border-color: var(--border-light); }

@media (max-width: 640px) {
    .cookie-inner { flex-direction: column; align-items: stretch; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}

/* ============================================
   FOOTPRINT HOVER ENHANCEMENT
   ============================================ */
.footprint-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,168,232,0.15);
}

/* ============================================
   SECOND MARQUEE ROW
   ============================================ */
.marquee-section .marquee-track:nth-child(2) { margin-top: 8px; }
.marquee-reverse { animation-direction: reverse !important; }

/* ============================================
   MOBILE MENU ENHANCEMENTS
   ============================================ */
.mobile-info {
    display: flex; flex-direction: column; gap: 14px;
    padding: 20px 0; border-top: 1px solid var(--border);
}
.mobile-info-item {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--text-muted); font-size: 14px; line-height: 1.6;
}
.mobile-info-item svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.mobile-info-item a { color: var(--text-muted); transition: var(--transition); }
.mobile-info-item a:hover { color: var(--white); }

@media (max-width: 768px) {
    .topbar { display: none; }
    .navbar { top: 0; }
    .process-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   LOGIN BUTTON & MODAL
   ============================================ */
.nav-login-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 600; color: var(--accent);
    padding: 10px 20px; border-radius: var(--radius-full);
    border: 1.5px solid var(--accent); background: transparent;
    transition: var(--transition); cursor: pointer;
}
.nav-login-btn:hover { background: var(--accent); color: var(--white); }

.mobile-login-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: transparent; border: 1.5px solid var(--accent);
    color: var(--accent); padding: 16px; border-radius: var(--radius-full);
    font-size: 16px; font-weight: 600; margin-top: 12px;
    transition: var(--transition); cursor: pointer; width: 100%;
}
.mobile-login-btn:hover { background: var(--accent); color: var(--white); }

/* Overlay & Blur */
.login-overlay {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.login-overlay.active {
    opacity: 1; visibility: visible;
}
.login-overlay::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(8, 22, 40, 0.75);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* Modal */
.login-modal {
    position: relative; z-index: 1;
    background: var(--bg-deep); border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 48px 40px;
    width: 100%; max-width: 420px;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
}
.login-overlay.active .login-modal {
    transform: translateY(0) scale(1);
}

.login-close {
    position: absolute; top: 16px; right: 16px;
    color: var(--text-muted); padding: 8px;
    transition: var(--transition); cursor: pointer;
    background: none; border: none;
}
.login-close:hover { color: var(--white); }

.login-header { text-align: center; margin-bottom: 32px; }
.login-icon {
    width: 64px; height: 64px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-soft); border-radius: 50%; color: var(--accent);
}
.login-header h3 {
    font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin-bottom: 6px;
}
.login-header p { font-size: 14px; color: var(--text-muted); }

.login-form { display: flex; flex-direction: column; gap: 20px; }
.login-field { display: flex; flex-direction: column; gap: 6px; }
.login-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.login-input {
    width: 100%; padding: 14px 18px;
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-family: var(--font);
    font-size: 14px; color: var(--white); outline: none;
    transition: var(--transition);
}
.login-input:focus { border-color: var(--accent); }
.login-input::placeholder { color: var(--text-dim); }

.login-options {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px;
}
.login-remember { display: flex; align-items: center; gap: 6px; color: var(--text-muted); cursor: pointer; }
.login-remember input { accent-color: var(--accent); }
.login-forgot { color: var(--accent); font-weight: 500; transition: var(--transition); }
.login-forgot:hover { color: var(--accent-hover); }

/* Body blur when login active */
body.login-open .navbar,
body.login-open .topbar,
body.login-open .hero,
body.login-open .features,
body.login-open .experience,
body.login-open .showcase,
body.login-open .process,
body.login-open .marquee-section,
body.login-open .footprint,
body.login-open .certifications,
body.login-open .cta-section,
body.login-open .contact,
body.login-open .footer,
body.login-open .bg-effects {
    filter: blur(6px);
    pointer-events: none;
    transition: filter 0.3s ease;
}

@media (max-width: 1024px) {
    .nav-login-btn { display: none; }
}

@media (max-width: 480px) {
    .login-modal { padding: 36px 24px; }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page { padding: 140px 40px 80px; max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-family: 'Outfit'; font-size: 36px; font-weight: 700; margin-bottom: 8px; }
.legal-updated { font-size: 14px; color: var(--text-muted); margin-bottom: 40px; }
.legal-page h2 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; color: var(--accent); }
.legal-page p, .legal-page li { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }

.legal-page { position: relative; z-index: 1; }
.legal-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--bg-deep); border-bottom: 1px solid var(--border); padding: 0 48px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.legal-nav .nav-logo { display: flex; align-items: center; }
.legal-nav .logo-img { height: 56px; width: auto; filter: brightness(0) invert(1); }
.legal-nav .back-link { font-size: 14px; color: var(--text-muted); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.legal-nav .back-link:hover { color: var(--accent); }

@media (max-width: 768px) {
    .legal-page { padding: 110px 20px 60px; }
    .legal-page h1 { font-size: 28px; }
    .legal-nav { padding: 0 20px; }
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section { padding: 100px 0; position: relative; z-index: 1; }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.news-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.08); }
.news-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: 12px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.news-card-title { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.35; margin-bottom: 10px; flex: 1; }
.news-card-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-read {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    margin-top: auto;
}
.news-card:hover .news-card-read { gap: 10px; }

/* News Modal/Popup */
.news-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 24px;
}
.news-overlay.active { opacity: 1; visibility: visible; }
.news-modal {
    background: var(--bg-deep);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.96);
    transition: var(--transition);
    position: relative;
}
.news-overlay.active .news-modal { transform: translateY(0) scale(1); }
.news-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: rgba(8,22,40,0.85);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.news-modal-close:hover { background: var(--accent); border-color: var(--accent); }
.news-modal-img {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}
.news-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.news-modal-body { padding: 32px; }
.news-modal-date { font-size: 13px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.news-modal-title { font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--white); line-height: 1.3; margin: 12px 0 20px; }
.news-modal-content { font-size: 15px; color: var(--text); line-height: 1.75; }
.news-modal-content p { margin-bottom: 14px; }

/* News scrollbar */
.news-modal::-webkit-scrollbar { width: 6px; }
.news-modal::-webkit-scrollbar-track { background: transparent; }
.news-modal::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }

@media (max-width: 1100px) {
    .news-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .news-section { padding: 60px 0; }
    .news-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
    .news-card-img { height: 140px; }
    .news-modal-img { height: 220px; }
    .news-modal-body { padding: 24px; }
    .news-modal-title { font-size: 20px; }
}
@media (max-width: 480px) {
    .news-grid { grid-template-columns: 1fr; }
}
