/* =========================================
   1. RESET & VARIABLES
   ========================================= */
:root {
    /* Color Palette - Cyber/Tech Theme */
    --primary-color: #4f46e5;
    /* Indigo 600 */
    --primary-dark: #3730a3;
    --secondary-color: #06b6d4;
    /* Cyan 500 */
    --accent-color: #f472b6;
    /* Pink 400 */

    --bg-dark: #0f172a;
    /* Slate 900 */
    --bg-darker: #020617;
    /* Slate 950 */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;

    --text-main: #334155;
    --text-light: #94a3b8;
    --text-white: #f1f5f9;

    /* Gradients */
    --grad-main: linear-gradient(135deg, #4f46e5 0%, #a855f7 100%);
    --grad-glow: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(15, 23, 42, 0) 70%);

    /* Spacing & Borders */
    --container-width: 1280px;
    --border-radius: 12px;
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --glow-shadow: 0 0 20px rgba(79, 70, 229, 0.4);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. TYPOGRAPHY & UTILITIES
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--grad-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
}

.section-padding {
    padding: 100px 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.bg-light {
    background-color: var(--bg-light);
}

.text-light {
    color: var(--text-white) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--grad-main);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.6);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* =========================================
   3. HEADER & NAV
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img ,.footer-logo img {
    height: 40px;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-links li {
    margin: 20px 0;
    text-align: center;
}

.mobile-links a {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.mobile-socials {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.mobile-socials a {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    background: var(--bg-darker);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: 50px;
    left: -50px;
    opacity: 0.3;
    animation: float 12s infinite ease-in-out reverse;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 600px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Hero Visual 3D */
.hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
    perspective: 1000px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.card-analytics {
    top: 10%;
    right: 0;
    animation: float 6s infinite ease-in-out;
}

.card-seo {
    bottom: 20%;
    left: -20px;
    animation: float 7s infinite ease-in-out 1s;
}

.card-social {
    top: 40%;
    right: -30px;
    animation: float 8s infinite ease-in-out 2s;
}

.card-analytics i {
    color: var(--secondary-color);
}

.card-seo i {
    color: #facc15;
}

.card-social i {
    color: #f43f5e;
}

/* 3D Cube CSS */
.hero-3d-cube {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    background: rgba(79, 70, 229, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3) inset;
}

.front {
    transform: rotateY(0deg) translateZ(100px);
}

.back {
    transform: rotateY(180deg) translateZ(100px);
}

.right {
    transform: rotateY(90deg) translateZ(100px);
}

.left {
    transform: rotateY(-90deg) translateZ(100px);
}

.top {
    transform: rotateX(90deg) translateZ(100px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

/* =========================================
   5. MARQUEE & ABOUT
   ========================================= */
.partners-section {
    background: var(--bg-white);
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.partners-label {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-content span {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #cbd5e1;
    margin: 0 40px;
    text-transform: uppercase;
}

/* About Image Stack */
.about-image-stack {
    position: relative;
    height: 500px;
    width: 100%;
}

.img-box {
    position: absolute;
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
    box-shadow: var(--card-shadow);
}

.main-img {
    width: 80%;
    height: 80%;
    top: 0;
    left: 0;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=800&q=80');
    z-index: 1;
}

.accent-img {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=800&q=80');
    z-index: 2;
    border: 5px solid white;
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: -20px;
    background: var(--bg-dark);
    color: white;
    padding: 20px;
    border-radius: 12px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.section-tag {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--bg-dark);
}

.section-desc {
    color: var(--text-main);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* =========================================
   6. SERVICES
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features li {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 8px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: white;
    margin-top: 20px;
    font-weight: 600;
}

.learn-more i {
    font-size: 0.8rem;
    transition: 0.3s;
}

.service-card:hover .learn-more i {
    transform: translateX(5px);
}

/* =========================================
   7. CALCULATOR
   ========================================= */
.calculator-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
}

.calc-results {
    background: var(--bg-dark);
    padding: 25px;
    border-radius: 12px;
    color: white;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    text-align: center;
}

.result-box small {
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.result-box h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.result-box.highlight h3 {
    color: #10b981;
}

/* =========================================
   8. PROCESS & TABS
   ========================================= */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.timeline-line {
    position: absolute;
    width: 4px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 2;
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(79, 70, 229, 0.1);
    position: absolute;
    top: 10px;
}

.timeline-item.left .step-num {
    left: 20px;
}

.timeline-item.right .step-num {
    right: 20px;
}

/* Industries Tabs */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

.content-flex {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    gap: 40px;
}

.text-area {
    flex: 1;
    color: var(--text-light);
}

.text-area h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.text-area ul {
    margin-top: 20px;
    list-style: disc;
    padding-left: 20px;
}

.visual-area {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.1);
    flex: 0 0 150px;
    display: flex;
    justify-content: center;
}

/* =========================================
   9. TESTIMONIALS & FOOTER
   ========================================= */
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ddd;
    background-size: cover;
}

.av-1 {
    background-image: url('https://randomuser.me/api/portraits/women/44.jpg');
}

.av-2 {
    background-image: url('https://randomuser.me/api/portraits/men/32.jpg');
}

.av-3 {
    background-image: url('https://randomuser.me/api/portraits/women/65.jpg');
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.control-btn {
    background: white;
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: var(--grad-main);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Footer */
.main-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    padding-top: 0;
}

.footer-wave {
    line-height: 0;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    gap: 10px;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.legal-links a {
    margin-left: 20px;
}

/* Contact Page Specifics */
.page-banner {
    background: var(--bg-dark);
    padding: 150px 0 80px;
    color: white;
    text-align: center;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    box-shadow: var(--card-shadow);
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.contact-info-panel {
    background: var(--primary-color);
    color: white;
    padding: 50px;
}

.contact-form-panel {
    padding: 50px;
}

.c-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-form .form-group {
    margin-bottom: 20px;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
}

/* Legal Page specific */
.legal-page .main-header {
    background: white;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.legal-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Animations Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rotateCube {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .hero-visual {
        margin-top: 50px;
        width: 100%;
        height: 400px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .about-image-stack {
        margin-bottom: 50px;
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid-layout {
        grid-template-columns: 1fr;
    }

    .calc-results {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item.left {
        left: 0;
    }

    .timeline-item.right {
        left: 0;
    }

    .step-num {
        left: -15px !important;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .legal-links a {
        margin: 0 10px;
    }

    .tabs-nav {
        flex-direction: column;
    }

    .content-flex {
        flex-direction: column-reverse;
        text-align: center;
    }
}