/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette - Deep Dark Theme for White Logo */
    --bg-primary: #0a0e14;
    --bg-secondary: #121822;
    --bg-tertiary: #1b2433;
    
    --text-primary: #f8f9fa;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    
    --accent-primary: #00f0ff;
    --accent-secondary: #7000ff;
    --accent-gradient: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    
    --success: #2ecc71;
    --warning: #f1c40f;
    --danger: #e74c3c;
    
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-secondary: 'Space Grotesk', system-ui, sans-serif;
    
    /* Layout */
    --container-max: 1280px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Animation & Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-green {
    color: var(--success) !important;
}

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.text-center {
    text-align: center;
}

/* Reveal Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(112, 0, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn-light {
    background: #fff;
    color: var(--bg-primary);
}

.btn-light:hover {
    background: var(--accent-primary);
    color: #fff;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* ==========================================================================
   HEADER / NAVIGATION (STRICT)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(10, 14, 20, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-normal);
}

.site-header.scrolled {
    height: 70px;
    background: rgba(10, 14, 20, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-container .site-logo {
    height: 40px;
    width: auto;
    transition: var(--transition-normal);
}

.site-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    position: absolute;
    left: 0;
    transition: var(--transition-normal);
}

.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 11px; }
.hamburger-line:nth-child(3) { top: 22px; }

/* ==========================================================================
   HERO SECTION (3D PARALLAX & ANIMATIONS)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: var(--accent-secondary);
}

.orb-2 {
    bottom: -20%; right: -10%;
    width: 600px; height: 600px;
    background: var(--accent-primary);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%; left: 50%;
    width: 300px; height: 300px;
    background: rgba(0, 240, 255, 0.2);
    transform: translate(-50%, -50%);
    animation-duration: 15s;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-scene {
    perspective: 1200px;
}

.hero-content {
    z-index: 2;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

.hero-subtitle {
    display: inline-block;
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    background: rgba(0, 240, 255, 0.05);
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    z-index: 2;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

.floating-dashboard {
    background: rgba(18, 24, 34, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform var(--transition-slow);
    animation: float-small 6s infinite ease-in-out alternate;
}

.dash-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: var(--danger); }
.dot.yellow { background: var(--warning); }
.dot.green { background: var(--success); }

.dash-body {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.dash-chart-line {
    position: absolute;
    top: 50%; left: 0; width: 100%; height: 2px;
    background: rgba(255,255,255,0.1);
    border-dasharray: 5,5;
}

.dash-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 200px;
    gap: 15px;
}

.dash-bar {
    width: 100%;
    background: var(--accent-gradient);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    transform-origin: bottom;
    animation: growBar 2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

.dash-bar.b1 { height: 30%; animation-delay: 0.1s; }
.dash-bar.b2 { height: 50%; animation-delay: 0.3s; }
.dash-bar.b3 { height: 40%; animation-delay: 0.5s; }
.dash-bar.b4 { height: 80%; animation-delay: 0.7s; }
.dash-bar.b5 { height: 100%; animation-delay: 0.9s; }

/* ==========================================================================
   ABOUT / STATS SECTION
   ========================================================================== */
.stats-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-lg) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.stat-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    color: var(--text-primary);
}

.stat-symbol {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ==========================================================================
   SERVICES SECTION (3D FLIP CARDS)
   ========================================================================== */
.services-section {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.flip-card {
    background-color: transparent;
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
}

.flip-card-front {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.flip-card-back {
    background-color: var(--bg-tertiary);
    color: white;
    transform: rotateY(180deg);
    border-color: var(--accent-primary);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.1);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.flip-card-front h3 { margin-bottom: 1rem; }
.flip-card-back h3 { margin-bottom: 1rem; color: var(--accent-primary); }
.flip-card-back p { margin-bottom: 1.5rem; font-size: 0.95rem; color: #ddd; }

/* ==========================================================================
   INDUSTRIES SECTION
   ========================================================================== */
.industries-section {
    background: var(--bg-secondary);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.industry-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: var(--transition-slow);
}

.industry-item:hover::before {
    left: 100%;
}

.industry-item:hover {
    border-color: var(--accent-secondary);
    transform: scale(1.02);
}

.industry-content h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* ==========================================================================
   INTERACTIVE CAMPAIGN REPORTS SECTION
   ========================================================================== */
.reports-section {
    background: var(--bg-primary);
}

.chart-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    height: 400px;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-right: 1px solid var(--border-color);
}

.interactive-bar-chart {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding-left: 2rem;
    position: relative;
}

.chart-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 15%;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    background: var(--accent-gradient);
    border-radius: 6px 6px 0 0;
    height: 0; /* Animated via JS */
    transition: height 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.chart-bar::after {
    content: attr(data-height);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-tertiary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.chart-bar:hover::after {
    opacity: 1;
}

.chart-label {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.report-insights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.insight-box {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.insight-val {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent-secondary);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px; height: 50px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
}

.author-info h5 { margin-bottom: 0.2rem; font-size: 1rem; }
.author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ==========================================================================
   CONTACT PREVIEW / QUOTE SECTION
   ========================================================================== */
.contact-preview-section {
    background: var(--bg-primary);
}

.contact-preview-wrapper {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.contact-preview-info {
    flex: 1;
    padding: 4rem;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
}

.contact-preview-info h2 { margin-bottom: 1.5rem; }

.benefit-list {
    margin-top: 2rem;
}

.benefit-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.contact-preview-form {
    flex: 1;
    padding: 4rem;
    background: var(--bg-primary);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.2);
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-section {
    padding: 6rem 0;
    background: var(--accent-gradient);
    text-align: center;
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   FOOTER (STRICT)
   ========================================================================== */
.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-lg);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-description {
    max-width: 400px;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; width: 40px; height: 2px;
    background: var(--accent-primary);
}

.footer-menu li { margin-bottom: 0.75rem; }

.footer-menu a {
    color: var(--text-secondary);
}

.footer-menu a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.footer-bottom {
    background: var(--bg-secondary);
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
}

/* ==========================================================================
   INNER PAGES (CONTACT & LEGAL)
   ========================================================================== */
.inner-page {
    padding-top: 80px; /* Offset for fixed header */
}

.page-header {
    background: var(--bg-secondary);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

/* Contact Page Specifics */
.contact-main-section {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-methods {
    margin-top: 3rem;
}

.method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.method-icon {
    width: 60px; height: 60px;
    background: var(--bg-secondary);
    border: 1px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.method-details h5 { margin-bottom: 0.25rem; }
.method-details p { margin-bottom: 0; }

.form-row {
    display: flex;
    gap: 1.5rem;
}

.half-width {
    width: 50%;
}

.detailed-contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Legal Pages Specifics */
.legal-content-section {
    background: var(--bg-primary);
}

.text-document {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-secondary);
    padding: 4rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.text-document h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.text-document p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 30px) rotate(10deg); }
}

@keyframes float-small {
    0% { transform: translateY(0) rotateY(-15deg) rotateX(10deg); }
    100% { transform: translateY(-20px) rotateY(-15deg) rotateX(10deg); }
}

@keyframes growBar {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-visual { margin-top: 4rem; transform: none !important; }
    .floating-dashboard { transform: none; animation: none; margin: 0 auto; max-width: 600px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-preview-wrapper { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Header Mobile Toggle */
    .mobile-menu-toggle { display: block; }
    .site-nav {
        position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px);
        background: var(--bg-secondary); flex-direction: column; align-items: center;
        justify-content: center; transition: var(--transition-normal);
    }
    .site-nav.active { left: 0; }
    .nav-menu { flex-direction: column; gap: 2rem; }
    .header-cta { display: none; }
    
    /* Mobile Content Adjustments */
    .stats-grid { grid-template-columns: 1fr; }
    .report-insights { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-heading::after { left: 50%; transform: translateX(-50%); }
    .contact-list li { justify-content: center; }
    .chart-wrapper { height: 300px; padding: 1.5rem; }
    
    .form-row { flex-direction: column; gap: 0; }
    .half-width { width: 100%; }
    .text-document { padding: 2rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.25rem; }
    .hero-buttons { flex-direction: column; }
    .contact-preview-info, .contact-preview-form { padding: 2rem; }
}