/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}

.dots {
    display: inline-block;
    width: 1em;
    text-align: left;
    animation: dots 1.5s infinite steps(4);
}

@keyframes dots {

    0%,
    20% {
        color: rgba(0, 0, 0, 0);
        text-shadow:
            .25em 0 0 rgba(0, 0, 0, 0),
            .5em 0 0 rgba(0, 0, 0, 0);
    }

    40% {
        color: white;
        text-shadow:
            .25em 0 0 rgba(0, 0, 0, 0),
            .5em 0 0 rgba(0, 0, 0, 0);
    }

    60% {
        text-shadow:
            .25em 0 0 white,
            .5em 0 0 rgba(0, 0, 0, 0);
    }

    80%,
    100% {
        text-shadow:
            .25em 0 0 white,
            .5em 0 0 white;
    }
}

/* Global Styles - Dark Glass Theme (Normalized) */
:root {
    --bg-color: #000000;
    --bg-darker: #000000;

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    --accent-color: #ffb700;
    /* Vibrant Gold/Amber */
    --accent-glow: rgba(255, 183, 0, 0.5);

    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(12px);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --container-width: 1200px;
    --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    /* iOS Safari disable long press menu */
}

input,
textarea {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Backgrounds */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

.glow-1 {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--accent-color), transparent);
}

.glow-2 {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, #0033cc, transparent);
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* Typography Normalization */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 500;
}

.hero-headline {
    font-size: clamp(3rem, 5vw, 4rem);
    /* Reduced from 5rem */
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    /* Consistent H2 size */
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.glass-heading {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    /* Matching section-title */
    line-height: 1.2;
    margin-bottom: 2rem;
}

.closing-headline {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    /* Slightly larger for impact */
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    /* Standardized H3 */
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lead-text {
    font-size: 1.15rem;
}

.section-tag,
.hero-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
    opacity: 0.9;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 7rem 0;
}

/* Standardized padding */
.text-accent {
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-glow);
}

.text-white-50 {
    color: var(--text-muted);
}

.relative {
    position: relative;
}

.text-center {
    text-align: center;
}

.highlight-text {
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    color: #fff;
    font-style: italic;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-img {
    height: 45px;
    /* Adjust as needed */
    width: auto;
    display: block;
}

.desktop-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    /* Fix vertical alignment */
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-glow {
    padding: 0.6rem 1.8rem;
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    /* Changed from default to inline-flex for better alignment control */
    align-items: center;
    justify-content: center;
    height: fit-content;
    /* Ensure it doesn't stretch */
    line-height: normal;
    /* Reset line height */
}

.btn-glow:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 4rem;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px var(--accent-glow));
}

/* ... (skipping unchanged lines) ... */

/* ROI - Open Minimalist Layout */
.roi-grid-glass {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: none;
    /* No Box */
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin-top: 4rem;
    position: relative;
}

/* Top/Bottom separators for the whole row */
.roi-grid-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.roi-grid-glass::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.roi-stat-card {
    background: transparent;
    padding: 3rem 2rem;
    border: none;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align top */
}

/* Vertical Dividers */
.roi-stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}

.roi-stat-card:hover {
    background: transparent;
    transform: translateY(-5px);
}

/* Highlight the middle text/icon only, not the box */
.roi-stat-card.highlight {
    background: transparent;
    border: none;
    box-shadow: none;
}

.roi-stat-card.highlight .roi-icon {
    color: #fff;
    filter: drop-shadow(0 0 10px var(--accent-glow));
    transform: scale(1.1);
}

.roi-icon {
    margin-bottom: 2rem;
    color: var(--accent-color);
    opacity: 0.8;
    transition: var(--transition);
}

.roi-stat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    min-height: 3em;
    /* Align icons */
}

.roi-stat-card span {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.3;
}

.roi-stat-card.highlight span {
    color: var(--accent-color);
}

.lead-italic {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 4rem auto 0;
    opacity: 0.8;
}

/* Hero CTA */
.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

/* Button */
.btn-primary-glass {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-primary-glass:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Experience Tag */
.experience-tag {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    /* Prevent breaking mid-text */
    display: flex;
    /* Ensure proper height alignment */
    align-items: center;
}

.btn-primary-glass.large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .btn-primary-glass.large {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 320px;
        white-space: normal;
        /* Allow text wrapping if needed */
        height: auto;
    }

    .btn-primary-glass.large.pulse-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        max-width: 250px;
        animation: pulse-zoom 1.5s infinite ease-in-out;
    }

    .btn-quiz-result {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.85rem !important;
        white-space: normal;
        text-align: center;
        width: 100%;
        max-width: 250px;
        line-height: 1.4;
    }
}

.glass-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    opacity: 1;
}

.gloss-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

/* Brand Perspective */
.brand-perspective-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    /* Force equal height */
    gap: 4rem;
    position: relative;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 3.5rem;
    border-radius: 20px;
    z-index: 2;
}

.img-tall-glass {
    height: 100%;
    /* Match text height */
    min-height: 400px;
    /* Prevent too small */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

/* Framework */
.header-row {
    text-align: center;
    margin-bottom: 4rem;
}

.framework-grid-glass {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* STRICT 2x2 Grid */
    gap: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.glass-pillar {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition);
}

.glass-pillar:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.glow-bg {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    filter: blur(80px);
    opacity: 0;
    top: -50px;
    right: -50px;
    transition: var(--transition);
}

.glass-pillar:hover .glow-bg {
    opacity: 0.2;
}

.card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.card-num {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--text-muted);
}

.card-icon {
    color: var(--accent-color);
    width: 30px;
    height: 30px;
}

/* Difference */
.diff-header {
    margin-bottom: 4rem;
}

.diff-glass-container {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.diff-col {
    padding: 5rem;
}

.border-right {
    border-right: 1px solid var(--glass-border);
}

.glow-text-white {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.glow-text {
    text-shadow: 0 0 20px var(--accent-glow);
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.highlight-box {
    margin-top: 2rem;
    padding: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.highlight-box.accent {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Strategic Approach */
.strategic-approach-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: stretch;
    /* Force equal height */
}

.glass-text-box {
    border-left: 2px solid var(--accent-color);
    padding-left: 2rem;
    background: linear-gradient(90deg, rgba(255, 183, 0, 0.05), transparent);
    padding: 2rem;
    border-radius: 0 10px 10px 0;
}

.image-wrapper-glow {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 183, 0, 0.1);
    border: 1px solid var(--glass-border);
    height: 100%;
    /* Match text height */
    background-size: cover;
    background-position: center;
}

/* ROI - Unified Glass Panel */
.roi-grid-glass {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    margin-top: 4rem;
}

.roi-stat-card {
    background: transparent;
    padding: 4rem 2rem;
    border: none;
    border-right: 1px solid var(--glass-border);
    text-align: center;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background 0.3s ease;
}

.roi-stat-card:last-child {
    border-right: none;
}

.roi-stat-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.roi-stat-card.highlight {
    background: linear-gradient(to bottom, rgba(255, 183, 0, 0.05), transparent);
    box-shadow: none;
    border-right: 1px solid var(--glass-border);
}

.roi-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    opacity: 0.8;
}

.roi-stat-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.roi-stat-card span {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.3;
}

.lead-italic {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 3rem auto 0;
    opacity: 0.8;
}


/* Anti-Print (Ctrl+P / Save as PDF) */
@media print {

    html,
    body {
        display: none !important;
    }
}

body.privacy-active>*:not(.privacy-overlay) {
    filter: blur(20px);
    transition: filter 0.3s ease;
}

.privacy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: var(--font-body);
    /* Changed from heading for cleaner look */
    font-size: 1.1rem;
    /* "Little small font" */
    pointer-events: none;
}

body.privacy-active .privacy-overlay {
    display: flex;
}

/* Partnership */
.partnership-glass {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: stretch;
}

.partner-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

/* Closing - Split Editorial Layout */
#closing {
    text-align: left;
    /* Reset center alignment */
}

.closing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 4rem;
}

.closing-headline {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 0;
}

.closing-body {
    max-width: 100%;
    margin: 0;
}

.final-statement {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    margin-top: 2rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    line-height: 1.4;
}

.cta-group {
    margin-top: 3rem;
    text-align: left;
}

/* Footer - Minimalist */
.glass-footer {
    border-top: 1px solid var(--glass-border);
    background: #000;
    padding: 3rem 0;
    margin-top: 8rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-glow-small {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    /* Sharper */
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-glow-small:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Footer Enhancements */
.footer-quote {
    color: #fff;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.8rem;
}

.social-icon:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .section-title,
    .glass-heading {
        font-size: 2.5rem;
    }

    /* Navbar */
    .desktop-nav,
    .btn-glow {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-toggle span {
        width: 30px;
        height: 2px;
        background: #fff;
        transition: 0.3s;
    }

    /* Toggle Animation */
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Mobile Menu Drawer */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* Space out branding, links, footer */
        align-items: center;
        padding: 6rem 2rem 3rem;
        z-index: 999;
        transform: translateY(-100%);
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        opacity: 0;
    }

    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-branding {
        text-align: center;
    }

    .mobile-logo {
        font-size: 2rem;
        font-family: var(--font-heading);
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
    }

    .mobile-tagline {
        font-size: 0.9rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .mobile-link {
        font-size: 1.5rem;
        /* Adjusted for better readability */
        color: #fff;
        text-decoration: none;
        font-family: var(--font-heading);
        transition: color 0.3s;
    }

    .mobile-link:hover {
        color: var(--accent-color);
        font-style: italic;
    }

    .mobile-footer {
        text-align: center;
        width: 100%;
    }

    .btn-glow-mobile {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--accent-color);
        border: 1px solid var(--glass-border);
        padding: 0.7rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.8rem;
        transition: 0.3s;
    }

    .mobile-socials {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }

    .social-link {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.9rem;
        transition: 0.3s;
    }

    .social-link:hover {
        color: #fff;
    }

    /* Footer Responsive */
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        width: 100%;
        /* Ensure full width for centering context */
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-left: 0;
    }

    .footer-nav a {
        margin-left: 0;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 3rem;
        width: 100%;
    }

    .footer-quote {
        margin-bottom: 2rem;
    }

    .footer-socials {
        justify-content: center;
        margin-bottom: 2rem;
    }

    /* Grids to Single Column */
    .hero-container,
    .brand-perspective-grid,
    .framework-grid-glass,
    .diff-glass-container,
    .strategic-approach-grid,
    .roi-grid-glass,
    .partnership-glass,
    .closing-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .brand-perspective-text.glass-card {
        padding: 2rem;
    }

    /* ROI Mobile Specifics */
    .roi-grid-glass {
        border: none;
        background: none;
        margin-top: 2rem;
    }

    .roi-grid-glass::before,
    .roi-grid-glass::after {
        display: none;
    }

    .roi-stat-card {
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        background: var(--glass-bg);
        margin-bottom: 1rem;
        padding: 2.5rem;
    }

    .roi-stat-card:not(:last-child)::after {
        display: none;
    }

    /* Difference Section */
    .diff-col {
        padding: 2rem;
    }

    .border-right {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }

    /* Image Heights */
    /* Image Heights & Backgrounds */
    .img-tall-glass,
    .partner-image,
    .image-wrapper-glow {
        min-height: 400px;
        background-size: cover;
        background-position: center;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    /* Order adjustments */
    .strategic-approach-grid .strategic-approach-visual {
        order: -1;
    }

    .hero-container .hero-visual {
        order: -1;
    }

    .closing-headline {
        font-size: 2.2rem;
    }
}

@media (min-width: 993px) {

    .mobile-toggle,
    .mobile-menu {
        display: none;
    }
}



/* Button Icon */
.btn-icon {
    display: inline-block;
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-glow:hover .btn-icon,
.btn-glow-mobile:hover .btn-icon {
    transform: translateX(3px) translateY(-3px);
}

/* Hero Image Specifics - Background Method */
.hero-visual .glass-frame {
    position: relative;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 700px;
    /* Fixed height for background image */
    background-size: cover;
    background-position: top center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Remove old img styles */
.hero-visual .parallax-img {
    display: none;
}

/* Remove effects */
.hero-visual .glass-frame::after,
.hero-visual .gloss-overlay {
    display: none !important;
}

/* Hero Floating Glass Cards */
.hero-visual {
    position: relative;
}

.hero-glass-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.6);
    /* Darker glass for contrast */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    min-width: 160px;
    /* opacity: 0; Removed to allow GSAP to handle visibility */
    /* Hidden initially for animation */
    pointer-events: none;
}

.hero-visual .glass-frame:hover .parallax-img {
    transform: scale(1.05);
}



.hero-glass-card h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 0;
    line-height: 1;
    font-weight: 700;
    font-family: var(--font-body);
    /* Changed to body font */
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
}

.hero-glass-card .card-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.hero-glass-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
    /* Bold */
    font-family: var(--font-body);
    /* Changed to body font */
}

.hero-glass-card p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.2rem 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Positioning */
.card-left {
    bottom: 40px;
    left: -40px;
}

.card-right {
    top: 40px;
    right: -40px;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
    border: 2px solid #1a1a1a;
    /* Creates padding effect */
}

::-webkit-scrollbar-thumb:hover {
    background: #ffdb57;
    /* Lighter yellow on hover */
}

/* CUSTOM CURSOR */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: normal;
    will-change: transform;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    background: rgba(255, 183, 0, 0.05);
    will-change: transform;
}

/* Hide default cursor on body */
body {
    cursor: none;
    /* Hide default cursor */
}

/* Ensure links still show pointer logic if cursor fails, 
   but since we have custom cursor, we keep standard pointer handling in JS 
   or let the custom cursor indicate clickability */
a,
button,
.clickable {
    cursor: pointer;
    /* Show default hand cursor */
}

/* Responsive adjustments */
@media (max-width: 992px),
(pointer: coarse) {

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    body,
    a,
    button,
    .clickable {
        cursor: auto !important;
    }
}

@media (max-width: 768px) {
    .hero-glass-card {
        padding: 0.8rem 1.2rem;
        min-width: 120px;
    }

    .hero-glass-card h3 {
        font-size: 1.4rem;
    }

    .card-left {
        bottom: 20px;
        left: 10px;
        /* Slight inset */
    }

    .card-right {
        top: auto;
        /* Unset top */
        bottom: 90px;
        right: 10px;
        /* Slight inset */
    }

    /* Smaller Schedule Button on Mobile */
    .btn-primary-glass.large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: auto;
    }

    /* Smaller Headings for Mobile */
    h1.hero-headline {
        font-size: 2.5rem !important;
        /* Force smaller size */
    }

    .section-title {
        font-size: 2rem !important;
    }

    .closing-headline {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-visual .glass-frame {
        height: 450px;
    }

    .closing-content {
        border-top: none;
        padding-top: 0;
    }
}

/* Consultation Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-glass-content {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-glass-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.2rem;
}

.consultation-form input,
.consultation-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.full-width {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
    cursor: pointer;
}

/* Universal Image Fixes for Backgrounds */
.img-tall-glass,
.partner-image,
.image-wrapper-glow,
.hero-visual .glass-frame {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Quiz Modal Styles */
.modal-glass-content.quiz-content {
    max-width: 600px;
    width: 90%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-color);
    width: 0%;
    transition: width 0.3s ease;
}

.question-count {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.question-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.quiz-option:hover {
    background: rgba(255, 183, 0, 0.1);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateX(5px);
}

.quiz-option.selected {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.result-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 2rem 0;
}

.small-italic {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
}

.btn-text {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.btn-text:hover {
    color: #fff;
}


.btn-outline-white {
    display: inline-block;
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle glass bg */
    border: 1px solid rgba(255, 255, 255, 0.6);
    /* Stroger border */
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    /* Bolder text */
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    /* Subtle initial glow */
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.btn-outline-white:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    /* Stronger glow on hover */
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .btn-outline-white {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        /* Optional: make it full width if desired, or just smaller */
        max-width: 300px;
    }
}

/* Pulse Animation for Quiz Button */
@keyframes pulse-zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-btn {
    animation: pulse-zoom 1.5s infinite ease-in-out;
}

/* Hide closing section top border on tablets */
@media (max-width: 1024px) {
    .closing-content {
        border-top: none;
        padding-top: 2rem;
    }
}