/* ==========================================================================
   CSS RESET & CUSTOM PROPERTIES (THEME: MONOCHROME & AMBER)
   ========================================================================== */
:root {
    /* Color System */
    --color-bg-base: #030303;
    --color-bg-surface: #0A0A0A;
    --color-bg-elevated: #141414;
    --color-bg-light: #FAFAFA;

    --color-primary: #FF5500;
    /* Electric Amber / Orange */
    --color-primary-hover: #FF7733;
    --color-primary-glow: rgba(255, 85, 0, 0.3);
    --color-primary-transparent: rgba(255, 85, 0, 0.1);

    --color-text-main: #FFFFFF;
    --color-text-muted: #888888;
    --color-text-dark: #111111;

    --color-border: #222222;
    --color-border-light: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-display: 'Impact', 'Arial Black', sans-serif;
    /* For bold aggressive headers */

    /* Layout Variables */
    --max-width: 1400px;
    --header-height: 90px;
    --section-spacing: 8rem;
    --grid-gap: 2rem;

    /* Animation & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);

    /* Shadows */
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--color-primary-glow);
}

/* ==========================================================================
   GLOBAL STYLES & RESETS
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--color-primary);
    color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heading-xl {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -2px;
}

.heading-lg {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.heading-md {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.text-primary {
    color: var(--color-primary);
}

.text-muted {
    color: var(--color-text-muted);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ==========================================================================
   UTILITY CLASSES & LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-dark {
    background-color: var(--color-bg-base);
}

.section-surface {
    background-color: var(--color-bg-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-light {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.section-light .text-muted {
    color: #555;
}

.section-light h2 {
    color: var(--color-text-dark);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   BUTTONS & LINKS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(255, 85, 0, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-main);
    border: 2px solid var(--color-border-light);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ==========================================================================
   HEADER / NAVIGATION (STRICTLY CONSISTENT)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(3, 3, 3, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
}

.site-header.scrolled {
    height: 70px;
    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;
    filter: invert(1);
    transition: var(--transition-fast);
}

.site-header.scrolled .logo-img {
    height: 45px;
}

.main-nav {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--color-text-main);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover {
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    left: 0;
    transition: 0.3s;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 18px;
}

.mobile-menu-btn.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION & 3D FUNNEL
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--color-primary-transparent) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border-radius: 50px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* 3D Rotating Funnel / Pyramid */
.hero-visual {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.funnel-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    animation: rotateFunnel 15s linear infinite;
}

.funnel-level {
    position: absolute;
    left: 50%;
    transform-style: preserve-3d;
    border: 2px solid var(--color-primary);
    background: rgba(255, 85, 0, 0.05);
    box-shadow: inset 0 0 20px rgba(255, 85, 0, 0.2);
}

.funnel-level-1 {
    width: 300px;
    height: 300px;
    transform: translate(-50%, -100px) rotateX(90deg);
}

.funnel-level-2 {
    width: 200px;
    height: 200px;
    transform: translate(-50%, 0px) rotateX(90deg);
}

.funnel-level-3 {
    width: 100px;
    height: 100px;
    transform: translate(-50%, 100px) rotateX(90deg);
    background: rgba(255, 85, 0, 0.2);
}

/* ==========================================================================
   MARQUEE SECTION
   ========================================================================== */
.marquee-wrapper {
    background-color: var(--color-primary);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    transform: rotate(-2deg) scale(1.05);
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.2);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-item {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin: 0 2rem;
    display: flex;
    align-items: center;
}

.marquee-item::after {
    content: '✦';
    margin-left: 4rem;
    font-size: 1rem;
}

/* ==========================================================================
   ABOUT / STATS SECTION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.about-image::after {
    content: 'DOMAINNAME';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem;
    background-color: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SERVICES GRID (TILT CARDS)
   ========================================================================== */
.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    padding: 3rem;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-subtle);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    transform: translateZ(30px);
    /* 3D effect */
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: translateZ(20px);
}

.service-card p {
    transform: translateZ(10px);
}

.service-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transform: translateZ(20px);
}

.service-link:hover {
    color: #fff;
}

/* ==========================================================================
   INTERACTIVE CAMPAIGN REPORT SIMULATOR
   ========================================================================== */
.report-section {
    position: relative;
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.report-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.report-tab {
    background: transparent;
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    text-align: left;
    color: var(--color-text-main);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.report-tab h4 {
    margin-bottom: 0.5rem;
}

.report-tab span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.report-tab.active,
.report-tab:hover {
    border-color: var(--color-primary);
    background-color: rgba(255, 85, 0, 0.05);
}

/* Dashboard Display */
.dashboard-display {
    background-color: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Circular Progress */
.circle-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 200px;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: var(--color-border);
    stroke-width: 3.8;
}

.circle-path {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 2.8;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease-out;
}

.percentage {
    fill: var(--color-text-main);
    font-family: var(--font-primary);
    font-size: 0.5em;
    font-weight: 900;
    text-anchor: middle;
}

/* Bar Charts */
.bar-chart-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bar-row {
    margin-bottom: 1.5rem;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.bar-track {
    width: 100%;
    height: 8px;
    background-color: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: var(--color-primary);
    width: 0%;
    transition: width 1s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ==========================================================================
   INDUSTRIES ACCORDION / GRID
   ========================================================================== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.industry-item {
    background-color: var(--color-bg-base);
    border: 1px solid var(--color-border);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-medium);
}

.industry-item:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
    transform: translateY(-10px);
}

.industry-item:hover .ind-icon {
    color: #000;
}

.ind-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    padding: 3rem;
    position: relative;
}

.testi-quote-icon {
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--color-primary);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.2;
    line-height: 1;
}

.testi-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-border);
    border-radius: 50%;
}

.testi-name {
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    text-transform: uppercase;
}

.testi-title {
    font-size: 0.85rem;
    color: #888;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background-color: var(--color-primary);
    padding: 6rem 0;
    text-align: center;
    color: #000;
}

.cta-section h2 {
    color: #000;
}

.cta-section p {
    color: #222;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.btn-dark {
    background-color: #000;
    color: #fff;
}

.btn-dark:hover {
    background-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   CONTACT PAGE SPECIFICS
   ========================================================================== */
.page-hero {
    padding: 200px 0 100px;
    background-color: var(--color-bg-surface);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info-block {
    background-color: var(--color-bg-elevated);
    padding: 3rem;
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: var(--color-text-main);
    font-size: 1.2rem;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 85, 0, 0.02);
}

/* ==========================================================================
   LEGAL PAGES SPECIFICS
   ========================================================================== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background-color: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
}

.legal-content h2 {
    color: var(--color-primary);
    margin-top: 3rem;
    font-size: 1.8rem;
}

.legal-content p {
    color: #ccc;
}

.legal-content ul {
    list-style: square;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   FOOTER (STRICTLY CONSISTENT)
   ========================================================================== */
.site-footer {
    background-color: #000;
    padding: 6rem 0 0;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    max-width: 350px;
}

.footer-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes rotateFunnel {
    0% {
        transform: rotateX(-20deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(-20deg) rotateY(360deg);
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Reveal Classes for Intersection Observer */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE DESIGN)
   ========================================================================== */
@media (max-width: 1200px) {
    .heading-xl {
        font-size: 4.5rem;
    }

    .hero-grid,
    .about-grid,
    .contact-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 992px) {

    .hero-grid,
    .about-grid,
    .report-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 400px;
    }

    .dashboard-display {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-bg-base);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-medium);
    }

    .main-nav.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .heading-xl {
        font-size: 3rem;
    }

    .heading-lg {
        font-size: 2.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-content {
        padding: 2rem;
    }
}