/* ==========================================================================
   CSS VARIABLES & THEME SETUP (Modern Vibrant Agency Theme)
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #4F46E5;
    /* Indigo */
    --color-primary-light: #818CF8;
    --color-secondary: #F43F5E;
    /* Rose/Coral */
    --color-accent: #10B981;
    /* Emerald */
    --color-dark: #0A0F1C;
    /* Deep Slate for Header/Footer */
    --color-dark-alt: #111827;
    --color-light: #F8FAFC;
    /* Main Background */
    --color-white: #FFFFFF;

    /* Text Colors */
    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-light: #F1F5F9;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #8B5CF6 100%);
    --gradient-secondary: linear-gradient(135deg, #F43F5E 0%, #F97316 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);

    /* Shadows & Glass */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 30px -5px rgba(79, 70, 229, 0.2);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-blur: blur(16px);

    /* Typography */
    --font-display: 'Clash Display', 'Montserrat', sans-serif;
    --font-body: 'DM Sans', 'Inter', sans-serif;

    /* Layout */
    --container-width: 1280px;
    --header-height: 90px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
    /* For Custom Cursor */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor.hovering {
    width: 50px;
    height: 50px;
    background-color: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.5);
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

/* ==========================================================================
   TYPOGRAPHY & BUTTONS
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-tagline {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(79, 70, 229, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.6);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ==========================================================================
   STRICTLY CONSISTENT HEADER & FOOTER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-dark);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
    height: 70px;
    background-color: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-container img {
    height: 60px;
    transition: transform 0.3s;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--text-light);
    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(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.site-footer {
    background-color: var(--color-dark);
    color: var(--text-light);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-logo img {
    height: 65px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 300px;
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: var(--color-primary-light);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   BACKGROUND ANIMATIONS (Blobs)
   ========================================================================== */
.bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    animation: blobMove 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--color-primary-light);
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(244, 63, 94, 0.4);
    animation-delay: -5s;
}

/* ==========================================================================
   HERO SECTION (Glassmorphism & Parallax)
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.glass-card-main {
    background: var(--gradient-glass);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transform-style: preserve-3d;
    transform: rotateY(-10deg) rotateX(5deg);
    animation: float 6s ease-in-out infinite;
}

.metric-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 8px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.metric-circle::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px dashed var(--color-secondary);
    animation: spin 10s linear infinite;
}

/* ==========================================================================
   MARQUEE (Trusted Brands)
   ========================================================================== */
.marquee-section {
    padding: 3rem 0;
    background: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.marquee-container {
    display: flex;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-item {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-muted);
    margin: 0 3rem;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.marquee-item:hover {
    opacity: 1;
    color: var(--color-primary);
}

/* ==========================================================================
   SERVICES SECTION (Bento Box)
   ========================================================================== */
.services-section {
    padding: 8rem 0;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
}

.bento-item {
    background: var(--color-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.bento-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bento-item:hover::after {
    transform: scaleX(1);
}

.bento-item.large {
    grid-column: span 2;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bento-item p {
    color: var(--text-muted);
}

/* ==========================================================================
   ROI CALCULATOR (Interactive Custom UI)
   ========================================================================== */
.calculator-section {
    padding: 8rem 0;
    background: var(--color-dark);
    color: var(--color-white);
    position: relative;
}

.calculator-section .section-title {
    color: var(--color-white);
}

.calculator-section .section-desc {
    color: var(--text-muted);
}

.calc-glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.slider-container {
    margin-bottom: 3rem;
}

.slider-container label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-secondary);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.6);
    transition: transform 0.1s;
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-results-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.calc-results-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--color-primary), transparent 30%);
    animation: rotateGlow 4s linear infinite;
    z-index: 0;
    opacity: 0.5;
}

.calc-results-inner {
    background: var(--color-dark);
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
}

.result-val {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-white);
    margin: 1rem 0;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   ANALYTICS & REPORTS (CSS Charts)
   ========================================================================== */
.reports-section {
    padding: 8rem 0;
    position: relative;
}

.chart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.css-chart-container {
    background: var(--color-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    height: 400px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chart-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.chart-bar {
    width: 100%;
    background: var(--gradient-primary);
    border-radius: 8px 8px 0 0;
    position: relative;
    transform-origin: bottom;
    animation: growUp 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.chart-label {
    margin-top: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================================================
   INDUSTRIES (Masonry/Hexagon Vibe)
   ========================================================================== */
.industries-section {
    padding: 8rem 0;
    background: var(--color-white);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.industry-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 350px;
    cursor: pointer;
}

.industry-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--color-dark), transparent);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: white;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.industry-card:hover .industry-bg {
    transform: scale(1.1);
}

.industry-card:hover .industry-overlay {
    opacity: 0.9;
}

.industry-card:hover .industry-content {
    transform: translateY(0);
}

/* ==========================================================================
   TESTIMONIALS (Carousel Setup)
   ========================================================================== */
.testimonials-section {
    padding: 8rem 0;
    background: var(--color-light);
}

.testi-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) transparent;
}

.testi-card {
    min-width: 450px;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: center;
    position: relative;
}

.quote-mark {
    font-family: serif;
    font-size: 5rem;
    color: rgba(79, 70, 229, 0.1);
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ==========================================================================
   CONTACT / CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 6rem 0;
}

.cta-box {
    background: var(--color-dark);
    border-radius: 30px;
    padding: 5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-form {
    max-width: 600px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--color-primary-light);
}

/* ==========================================================================
   LIVE CHAT (Custom UI)
   ========================================================================== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1) rotate(10deg);
}

.chat-box {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-box.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-header-ui {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.chat-body-ui {
    height: 300px;
    background: #f9fafb;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.msg-agent {
    background: #e0e7ff;
    padding: 0.8rem 1rem;
    border-radius: 15px 15px 15px 0;
    align-self: flex-start;
    font-size: 0.9rem;
    color: var(--color-dark);
}

.chat-input-area {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
}

.chat-input-area input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.5rem;
}

/* ==========================================================================
   LEGAL PAGES SPECIFIC
   ========================================================================== */
.page-header {
    padding: 150px 0 80px;
    background: var(--color-dark);
    color: white;
    text-align: center;
}

.legal-content-wrap {
    background: var(--color-white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    margin-top: -40px;
    position: relative;
    z-index: 5;
    margin-bottom: 5rem;
}

.legal-content-wrap h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-dark);
}

.legal-content-wrap p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.legal-content-wrap ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style: disc;
    color: var(--text-muted);
}

/* ==========================================================================
   ANIMATIONS & MEDIA QUERIES
   ========================================================================== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotateY(-10deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-5deg) rotateX(8deg);
    }
}

@keyframes blobMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes scrollMarquee {
    100% {
        transform: translateX(-50%);
    }
}

@keyframes growUp {
    from {
        transform: scaleY(0);
        opacity: 0;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes rotateGlow {
    100% {
        transform: rotate(360deg);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {

    .hero-wrapper,
    .bento-grid,
    .calc-glass-panel,
    .chart-grid {
        grid-template-columns: 1fr;
    }

    .bento-item.large {
        grid-column: span 1;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--color-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .testi-card {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .legal-content-wrap {
        padding: 2rem;
    }
}