/* ============================================
   6COMMAS — Galactic Futuristic Theme
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2EA3F2;
    --primary-glow: rgba(46, 163, 242, 0.3);
    --accent: #7B2FFF;
    --accent-glow: rgba(123, 47, 255, 0.3);
    --cyan: #00E5FF;
    --bg-deep: #0a0a1a;
    --bg-section: #0d0d24;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-light: #c8c8d4;
    --text-muted: #8888a0;
    --gold: #FFD700;
    --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-light);
    background: var(--bg-deep);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--cyan);
}

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

/* --- Starfield Background --- */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 15% 85%, rgba(46,163,242,0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 60% 55%, rgba(123,47,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 15%, rgba(0,229,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 25% 45%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 75%, rgba(255,255,255,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 55%, rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 5% 50%, rgba(255,255,255,0.25) 0%, transparent 100%);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    padding: 0.7rem 2rem;
    backdrop-filter: blur(12px);
}

.nav-logo img {
    height: 40px;
    filter: invert(1) brightness(2);
    transition: height 0.3s;
}

.navbar.scrolled .nav-logo img {
    height: 34px;
}

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

.nav-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--text-white);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: transform 0.3s, opacity 0.3s;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    z-index: 1;
    overflow: hidden;
    background: url('../images/hero-background.jpg') center / cover no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 20, 0.35), rgba(10, 10, 40, 0.3));
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-logo {
    height: 80px;
    filter: invert(1) brightness(2);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(46, 163, 242, 0.2);
}

.hero .tagline {
    font-size: 1.4rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 300;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero .desc {
    max-width: 650px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
    border: none;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-white);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

/* --- Sections --- */
.section {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

.section-alt {
    background: var(--bg-section);
}

.section-white {
    background: #ffffff;
}

.section-white .section-header h2 {
    color: #1a1a2e;
}

.section-white .section-header p {
    color: #555;
}

.section-white .section-header p strong {
    color: #1a1a2e;
}

.section-white .card {
    background: #f5f5fa;
    border-color: #e0e0ea;
}

.section-white .card h3 {
    color: #1a1a2e;
}

.section-white .card p {
    color: #555;
}

.section-white .card .icon {
    filter: none;
}

.section-white .card .badge-exclusive {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border-color: rgba(200, 160, 0, 0.4);
    color: #b8860b;
}

.section-white .btn-outline {
    color: #1a1a2e;
    border-color: #1a1a2e;
}

.section-white .btn-outline:hover {
    background: #1a1a2e;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.section-white .expertise-card {
    background: #f5f5fa;
    border-color: #e0e0ea;
    backdrop-filter: none;
}

.section-white .expertise-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(46, 163, 242, 0.12);
}

.section-white .expertise-card h3 {
    color: #1a1a2e;
}

.section-white .expertise-card .icon {
    filter: none;
}

.section-white .progress-bar {
    background: rgba(0, 0, 0, 0.08);
}

.section-white .subtitle {
    color: var(--primary);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* --- Digital Assets CTA Banner --- */
.da-banner-section {
    position: relative;
    z-index: 1;
    padding: 0 0 4rem;
    background: #ffffff;
    overflow: hidden;
}

.da-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 40%, #0d0d24 100%);
    border-radius: 0 300px 300px 0;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: none;
    margin-right: 2rem;
    max-width: 1400px;
}

.da-banner-left {
    flex: 1;
    padding: 3.5rem 3rem 3.5rem calc(max((100vw - 1200px) / 2, 2rem));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
}

.da-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.3rem;
}

.da-accent {
    font-size: 1rem;
    color: var(--cyan);
    font-weight: 400;
    line-height: 1.6;
}

.da-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.4;
}

.da-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 14px 36px;
    background: var(--cyan);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s;
}

.da-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.3);
    color: #ffffff;
}

.da-banner-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

/* Orbit Graphic */
.da-orbit-graphic {
    position: relative;
    width: 420px;
    height: 420px;
}

.da-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.da-ring-1 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(255, 255, 255, 0.15);
    border-width: 1.5px;
}

.da-ring-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(255, 255, 255, 0.1);
    border-style: dashed;
    border-width: 1.5px;
}

.da-ring-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(255, 255, 255, 0.07);
    border-width: 1.5px;
}

.da-orbit-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: 2;
}

.da-icon-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.da-pos-top          { top: 5px;    left: 50%;  transform: translateX(-50%); }
.da-pos-top-right    { top: 35px;   right: 18px; }
.da-pos-right        { top: 50%;    right: 2px;  transform: translateY(-50%); }
.da-pos-bottom-right { bottom: 35px; right: 18px; }
.da-pos-bottom       { bottom: 5px;  left: 50%; transform: translateX(-50%); }
.da-pos-bottom-left  { bottom: 35px; left: 18px; }
.da-pos-left         { top: 50%;    left: 2px;  transform: translateY(-50%); }
.da-pos-top-left     { top: 35px;   left: 18px; }

/* Slow rotation animation */
@keyframes orbit-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.da-ring-2 {
    animation: orbit-spin 60s linear infinite;
}

/* DA Banner responsive */
@media (max-width: 768px) {
    .da-banner {
        flex-direction: column;
        border-radius: 0;
        margin-right: 0;
    }

    .da-banner-left {
        padding: 2.5rem 2rem;
        align-items: center;
        text-align: center;
    }

    .da-banner-right {
        padding: 1rem 2rem 2.5rem;
    }

    .da-orbit-graphic {
        width: 300px;
        height: 300px;
    }

    .da-ring-1 { width: 130px; height: 130px; }
    .da-ring-2 { width: 215px; height: 215px; }
    .da-ring-3 { width: 285px; height: 285px; }

    .da-orbit-icon { width: 44px; height: 44px; }
    .da-icon-center { width: 56px; height: 56px; }
    .da-pos-top          { top: 2px; }
    .da-pos-top-right    { top: 22px; right: 8px; }
    .da-pos-bottom-right { bottom: 22px; right: 8px; }
    .da-pos-bottom       { bottom: 2px; }
    .da-pos-bottom-left  { bottom: 22px; left: 8px; }
    .da-pos-top-left     { top: 22px; left: 8px; }
}

/* --- Final CTA Banner --- */
.final-cta {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #06061a 0%, #0d0a1f 30%, #100a22 50%, #0d0a1f 70%, #06061a 100%);
}

.final-cta-dots {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    pointer-events: none;
}

.final-cta-dots-left {
    left: 0;
    background:
        radial-gradient(circle 1.5px, rgba(0, 229, 255, 0.25) 1px, transparent 1.5px),
        radial-gradient(circle 1px, rgba(46, 163, 242, 0.15) 0.5px, transparent 1px);
    background-size: 20px 20px, 14px 14px;
    background-position: 0 0, 7px 7px;
    mask-image: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.final-cta-dots-right {
    right: 0;
    background:
        radial-gradient(circle 1.5px, rgba(200, 50, 200, 0.25) 1px, transparent 1.5px),
        radial-gradient(circle 1px, rgba(180, 40, 180, 0.15) 0.5px, transparent 1px);
    background-size: 20px 20px, 14px 14px;
    background-position: 0 0, 7px 7px;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.final-cta-divider {
    width: 80px;
    height: 3px;
    background: var(--cyan);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.final-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--cyan);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s;
}

.final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 229, 255, 0.3);
    color: #ffffff;
}

@media (max-width: 768px) {
    .final-cta-heading {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .final-cta-dots {
        width: 30%;
    }
}

/* --- Contact Page Cards --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(46, 163, 242, 0.15);
}

.contact-card-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.contact-card h3 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.contact-card-link {
    color: var(--cyan);
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-card-link:hover {
    color: var(--text-white);
}

.contact-card-address {
    color: var(--text-light);
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 22px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
}

.contact-social-links a svg {
    fill: currentColor;
}

.contact-social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* --- Scroll to Top Button --- */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(46, 163, 242, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, box-shadow 0.3s;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    box-shadow: 0 6px 28px rgba(46, 163, 242, 0.6);
    transform: translateY(-3px);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* --- About Page --- */
.about-page {
    position: relative;
    min-height: 100vh;
    padding: 9rem 2rem 5rem;
    background:
        linear-gradient(135deg, rgba(5, 10, 40, 0.88) 0%, rgba(8, 15, 55, 0.85) 50%, rgba(12, 25, 75, 0.82) 100%),
        url('../images/crypto_illustration_11.png') center / 800px repeat,
        url('../images/3128399b.jpg') center / cover no-repeat;
    overflow: hidden;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Floating decorative arrows */
.about-arrow {
    position: absolute;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
    width: 40px;
    height: auto;
    filter: brightness(1.2);
}

.about-arrow-1 { top: 12%; right: 8%; transform: rotate(30deg); width: 45px; }
.about-arrow-2 { top: 35%; left: 4%; transform: rotate(-45deg); width: 35px; }
.about-arrow-3 { top: 55%; right: 5%; transform: rotate(120deg); width: 50px; }
.about-arrow-4 { top: 80%; left: 7%; transform: rotate(-20deg); width: 40px; }

/* Hero row: illustration + intro */
.about-hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-illustration img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(123, 47, 255, 0.3));
}

.about-intro-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.about-intro-subtitle {
    font-size: 1.1rem;
    color: var(--cyan);
    margin-bottom: 1.75rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}

.about-intro-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 520px;
}

/* Value Cards */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 5rem;
}

.about-value-card {
    position: relative;
    padding: 2.25rem 1.75rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.about-value-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 4px 30px rgba(0, 229, 255, 0.15);
    transform: translateY(-3px);
}

.about-value-check {
    position: absolute;
    top: -14px;
    left: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan), var(--primary));
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 229, 255, 0.4);
}

.about-value-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    margin-top: 0.5rem;
}

.about-value-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.8;
}

/* Closing CTA */
.about-closing {
    text-align: center;
    padding: 2rem 1rem;
}

.about-closing-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.about-accent {
    color: var(--cyan);
}

.about-closing-divider {
    width: 60px;
    height: 2px;
    background: var(--cyan);
    margin: 0 auto 1.5rem;
}

.about-closing-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1.5px solid var(--text-white);
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.about-cta-btn:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.3);
}

@media (max-width: 768px) {
    .about-heading {
        font-size: 2.2rem;
    }

    .about-hero-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-intro-text {
        margin-left: auto;
        margin-right: auto;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-closing-title {
        font-size: 1.25rem;
    }

    .about-arrow {
        width: 28px !important;
    }
}

/* --- Jump Menu --- */
.jump-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.jump-menu-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    text-decoration: none;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.jump-menu-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 6px 24px rgba(46, 163, 242, 0.15);
}

.jump-menu-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.6;
}

.jump-menu-label {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
}

.jump-menu-item:hover .jump-menu-label {
    color: var(--cyan);
}

/* --- Service Intro (two-column) --- */
.service-intro {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.service-intro-text {
    flex: 1;
}

.service-intro-text .subtitle {
    font-size: 1.1rem;
    color: var(--cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.service-intro-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.service-intro-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-intro-img img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    max-height: 400px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .service-intro {
        flex-direction: column;
        gap: 2rem;
    }

    .jump-menu {
        grid-template-columns: 1fr;
    }
}

/* --- Services Page Improvements --- */
.service-block > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 2;
    max-width: 800px;
}

.service-block h3 {
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, var(--primary), var(--accent), transparent) 1;
    display: inline-block;
}

.service-sub-card p,
.tool-card p,
.process-card p {
    line-height: 1.9;
    color: var(--text-light);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: var(--cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.section-header p {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* --- Glass Cards --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(46, 163, 242, 0.15);
    border-color: var(--primary);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.card .icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(46, 163, 242, 0.15), rgba(123, 47, 255, 0.1));
    border: 1px solid rgba(46, 163, 242, 0.25);
    color: var(--primary);
}

.card .icon-svg svg {
    width: 28px;
    height: 28px;
}

.section-white .card .icon-svg {
    background: linear-gradient(135deg, rgba(46, 163, 242, 0.12), rgba(123, 47, 255, 0.08));
    border-color: rgba(46, 163, 242, 0.3);
    color: var(--primary);
}

.card h3 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

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

/* --- Expertise Cards with Progress Bars --- */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.expertise-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    transition: transform 0.3s, border-color 0.3s;
}

.expertise-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}

.expertise-card .icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.expertise-card .card-title {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.expertise-card .icon {
    font-size: 1.8rem;
    margin-right: 0.9rem;
}

.expertise-card h3 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.05rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar .fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 1.5s ease;
    width: 0;
}

.progress-bar .fill.animated {
    /* width set via data attribute */
}

/* --- Invitation Only Badge --- */
.badge-exclusive {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.5rem;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.1);
    vertical-align: middle;
}

h2 .badge-exclusive,
h3 .badge-exclusive,
h4 .badge-exclusive {
    display: block;
    width: fit-content;
    margin-top: 0.75rem;
}

.badge-exclusive::before {
    content: '\1F512';
    font-size: 0.7rem;
}

/* --- Service Detail Cards --- */
.service-block {
    margin-bottom: 4rem;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.service-block > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 2rem;
}

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

.service-sub-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.75rem;
    backdrop-filter: blur(8px);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-sub-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 6px 24px rgba(46, 163, 242, 0.12);
}

.service-sub-card .icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.service-sub-card h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

/* --- Process Steps --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-card {
    background: var(--glass);
    border: 2px solid var(--primary-glow);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

.process-card .step-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.process-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.process-card h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Tools Grid --- */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: var(--glass);
    border: 2px solid var(--primary-glow);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

.tool-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tool-card h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.tool-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* --- Values Cards --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.3s, border-color 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.value-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

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

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(46, 163, 242, 0.1), rgba(123, 47, 255, 0.1));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Footer --- */
.footer {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem 2rem;
    background: rgba(5, 5, 15, 0.9);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col p,
.footer-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Key Message Highlight --- */
.highlight-box {
    background: linear-gradient(135deg, rgba(46, 163, 242, 0.1), rgba(123, 47, 255, 0.08));
    border: 1px solid var(--primary-glow);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.highlight-box p {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--cyan);
    font-weight: 600;
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(10, 10, 26, 0.98);
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        backdrop-filter: blur(20px);
    }

    .nav-links.open {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .hero .desc {
        font-size: 1rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-block h3 {
        font-size: 1.4rem;
    }

    .card-grid,
    .expertise-grid,
    .process-grid,
    .tools-grid,
    .service-sub-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }
}
