/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f0f0f0;
    --gray-200: #e0e0e0;
    --gray-400: #a0a0a0;
    --gray-600: #525252;
    --gray-800: #1a1a1a;
    --gray-900: #0d0d0d;
    --accent: #e0e0e0;
    --font: 'Inter', -apple-system, sans-serif;
    --max-w: 1200px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.3s var(--ease);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== LOADER ===== */
/* ===== LOADER ===== */
@keyframes loaderFadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
@keyframes loadFill { 0% { width:0%; } 60% { width:70%; } 100% { width:100%; } }
@keyframes letterPulse { 0%,100% { opacity:1; transform:translateY(0); } 50% { opacity:0.3; transform:translateY(-6px); } }
@keyframes glowPulse { 0%,100% { box-shadow: 0 0 20px rgba(255,255,255,0.1); } 50% { box-shadow: 0 0 60px rgba(255,255,255,0.3); } }

.loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
    height: 60px;
    width: auto;
    animation: loaderFadeIn 0.6s ease forwards, glowPulse 2s ease infinite;
}

.loader-letters {
    display: flex;
    gap: 0.2em;
}
.loader-letters span {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--white);
    animation: letterPulse 1.5s ease infinite;
}
.loader-letters span:nth-child(1) { animation-delay: 0s; }
.loader-letters span:nth-child(2) { animation-delay: 0.1s; }
.loader-letters span:nth-child(3) { animation-delay: 0.2s; }
.loader-letters span:nth-child(4) { animation-delay: 0.3s; }
.loader-letters span:nth-child(5) { animation-delay: 0.4s; }
.loader-letters span:nth-child(6) { animation-delay: 0.5s; }

.loader-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: -1.5rem;
    animation: loaderFadeIn 0.8s ease 0.3s both;
}

.loader-bar-wrap {
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.loader-bar {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.loader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: loadFill 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
}
.loader-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px white, 0 0 20px white;
}
.loader-percent {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.1em;
    font-variant-numeric: tabular-nums;
}

/* ===== CURSOR ===== */
.cursor { opacity: 0;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}
.cursor-follower { opacity: 0;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.cursor-follower.expand { width: 56px; height: 56px; opacity: 0.5; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.15); }
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--white); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.2); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 110px; width: auto; }
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
    position: relative;
    letter-spacing: 0.02em;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--white);
    transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    color: var(--white);
    transition: var(--transition);
}
.nav-cta:hover { background: var(--white); color: var(--black); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { width: 24px; height: 1.5px; background: var(--white); transition: var(--transition); display: block; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero-heading {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero-heading .block { display: block; }
.hero-sub {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.hstat { text-align: center; }
.hstat-n {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.hstat-l {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* Hero Visual */
/* ===== GLOBE HERO VISUAL ===== */
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(12px)} }
@keyframes spinCW  { from{transform:translate(-50%,-50%) rotateX(75deg) rotateZ(0deg)} to{transform:translate(-50%,-50%) rotateX(75deg) rotateZ(360deg)} }
@keyframes spinCCW { from{transform:translate(-50%,-50%) rotateX(75deg) rotateZ(0deg)} to{transform:translate(-50%,-50%) rotateX(75deg) rotateZ(-360deg)} }
@keyframes spinSlow{ from{transform:translate(-50%,-50%) rotateX(60deg) rotateZ(0deg)} to{transform:translate(-50%,-50%) rotateX(60deg) rotateZ(360deg)} }
@keyframes spinFast{ from{transform:translate(-50%,-50%) rotateX(80deg) rotateZ(0deg)} to{transform:translate(-50%,-50%) rotateX(80deg) rotateZ(-360deg)} }
@keyframes orbitDot{ from{transform:rotate(0deg) translateX(140px) rotate(0deg)} to{transform:rotate(360deg) translateX(140px) rotate(-360deg)} }
@keyframes orbitDot2{ from{transform:rotate(90deg) translateX(110px) rotate(-90deg)} to{transform:rotate(450deg) translateX(110px) rotate(-450deg)} }
@keyframes orbitDot3{ from{transform:rotate(45deg) translateX(170px) rotate(-45deg)} to{transform:rotate(405deg) translateX(170px) rotate(-405deg)} }
@keyframes orbitDot4{ from{transform:rotate(200deg) translateX(90px) rotate(-200deg)} to{transform:rotate(560deg) translateX(90px) rotate(-560deg)} }
@keyframes pulseGlow{ 0%,100%{box-shadow:0 0 30px rgba(99,102,241,0.3),0 0 60px rgba(99,102,241,0.1)} 50%{box-shadow:0 0 60px rgba(99,102,241,0.6),0 0 120px rgba(99,102,241,0.2)} }
@keyframes sparkle{ 0%,100%{opacity:0.2;transform:scale(0.8)} 50%{opacity:1;transform:scale(1.3)} }

.hero-visual {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Globe wrapper */
.globe-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rings */
.globe-ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(99,102,241,0.35);
}
.ring-1 {
    width: 200px; height: 200px;
    animation: spinCW 8s linear infinite;
    transform: translate(-50%,-50%) rotateX(75deg);
    border-color: rgba(139,92,246,0.5);
    box-shadow: 0 0 15px rgba(139,92,246,0.2);
}
.ring-2 {
    width: 270px; height: 270px;
    animation: spinCCW 12s linear infinite;
    transform: translate(-50%,-50%) rotateX(75deg);
    border-color: rgba(99,102,241,0.4);
}
.ring-3 {
    width: 340px; height: 340px;
    animation: spinSlow 18s linear infinite;
    transform: translate(-50%,-50%) rotateX(60deg);
    border-color: rgba(59,130,246,0.25);
    border-style: dashed;
}
.ring-4 {
    width: 400px; height: 400px;
    animation: spinFast 25s linear infinite;
    transform: translate(-50%,-50%) rotateX(80deg);
    border-color: rgba(99,102,241,0.12);
}

/* Core */
.globe-core {
    position: relative;
    z-index: 2;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(139,92,246,0.3), rgba(10,10,10,0.95));
    border: 1px solid rgba(139,92,246,0.4);
    display: flex; align-items: center; justify-content: center;
    animation: pulseGlow 3s ease-in-out infinite;
}
.globe-core-inner {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.globe-logo {
    width: 80px;
    height: auto;
}

/* Orbiting dots */
.globe-dot {
    position: absolute;
    top: 50%; left: 50%;
    width: 8px; height: 8px;
    border-radius: 50%;
    margin: -4px 0 0 -4px;
}
.dot-1 { background: #818cf8; box-shadow: 0 0 8px #818cf8; animation: orbitDot 6s linear infinite; }
.dot-2 { background: #a78bfa; box-shadow: 0 0 8px #a78bfa; animation: orbitDot2 4s linear infinite; }
.dot-3 { background: #60a5fa; box-shadow: 0 0 8px #60a5fa; animation: orbitDot3 9s linear infinite; width:5px; height:5px; }
.dot-4 { background: #c4b5fd; box-shadow: 0 0 6px #c4b5fd; animation: orbitDot4 7s linear infinite; width:5px; height:5px; }

/* Floating cards */
.hero-card-float {
    position: absolute;
    background: rgba(15,15,20,0.85);
    border: 1px solid rgba(139,92,246,0.25);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(12px);
    white-space: nowrap;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.float-icon { font-size: 1.2rem; }
.float-text strong { color: var(--white); font-size: 0.85rem; }
.float-text small { color: var(--gray-400); display: block; margin-top: 0.1rem; font-size: 0.75rem; }
.card-1 { top: 5%;  left: -8%;  animation: floatA 6s ease-in-out infinite; }
.card-2 { top: 38%; right: -10%; animation: floatB 7s ease-in-out infinite; }
.card-3 { bottom: 8%; left: -2%; animation: floatA 5s ease-in-out infinite 1s; }

/* Sparkles */
.sparkle {
    position: absolute;
    color: rgba(139,92,246,0.6);
    font-size: 1.5rem;
    animation: sparkle 3s ease-in-out infinite;
    z-index: 5;
}
.sp-1 { top: 15%; right: 8%; animation-delay: 0s; }
.sp-2 { bottom: 20%; right: 5%; animation-delay: 1.5s; font-size: 1rem; }

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.scroll-line-wrap {
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
}
.scroll-line-inner {
    width: 100%; height: 100%;
    background: var(--white);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    padding: 1rem 0;
    background: rgba(255,255,255,0.02);
}
.marquee-track { overflow: hidden; }
.marquee-inner {
    display: flex;
    gap: 3rem;
    align-items: center;
    width: max-content;
    animation: marquee 20s linear infinite;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    text-transform: uppercase;
}
.mx { color: rgba(255,255,255,0.2); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SERVICES ===== */
.services-section { padding: 8rem 0; }
.section-head { margin-bottom: 4rem; }
.tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 1rem;
}
.tag.light { color: rgba(255,255,255,0.5); }
.section-head h2, .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.stroke-text {
    -webkit-text-stroke: 1.5px var(--white);
    color: transparent;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
}
.svc-card {
    background: var(--black);
    padding: 3rem;
    position: relative;
    transition: background 0.4s ease;
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.03);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover { background: rgba(255,255,255,0.03); }
.svc-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.svc-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.svc-icon svg { width: 22px; height: 22px; }
.svc-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.svc-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.svc-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
    transition: color 0.3s ease;
}
.svc-link:hover { color: var(--white); }

/* ===== WHY SECTION ===== */
.why-section {
    padding: 8rem 0;
    background: var(--gray-900);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.why-left h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.why-left p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-400);
    font-size: 0.95rem;
}
.check {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
}
.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.why-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.why-card:hover {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
}
.wc-icon { font-size: 1.5rem; }
.why-card h4 { font-size: 0.95rem; font-weight: 700; }
.why-card p { font-size: 0.85rem; color: var(--gray-400); line-height: 1.5; }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 8rem 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.cta-inner p {
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: var(--gray-900);
    padding-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { height: 50px;  margin-bottom: 1rem; }
.footer-brand p { color: var(--gray-600); font-size: 0.9rem; }
.footer-sub { color: var(--gray-600); font-size: 0.8rem; margin-top: 0.25rem; }
.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a, .footer-col li {
    font-size: 0.9rem;
    color: var(--gray-600);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    padding: 1.5rem 0;
}
.footer-bottom p {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.visible, .reveal-right.visible {
    opacity: 1;
    transform: none;
}
.reveal-up:nth-child(2) { transition-delay: 0.1s; }
.reveal-up:nth-child(3) { transition-delay: 0.2s; }
.reveal-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== PAGE HEADER (inner pages) ===== */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--black);
    position: relative;
    overflow: hidden;
}
.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.page-hero p {
    color: var(--gray-400);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-intro { padding: 6rem 0; }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-intro-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.about-intro-text p {
    color: var(--gray-400);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}
.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.about-stat-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}
.about-stat-box:hover {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
}
.about-stat-box:first-child { grid-column: 1 / -1; }
.asb-num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.asb-label { font-size: 0.85rem; color: var(--gray-400); }

/* Twin section */
.twin-section {
    padding: 6rem 0;
    background: var(--gray-900);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.twin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.twin-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.twin-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.twin-card:hover::before { opacity: 1; }
.twin-card:hover {
    border-color: rgba(255,255,255,0.15);
}
.twin-logo { height: 80px;  margin: 0 auto 1.5rem; opacity: 0.15; }
.twin-role {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}
.twin-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.twin-card p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.7; }

/* Why partner section */
.why-partner { padding: 6rem 0; }
.why-partner-head { text-align: center; margin-bottom: 4rem; }
.why-partner-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.why-partner-head p {
    color: var(--gray-400);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.partner-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition);
}
.partner-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}
.pc-icon { font-size: 2rem; margin-bottom: 1rem; }
.partner-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.partner-card p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 6rem 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}
.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.contact-info p {
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.cd-item { display: flex; align-items: flex-start; gap: 1rem; }
.cd-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.cd-text span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}
.cd-text a, .cd-text p {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}
.cd-text a:hover { color: var(--gray-400); }

/* Form */
.contact-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 3rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.6rem;
}
input, textarea, select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 0.875rem 1rem;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}
input:focus, textarea:focus, select:focus {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
}
input::placeholder, textarea::placeholder { color: var(--gray-600); }
textarea { resize: vertical; min-height: 140px; }
select option { background: var(--gray-900); }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .about-intro-grid { grid-template-columns: 1fr; }
    .twin-grid { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 75%; height: 100vh;
        background: var(--gray-900);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s var(--ease);
        border-left: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links.open { right: 0; }
    .nav-link { font-size: 1.2rem; }
    .hero-actions { flex-direction: column; }
    .partner-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-visual { grid-template-columns: 1fr; }
    .about-stat-box:first-child { grid-column: auto; }
}

/* ===== CONTACT EXTRAS ===== */
.contact-promise {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.cp-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-400);
}
.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--white);
}

/* ===== WHY NEED SECTION (About page) ===== */
.why-need-section {
    padding: 6rem 0;
    background: var(--black);
}
.why-need-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.why-need-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.1; margin: 1rem 0; }
.why-need-head p { color: var(--gray-400); font-size: 1.05rem; line-height: 1.7; }
.reality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.reality-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.reality-stat:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.reality-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-variant-numeric: tabular-nums;
}
.reality-label { color: var(--gray-400); font-size: 0.9rem; line-height: 1.5; }
.reality-cta {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.reality-cta p { color: var(--gray-400); font-size: 1rem; line-height: 1.7; }
.reality-cta strong { color: var(--white); }

/* delay helpers */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }

/* outline button */
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

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