/* --- 0. VARIABLES & SETUP --- */
:root {
    --bg-dark: #050505;
    --bg-card: #121212;
    --text-main: #e0e0e0;
    --text-muted: #888888;
    
    /* Neon Palette */
    --accent-primary: #7000ff; /* Electric Violet */
    --accent-secondary: #00ff9d; /* Cyber Mint */
    --accent-gradient: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    
    --font-head: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    --container-width: 1240px;
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    /* Noise texture overlay can be added via image later */
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-family: var(--font-head);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

/* Glowing Button Style */
.btn--glow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn--glow::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn--glow:hover {
    border-color: var(--accent-secondary);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
    color: var(--accent-secondary);
}

.btn--glow:hover::before {
    left: 100%;
}

/* --- HEADER (Island Style) --- */
.header-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.header {
    width: 100%;
    max-width: var(--container-width);
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: 16px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header__logo-img {
    height: 32px;
}

.nav__list {
    display: flex;
    gap: 40px;
}

.nav__link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav__link:hover {
    color: #fff;
}

/* Dot hover effect */
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 4px;
    height: 4px;
    background-color: var(--accent-secondary);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.nav__link:hover::after {
    transform: translateX(-50%) scale(1);
}

.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.burger-line {
    width: 24px;
    height: 2px;
    background: #fff;
}

/* --- FOOTER --- */
.footer {
    background: #000;
    padding: 100px 0 40px;
    border-top: var(--border-glass);
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.footer__bg-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-head);
    font-size: 20vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 0.8;
    pointer-events: none;
    z-index: 0;
}

.footer__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer__logo-text {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer__motto {
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 8px;
    color: var(--accent-secondary);
}

.footer__heading {
    margin-bottom: 24px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer__links li, .contact-list li {
    margin-bottom: 14px;
}

.link-hover {
    color: var(--text-muted);
    position: relative;
    display: inline-block;
}

.link-hover:hover {
    color: var(--accent-secondary);
    transform: translateX(5px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
}

.contact-list i {
    color: var(--accent-primary);
    width: 20px;
}

.footer__bottom {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: #444;
    font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 1024px) {
    .header__nav { display: none; }
    .header__burger { display: flex; }
    .footer__container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .header-wrapper { top: 10px; padding: 0 10px; }
    .footer__container { grid-template-columns: 1fr; gap: 40px; }
    .footer__bg-text { font-size: 30vw; top: 20px; }
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh; /* Full screen height */
    display: flex;
    align-items: center;
    padding-top: 100px; /* Space for fixed header */
    overflow: hidden;
}

.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6; /* Slight transparency for background */
}

.hero__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--accent-secondary);
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-secondary);
}

/* Typography */
.hero__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero__desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 40px;
}

.hero__desc strong {
    color: #fff;
    font-weight: 500;
}

.hero__note {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.6;
    font-style: italic;
}

/* Actions */
.hero__actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn--outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: var(--font-head);
    transition: 0.3s;
}

.btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Stats */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-separator {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Visual / Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.glass-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    border-color: var(--accent-secondary);
}

.glass-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(112, 0, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.glass-card__icon i {
    width: 30px;
    height: 30px;
    color: #fff;
}

.glass-card__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.glass-card__text {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.glass-card__graph {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
}

.graph-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: 0.3s;
}

.graph-bar.active {
    background: var(--accent-gradient);
    box-shadow: 0 0 15px var(--accent-secondary);
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__visual {
        display: none; /* Hide 3D card on tablets for cleaner look */
    }

    .hero__actions, .hero__stats {
        justify-content: center;
    }
    
    .hero__desc {
        margin: 0 auto 40px;
    }
}

/* --- METHODOLOGY (Sticky Flow) --- */
.methodology {
    position: relative;
    padding: 120px 0;
    background-color: var(--bg-dark);
}

.methodology__container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 split */
    gap: 80px;
    align-items: start;
}

/* Left Side: Sticky Visual */
.methodology__visual {
    position: sticky;
    top: 150px; /* Sticks 150px from top */
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Cyber Core Animation */
.cyber-core {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-center {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 40px rgba(112, 0, 255, 0.5);
    z-index: 2;
}

.core-center i {
    width: 40px;
    height: 40px;
}

.core-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(112, 0, 255, 0.1);
}

.core-ring--1 {
    width: 140px;
    height: 140px;
    border-top-color: var(--accent-secondary);
    border-right-color: var(--accent-secondary);
    animation: spin 4s linear infinite;
}

.core-ring--2 {
    width: 200px;
    height: 200px;
    border-bottom-color: var(--accent-primary);
    border-left-color: var(--accent-primary);
    animation: spin 6s linear infinite reverse;
    opacity: 0.7;
}

.visual-caption {
    margin-top: 30px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--accent-secondary);
    animation: blink 2s infinite;
}

/* Right Side: Content Flow */
.methodology__title {
    font-size: 3rem;
    margin-bottom: 80px;
}

.flow-item {
    display: flex;
    gap: 30px;
    margin-bottom: 80px; /* Space between items */
    position: relative;
}

/* Cool neon line connecting items */
.flow-item::before {
    content: '';
    position: absolute;
    left: 17px; /* Align with center of marker */
    top: 50px;
    bottom: -90px;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-primary), rgba(255,255,255,0.05));
}

.flow-item:last-child::before {
    display: none;
}

.flow-marker {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    width: 35px;
    flex-shrink: 0;
    transition: 0.3s;
}

/* Hover Effect: Text lights up */
.flow-item:hover .flow-marker {
    color: var(--accent-secondary);
    text-shadow: 0 0 10px var(--accent-secondary);
}

.flow-heading {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #fff;
}

.flow-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.flow-desc strong {
    color: #fff;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--accent-secondary);
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.link-arrow:hover {
    border-bottom-color: var(--accent-secondary);
}

.link-arrow i {
    width: 16px;
    transition: transform 0.3s;
}

.link-arrow:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Responsive */
@media (max-width: 768px) {
    .methodology__container {
        grid-template-columns: 1fr;
    }
    
    .methodology__visual {
        display: none; /* Hide sticky visual on mobile to save space */
    }

    .flow-item::before {
        display: none; /* Remove connector line on mobile */
    }
}

/* --- INNOVATION (Holo Accordion) --- */
.innovation {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
}

/* Background noise/grid decoration */
.innovation::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    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: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
    font-family: var(--font-body);
}

/* Accordion Container */
.holo-accordion {
    display: flex;
    height: 500px; /* Fixed height for desktop */
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Individual Panel */
.holo-panel {
    position: relative;
    flex: 1; /* Default collapsed state */
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background Gradient for Active State */
.holo-panel__bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s;
}

/* Active / Hover State */
.holo-panel.active,
.holo-panel:hover {
    flex: 3; /* Expand to take 3x space */
    border-color: var(--accent-secondary);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.05);
}

.holo-panel.active .holo-panel__bg,
.holo-panel:hover .holo-panel__bg {
    opacity: 1;
}

/* Collapsed Content (Vertical Text) */
.holo-panel__collapsed {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: opacity 0.3s;
    width: 100%;
}

.holo-panel.active .holo-panel__collapsed,
.holo-panel:hover .holo-panel__collapsed {
    opacity: 0; /* Hide when expanded */
    pointer-events: none;
}

.holo-num {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
}

.holo-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Expanded Content */
.holo-panel__expanded {
    padding: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s; /* Slight delay */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: flex-end; /* Content at bottom */
    position: relative;
    z-index: 2;
}

/* Show content when active/hover */
.holo-panel.active .holo-panel__expanded,
.holo-panel:hover .holo-panel__expanded {
    opacity: 1;
    transform: translateY(0);
}

.holo-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-secondary);
    margin-bottom: 20px;
}

.holo-title {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.1;
}

.holo-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 400px;
    font-size: 1rem;
}

.holo-desc strong {
    color: #fff;
}

.holo-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #fff;
}

.holo-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.holo-meta i {
    width: 16px;
    color: var(--accent-secondary);
}

.holo-stats {
    display: flex;
    gap: 30px;
}

.stat-mini strong {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-head);
    color: var(--accent-secondary);
}

.stat-mini span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .holo-accordion {
        flex-direction: column;
        height: auto;
    }

    .holo-panel {
        height: 80px; /* Collapsed height */
        flex: none;
        overflow: hidden;
    }

    .holo-panel.active {
        height: 450px; /* Expanded height */
        flex: none;
    }

    /* Reset vertical text for mobile */
    .holo-panel__collapsed {
        flex-direction: row;
        bottom: auto;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        width: auto;
        opacity: 1 !important; /* Keep label visible even when active on mobile, or adjust */
    }

    .holo-panel.active .holo-panel__collapsed {
        opacity: 0 !important;
    }

    .holo-vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .holo-num {
        margin-right: 15px;
    }
}

/* --- GROWTH / BLOG SECTION --- */
.growth {
    padding-bottom: 120px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

/* Ticker Styles */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--accent-primary);
    padding: 12px 0;
    margin-bottom: 80px;
    transform: rotate(-1deg) scale(1.05); /* Slight tilt for dynamism */
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.4);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker__item {
    padding: 0 40px;
    font-family: var(--font-body); /* Tech font */
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 2px;
    display: inline-block;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); } /* Moves half way assuming content is doubled */
}

/* Header */
.growth__header {
    margin-bottom: 60px;
    max-width: 600px;
}

/* Blog List Styles */
.blog-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-item {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.blog-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent-secondary);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--accent-secondary);
}

.blog-item:hover::before {
    width: 100%;
}

.blog-item:hover {
    padding-left: 20px; /* Shift effect */
    background: rgba(255, 255, 255, 0.02);
}

/* Meta Data */
.blog-item__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-cat {
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content */
.blog-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #fff;
    transition: color 0.3s;
}

.blog-item:hover .blog-title {
    color: var(--accent-secondary);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 500px;
}

/* Action Arrow */
.blog-item__action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: #fff;
    opacity: 0.5;
    transition: 0.3s;
}

.read-more {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
}

.blog-item:hover .blog-item__action {
    opacity: 1;
    color: var(--accent-secondary);
}

.blog-item:hover .read-more {
    opacity: 1;
    transform: translateX(0);
}

.growth__footer {
    margin-top: 60px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-item__action {
        justify-content: flex-start;
    }

    .ticker-wrap {
        transform: rotate(0); /* Remove tilt on mobile */
    }
}

/* --- CONTACT SECTION --- */
.contact {
    position: relative;
    padding: 100px 0;
    background: #080808;
    overflow: hidden;
}

/* Background Glow Effect */
.contact__bg-glow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.contact__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side */
.contact__title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.contact__desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 450px;
}

.contact__desc strong {
    color: #fff;
}

.contact__benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: #fff;
}

.contact__benefits i {
    color: var(--accent-secondary);
}

/* Form Wrapper (Glass Card) */
.contact__form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.form-title {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    width: 20px;
    height: 20px;
    transition: color 0.3s;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 14px 14px 48px; /* Space for icon */
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.1);
}

.form-input:focus + .input-icon, 
.input-wrapper:focus-within .input-icon {
    color: var(--accent-secondary);
}

/* Captcha & Errors */
.error-msg {
    color: #ff4d4d;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none; /* Hidden by default */
}

/* Checkbox */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-check input {
    margin-top: 3px;
    accent-color: var(--accent-secondary);
}

.form-check a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Success Message Overlay */
.success-message {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
    text-align: center;
    padding: 40px;
}

.success-message.visible {
    opacity: 1;
    pointer-events: all;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
}

.success-icon i {
    width: 40px;
    height: 40px;
    color: #000;
}

/* --- COOKIE POPUP --- */
.cookie-popup {
    position: fixed;
    bottom: -100px; /* Hidden initially */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-popup.show {
    bottom: 20px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #ccc;
}

.cookie-icon {
    color: var(--accent-secondary);
}

.cookie-popup a {
    color: #fff;
    text-decoration: underline;
}

/* --- POLICY PAGES STYLING (pages class) --- */
.pages {
    padding: 120px 0 60px;
    min-height: 80vh;
    background: var(--bg-dark);
}

.pages h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.pages h2 {
    font-size: 1.5rem;
    margin: 40px 0 15px;
    color: var(--accent-secondary);
}

.pages p, .pages li {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
    max-width: 800px;
}

.pages ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.pages a {
    color: var(--accent-primary);
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .contact__container {
        grid-template-columns: 1fr;
    }
    .cookie-popup {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-popup button {
        width: 100%;
    }
}