/* ==========================================================================
   CSS RESET & VELVET MIDNIGHT VARIABLES
   ========================================================================== */
:root {
    /* Color System: Midnight, Gold, Amethyst */
    --color-bg-deep: #0B0E14;
    --color-bg-panel: #151A25;
    --color-bg-glass: rgba(21, 26, 37, 0.7);

    --color-gold: #D4AF37;
    --color-gold-glow: rgba(212, 175, 55, 0.4);
    --color-gold-light: #F4D03F;

    --color-amethyst: #8B5CF6;
    --color-amethyst-glow: rgba(139, 92, 246, 0.3);

    --color-text-main: #FFFFFF;
    --color-text-muted: #9CA3AF;
    --color-text-dark: #0B0E14;

    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-gold: rgba(212, 175, 55, 0.3);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Metrics */
    --container-max: 1400px;
    --header-height: 100px;
    --section-pad: 8rem;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
    /* Liquid custom cursor active */
}

::selection {
    background-color: var(--color-gold);
    color: var(--color-text-dark);
}

/* Custom Gold Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}

::-webkit-scrollbar-thumb {
    background: #2A3245;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* ==========================================================================
   CUSTOM LIQUID CURSOR
   ========================================================================== */
.cursor-blob {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    box-shadow: 0 0 15px var(--color-gold);
    transition: width 0.2s, height 0.2s, background 0.2s, border-radius 0.2s;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-gold-glow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: 0.1s linear;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.text-gold {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-amethyst {
    color: var(--color-amethyst);
}

.heading-xl {
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: -1px;
}

.heading-lg {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.heading-md {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

/* Frosted Glass Panels */
.glass-panel {
    background: var(--color-bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition-fast);
}

.glass-panel:hover {
    border-color: var(--color-border-gold);
    box-shadow: 0 20px 50px var(--color-gold-glow);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    border: none;
    cursor: none;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: var(--color-text-dark);
    box-shadow: 0 10px 20px var(--color-gold-glow);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gold), #FFF);
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: -1;
}

.btn-gold:hover::before {
    opacity: 1;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px var(--color-gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-text-dark);
}

/* ==========================================================================
   HEADER (STRICTLY CONSISTENT SITE-WIDE)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.site-header.scrolled {
    height: 75px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    transition: var(--transition-fast);
    filter: invert(1);
}

.site-header.scrolled .logo img {
    height: 45px;
}

.main-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
    padding: 0.5rem 0;
    cursor: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    width: 40px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: none;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--color-gold);
    transition: 0.3s;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 14px;
}

.mobile-toggle span:nth-child(3) {
    top: 28px;
}

/* ==========================================================================
   HERO SECTION (ORGANIC LIQUID BLOBS & 3D)
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated Ambient Blobs */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    animation: drift 20s infinite alternate ease-in-out;
    opacity: 0.5;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--color-amethyst);
    top: -10%;
    left: -10%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--color-gold);
    bottom: -10%;
    right: -5%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: -5s;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* Organic Morphing Image / Graphic */
.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.liquid-shape {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-bg-panel), var(--color-bg-deep));
    border: 2px solid var(--color-border-gold);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8), 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: morphing 10s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.liquid-shape::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--color-gold-glow) 0%, transparent 60%);
    animation: rotateGradient 15s linear infinite;
}

.hero-metrics {
    position: absolute;
    bottom: 20%;
    right: 10%;
    background: var(--color-bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border-gold);
    padding: 1.5rem;
    border-radius: 16px;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.2rem;
    animation: float 5s ease-in-out infinite;
}

/* ==========================================================================
   PARTNER MARQUEE
   ========================================================================== */
.marquee-wrapper {
    background: var(--color-bg-panel);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin: 0 4rem;
    display: flex;
    align-items: center;
}

.marquee-item span {
    color: var(--color-gold);
    margin-right: 15px;
}

/* ==========================================================================
   STATISTICS
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--color-border);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--color-gold-glow);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   ABOUT AGENCY
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-frame {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    background: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 90deg, transparent, var(--color-amethyst-glow), var(--color-gold-glow), transparent);
    animation: rotateGradient 10s linear infinite;
}

.about-image-inner {
    position: absolute;
    inset: 4px;
    background: var(--color-bg-deep);
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
}

/* ==========================================================================
   CORE SERVICES (3D TILT PANELS)
   ========================================================================== */
.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    padding: 3rem;
    text-align: left;
    transform-style: preserve-3d;
    cursor: none;
}

.service-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    transform: translateZ(30px);
}

.service-card h3 {
    transform: translateZ(25px);
    font-size: 1.6rem;
}

.service-card p {
    transform: translateZ(15px);
    color: var(--color-text-muted);
}

.service-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transform: translateZ(20px);
}

.service-link:hover {
    color: var(--color-text-main);
}

/* ==========================================================================
   INTERACTIVE CAMPAIGN REPORT SIMULATOR (SVG AREA CHART)
   ========================================================================== */
.simulator-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
}

.sim-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sim-btn {
    padding: 1.5rem 2rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text-muted);
    cursor: none;
    transition: var(--transition-fast);
}

.sim-btn.active,
.sim-btn:hover {
    background: var(--color-bg-panel);
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.sim-display {
    padding: 3rem;
    position: relative;
}

.sim-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.sim-title {
    margin: 0;
    font-size: 2rem;
}

.sim-metric {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
    line-height: 1;
    text-shadow: 0 0 20px var(--color-gold-glow);
}

/* SVG Chart Container */
.chart-container {
    width: 100%;
    height: 300px;
    position: relative;
}

.svg-chart {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.chart-grid {
    stroke: var(--color-border);
    stroke-width: 1;
}

.chart-area {
    fill: url(#goldGradient);
    opacity: 0.3;
    transition: d 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.chart-line {
    fill: none;
    stroke: var(--color-gold);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: d 1s cubic-bezier(0.25, 1, 0.5, 1);
    filter: drop-shadow(0 5px 10px rgba(212, 175, 55, 0.5));
}

.chart-points circle {
    fill: var(--color-bg-deep);
    stroke: var(--color-gold);
    stroke-width: 3;
    transition: cy 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   INDUSTRY FOCUS
   ========================================================================== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.industry-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: linear-gradient(to bottom, var(--color-bg-panel), transparent);
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.industry-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
}

.ind-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

/* ==========================================================================
   TIMELINE / PROCESS
   ========================================================================== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--color-border);
    transform: translateX(-50%);
}

.timeline-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 2.5rem;
}

.timeline-point {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--color-bg-deep);
    border: 4px solid var(--color-gold);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.step-num {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--color-border);
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 20px;
}

.timeline-step:nth-child(even) .step-num {
    right: auto;
    left: 20px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testi-card {
    background: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-amethyst-glow);
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    border-radius: 50%;
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-section {
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--color-amethyst-glow) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* ==========================================================================
   PAGES SPECIFIC (CONTACT / LEGAL)
   ========================================================================== */
.page-hero {
    padding: 220px 0 100px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(to bottom, transparent, var(--color-bg-panel));
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info-panel h3 {
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h5 {
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--color-text-main);
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form .form-control {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--color-gold);
    margin-top: 4rem;
    font-size: 2rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #ccc;
}

.legal-content ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.legal-content ul li {
    position: relative;
    margin-bottom: 0.8rem;
}

.legal-content ul li::before {
    content: '◆';
    color: var(--color-gold);
    position: absolute;
    left: -1.5rem;
    font-size: 0.8rem;
    top: 4px;
}

/* ==========================================================================
   FOOTER (STRICTLY CONSISTENT SITE-WIDE)
   ========================================================================== */
.site-footer {
    background: var(--color-bg-panel);
    border-top: 1px solid var(--color-border);
    padding: 6rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand img {
    height: 45px;
    filter: drop-shadow(0 0 10px var(--color-gold-glow));
    margin-bottom: 1.5rem;
}

.footer-title {
    color: var(--color-text-main);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

@keyframes morphing {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reveal-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .heading-xl {
        font-size: 4rem;
    }

    .hero-grid,
    .about-grid,
    .simulator-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 450px;
    }

    .liquid-shape {
        width: 300px;
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .stat-item::after {
        display: none;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-point {
        left: 30px;
    }

    .timeline-step,
    .timeline-step:nth-child(even) {
        flex-direction: row;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: auto;
    }
}

@media (max-width: 992px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .simulator-grid {
        display: flex;
        flex-direction: column;
    }

    .sim-controls {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sim-btn {
        flex: 1;
        min-width: 45%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-blob,
    .cursor-follower {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--color-bg-deep);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-slow);
    }

    .main-nav.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .heading-xl {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .sim-display {
        padding: 1.5rem;
    }

    .sim-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .chart-container {
        height: 200px;
    }

    .glass-panel {
        padding: 2rem;
    }
}