/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Pearl Interface Palette */
    --bg-primary: #F9FAFB;
    --bg-secondary: #F3F4F6;
    --bg-glass: rgba(255, 255, 255, 0.75);
    --bg-glass-strong: rgba(255, 255, 255, 0.95);

    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;

    --accent-gold: #D4AF37;
    --accent-gold-light: #F3E5AB;
    --accent-gold-dark: #B4941F;

    --border-light: rgba(229, 231, 235, 0.8);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px -12px rgba(212, 175, 55, 0.15);

    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    --max-width: 1280px;
    --header-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold {
    color: var(--accent-gold);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin: 20px 0;
}

.gold-divider.center {
    margin: 20px auto;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--bg-glass-strong);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.4s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(84%) sepia(26%) saturate(1028%) hue-rotate(356deg) brightness(92%) contrast(88%);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.desktop-nav .nav-links {
    display: flex;
    gap: 40px;
}

.nav-item {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* Gold Button Style */
.gold-btn {
    position: relative;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: white;
    border-radius: 4px;
    font-weight: 500;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.gold-btn:hover .btn-shimmer {
    left: 150%;
    transition: 0.7s ease-in-out;
}

.gold-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.line {
    width: 30px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-content a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.pearl-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(212, 175, 55, 0.1));
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.1);
    filter: blur(40px);
    animation: floatOrb 10s infinite alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -50px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    bottom: 50px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.primary-btn {
    padding: 16px 36px;
    background-color: var(--text-primary);
    color: white;
    font-weight: 500;
    border-radius: 4px;
}

.primary-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.secondary-btn {
    padding: 16px 36px;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    font-weight: 500;
    border-radius: 4px;
}

.secondary-btn:hover {
    background: var(--text-primary);
    color: white;
}

/* Glass Card Animation in Hero */
.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #FF5F56;
}

.yellow {
    background: #FFBD2E;
}

.green {
    background: #27C93F;
}

.chart-mockup {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
}

.bar-group {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    height: 100%;
    width: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--bg-secondary), var(--accent-gold-light));
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
    transition: height 1s ease;
}

.bar-1 {
    height: 40%;
    animation: growBar 2s ease-out forwards;
}

.bar-2 {
    height: 60%;
    animation: growBar 2.2s ease-out forwards;
}

.bar-3 {
    height: 85%;
    background: var(--accent-gold);
    animation: growBar 2.5s ease-out forwards;
}

.chart-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

@keyframes growBar {
    from {
        height: 0;
    }
}

.stat-floating {
    position: absolute;
    top: -20px;
    right: -20px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatY 4s infinite ease-in-out;
}

.stat-floating .icon {
    color: #27C93F;
}

.stat-floating .val {
    font-weight: 700;
    color: var(--text-primary);
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* =========================================
   4. STATS TICKER
   ========================================= */
.stats-ticker {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid var(--bg-secondary);
}

.ticker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 700;
}

.stat-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* =========================================
   5. SERVICES SECTION
   ========================================= */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border: 1px solid var(--bg-secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gold);
    transition: height 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold-light);
}

.service-card:hover::before {
    height: 100%;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.service-list li i {
    color: #27C93F;
    font-size: 0.8rem;
}

/* =========================================
   6. ROI CALCULATOR
   ========================================= */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-primary), #fff);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.calc-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.calc-intro p {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold-dark);
    border-radius: 50px;
    font-weight: 500;
}

.calc-interface {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.calc-header {
    background: var(--text-primary);
    color: white;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lights span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin-left: 4px;
}

#roi-form {
    padding: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.input-group input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: var(--font-body);
}

.input-group input[type="range"] {
    width: 100%;
    accent-color: var(--accent-gold);
}

.calc-results {
    background: var(--bg-secondary);
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
}

.result-box small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.result-box span {
    font-size: 1.25rem;
    font-weight: 700;
}

.result-box.gold span {
    color: var(--accent-gold-dark);
}

/* =========================================
   7. REPORTING DASHBOARD
   ========================================= */
.reporting-section {
    padding: 100px 0;
    background-color: #f0f2f5;
}

.dashboard-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
    height: 600px;
    margin-top: 40px;
}

.dash-sidebar {
    width: 80px;
    background: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    gap: 30px;
}

.dash-icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.dash-icon:hover,
.dash-icon.active {
    color: var(--accent-gold);
}

.dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dash-top-bar {
    height: 60px;
    border-bottom: 1px solid var(--bg-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    background: white;
}

.dash-grid {
    padding: 30px;
    background: #f8f9fa;
    flex: 1;
    display: grid;
    gap: 20px;
}

.dash-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.dash-card.wide {
    grid-column: span 2;
}

.graph-area {
    height: 200px;
    display: flex;
    align-items: flex-end;
    padding-top: 20px;
}

.graph-bars {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    align-items: flex-end;
}

.g-bar {
    width: 8%;
    background: var(--accent-gold);
    opacity: 0.8;
    border-radius: 4px 4px 0 0;
}

.donut-chart {
    position: relative;
    width: 150px;
    margin: 0 auto;
}

.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 80%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke: var(--accent-gold);
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

.donut-text {
    text-align: center;
    margin-top: 10px;
    font-weight: 700;
}

.channel-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.trend.up {
    color: #27C93F;
}

.trend.down {
    color: #FF5F56;
}

.trend.flat {
    color: var(--text-secondary);
}

/* =========================================
   8. TESTIMONIALS
   ========================================= */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.slide {
    display: none;
    animation: fadeIn 0.5s;
}

.slide.active {
    display: block;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-gold-light);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: 30px;
    line-height: 1.4;
}

.author strong {
    display: block;
    font-size: 1.1rem;
}

.author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.slider-btn:hover {
    color: var(--accent-gold);
}

.prev {
    left: -60px;
}

.next {
    right: -60px;
}

/* =========================================
   9. INDUSTRIES & CTA
   ========================================= */
.industries-section {
    padding: 80px 0;
    border-top: 1px solid var(--bg-secondary);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.ind-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    transition: 0.3s;
}

.ind-item i {
    font-size: 1.5rem;
}

.ind-item:hover {
    color: var(--accent-gold);
    transform: translateY(-5px);
}

.cta-section {
    padding: 100px 0;
}

.cta-card {
    background: var(--text-primary);
    color: white;
    border-radius: 16px;
    padding: 80px;
    text-align: center;
    background-image: radial-gradient(circle at top right, rgba(212, 175, 55, 0.2), transparent);
}

.cta-card h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
}

.gold-btn.big {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* =========================================
   10. FOOTER
   ========================================= */
.main-footer {
    background-color: white;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-light);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(26%) saturate(1028%) hue-rotate(356deg) brightness(92%) contrast(88%);
}

.brand-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: white;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.contact-col li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-col li i {
    color: var(--accent-gold);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--bg-secondary);
    color: var(--text-light);
    font-size: 0.85rem;
}

/* =========================================
   11. LIVE CHAT & PAGE SPECIFIC
   ========================================= */
.live-chat-widget {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    z-index: 990;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.live-chat-widget.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: var(--text-primary);
    color: white;
    padding: 15px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-status {
    width: 8px;
    height: 8px;
    background: #27C93F;
    border-radius: 50%;
}

.close-chat {
    margin-left: auto;
    cursor: pointer;
}

.chat-body {
    height: 250px;
    padding: 15px;
    background: #f9f9f9;
    overflow-y: auto;
}

.msg.bot {
    background: white;
    padding: 10px 15px;
    border-radius: 12px 12px 12px 0;
    font-size: 0.9rem;
    border: 1px solid #eee;
    display: inline-block;
}

.chat-input {
    padding: 10px;
    display: flex;
    gap: 10px;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    border: none;
    outline: none;
    padding: 5px;
}

.chat-input button {
    background: none;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
}

.chat-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--text-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 990;
    font-size: 1.2rem;
    transition: 0.3s;
}

.chat-trigger:hover {
    transform: scale(1.1);
    background: var(--accent-gold);
}

/* Animation Utils */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-200 {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legal Content Wrapper */
.legal-page-content {
    padding: 150px 0 80px;
}

.legal-wrapper {
    background: white;
    padding: 60px;
    border: 1px solid var(--bg-secondary);
    border-radius: 8px;
}

.legal-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.legal-wrapper h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-primary);
}

.legal-wrapper p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.legal-wrapper ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style: disc;
    color: var(--text-secondary);
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-panel {
    background: var(--text-primary);
    color: white;
    padding: 40px;
    border-radius: 8px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-btns {
        justify-content: center;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-mockup {
        height: auto;
        flex-direction: column;
    }

    .dash-sidebar {
        width: 100%;
        flex-direction: row;
        height: 60px;
        padding: 0;
        justify-content: center;
    }

    .dash-grid {
        grid-template-columns: 1fr;
    }

    .dash-card.wide {
        grid-column: auto;
    }
}

@media (max-width: 768px) {

    .desktop-nav,
    .header-actions .gold-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .legal-wrapper {
        padding: 30px;
    }

    .ticker-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}