:root {
    /* Colors - Corporate & Premium */
    --primary: #005EB8;
    /* Strong Blue */
    --primary-dark: #003D7A;
    --secondary: #0B1120;
    /* Almost Black */
    --accent: #38BDF8;
    /* Cyan for tech vibes */

    --bg-body: #F8FAFC;
    --bg-surface: #FFFFFF;
    --text-main: #1E293B;
    --text-light: #64748B;

    /* Timeline Step Colors */
    --step-1: #005EB8;
    /* Blue */
    --step-2: #10B981;
    /* Green */
    --step-3: #8B5CF6;
    /* Purple */
    --step-4: #F59E0B;
    /* Orange */
    --step-5: #38BDF8;
    /* Cyan */

    /* Grid System */
    --grid-cols: 12;
    --grid-gap: 20px;
    --container-width: 1440px;
    /* Wide screen standard */

    /* Glassmorphism 3.0 Ultra Premium */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: 1px solid rgba(255, 255, 255, 0.9);
    --glass-border-gradient: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 100%);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --blur: blur(20px);

    /* Spacing - Reduced for density */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 6rem;

    /* Radius */
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Texture Noise - Premium Feel */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Backgrounds */
.mesh-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 94, 184, 0.1) 0%, transparent 50%);
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

section {
    padding: var(--space-xl) 0;
    width: 100%;
}

main {
    width: 100%;
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--grid-gap);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animated Underline Effect */
.animated-underline {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: var(--secondary);
}

.animated-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 4px;
    opacity: 0.3;
    transform: scaleX(0);
    transform-origin: left;
    animation: drawUnderline 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes drawUnderline {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: scaleX(1);
        opacity: 0.4;
    }
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0077CC 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 94, 184, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0077CC 0%, var(--primary) 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 94, 184, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 94, 184, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(0, 94, 184, 0.2);
    color: var(--secondary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 94, 184, 0.15);
}

.btn-ghost:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 94, 184, 0.1);
}

.card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--glass-shadow),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset,
        0 8px 32px rgba(56, 189, 248, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

/* Texture overlay for premium feel */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* Glass reflection */
.card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 0;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card>* {
    position: relative;
    z-index: 2;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset,
        0 12px 48px rgba(56, 189, 248, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
    border-top-color: rgba(255, 255, 255, 1);
}

.card:hover::after {
    opacity: 0.8;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glass bubble header when scrolled */
.header.scrolled {
    padding: 1rem 0;
}

.header.scrolled .header-inner {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    padding: 0.75rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    padding: 0;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary);
}

/* Hero Section (Split Screen) */
.hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero-text {
    grid-column: span 6;
    padding-right: 2rem;
}

.hero-visual {
    grid-column: span 6;
    position: relative;
    height: 600px;
    display: flex;
    align-items: flex-start;
    /* Align to top to control head position */
    justify-content: center;
    padding-top: 4rem;
    /* Push down to align head with badge */
}

.hero-img-main {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

/* Hero Character - New Design */
.hero-character {
    height: auto;
    max-height: 500px;
    /* Increased slightly to reach CTA */
    width: auto;
    max-width: 100%;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0, 94, 184, 0.2));
    opacity: 0;
    /* Initial state for animation */
    transform: scale(0.9) translateY(30px);
    /* Initial state */
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.2) 0%, rgba(0, 94, 184, 0.05) 40%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
    pointer-events: none;
}

.hero-img-main:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Three.js Container */
#threejs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
}

#threejs-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    overflow: visible;
}

.hero-visual {
    position: relative;
    overflow: visible;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--secondary);
    color: #fff;
    margin: 0;
}

/* Stat Data Cards */
.stat-data-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.stat-data-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.9) 100%);
    z-index: -1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.stat-data-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.stat-data-card:hover::before {
    opacity: 1;
}

.stat-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: transform 0.3s ease;
}

.stat-data-card:hover .stat-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-card-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--secondary);
    line-height: 1;
    display: inline-block;
    letter-spacing: -0.02em;
}

.stat-card-suffix {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--secondary);
    display: inline-block;
    margin-left: 0.25rem;
}

.stat-item {
    grid-column: span 3;
    text-align: center;
    padding: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services Grid */
.services-section {
    padding: 6rem 0;
}

.service-card {
    grid-column: span 4;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 94, 184, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Service Card Hover Effects with Icon Glow */
.service-card-infrastructure .service-icon-infrastructure {
    background: rgba(0, 94, 184, 0.1);
    color: var(--primary);
}

.service-card-bouclier .service-icon-bouclier {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.service-card-attaque .service-icon-attaque {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.service-card-infrastructure:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset,
        0 0 60px rgba(0, 94, 184, 0.2);
}

.service-card-infrastructure:hover .service-icon-infrastructure {
    background: rgba(0, 94, 184, 0.15);
    box-shadow: 0 0 20px rgba(0, 94, 184, 0.4),
        0 0 40px rgba(0, 94, 184, 0.2);
    transform: scale(1.1);
}

.service-card-bouclier:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset,
        0 0 60px rgba(16, 185, 129, 0.2);
}

.service-card-bouclier:hover .service-icon-bouclier {
    background: rgba(16, 185, 129, 0.15);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4),
        0 0 40px rgba(16, 185, 129, 0.2);
    transform: scale(1.1);
}

.service-card-attaque:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset,
        0 0 60px rgba(245, 158, 11, 0.2);
}

.service-card-attaque:hover .service-icon-attaque {
    background: rgba(245, 158, 11, 0.15);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4),
        0 0 40px rgba(245, 158, 11, 0.2);
    transform: scale(1.1);
}

/* Trusted By */
.trusted-section {
    padding: 4rem 0;
    text-align: center;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    opacity: 0.6;
}

.logo-grid img {
    height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.logo-grid img:hover {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: #020617;
    color: #94A3B8;
    padding: 6rem 0 2rem;
}

.footer-col {
    grid-column: span 3;
}

.footer h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer a:hover {
    color: #fff;
}

/* Hero Marquee - Rebuilt */
.hero-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
}

.hero-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 4rem;
    animation: scroll 30s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item img {
    height: 60px !important;
    /* Override global mobile img rule */
    width: auto !important;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.marquee-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Comparison Section (Battle Card) */
.comparison-grid {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* VS Badge */
/* VS Badge - Removed to avoid duplication with HTML */
/*
.comparison-grid::before {
    content: 'VS';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: var(--secondary);
    font-weight: 800;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--bg-body);
    font-size: 1.2rem;
}
*/

.comparison-card {
    flex: 1;
    padding: 3rem;
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.comparison-card.old-way {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0.7;
    transform: scale(0.95);
}

.comparison-card.old-way:hover {
    opacity: 1;
    transform: scale(0.98);
}

.comparison-card.new-way {
    background: #fff;
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0, 94, 184, 0.15);
    transform: scale(1.05);
    position: relative;
    z-index: 2;
}

.comparison-card.new-way:hover {
    transform: scale(1.07);
    box-shadow: 0 30px 60px rgba(0, 94, 184, 0.2);
}

.comparison-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

/* Floating Cards Animation */
.floating-card {
    will-change: transform;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-10px) translateX(5px);
    }

    50% {
        transform: translateY(-5px) translateX(-3px);
    }

    75% {
        transform: translateY(-15px) translateX(3px);
    }
}

/* Card Images */
.card-image-container {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #F1F5F9;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image {
    transform: scale(1.05);
}

/* Highlight Animation for "Croissance" */
.highlight-animated {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-animated::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #F59E0B 0%, #EF4444 100%);
    animation: highlightSlide 1.5s ease-out 0.5s forwards;
    border-radius: 2px;
}

@keyframes highlightSlide {
    to {
        width: 100%;
    }
}

/* Floating Animation for Badges */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-badge {
    animation: float 3s ease-in-out infinite;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    will-change: opacity;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slider-dot:hover {
    transform: scale(1.2);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset;
    background: rgba(37, 211, 102, 1);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    .hero-text,
    .hero-visual {
        grid-column: span 12;
    }

    .hero-visual {
        height: 400px;
        margin-top: 3rem;
    }

    .service-card {
        grid-column: span 6;
    }

    .stat-item {
        grid-column: span 6;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .stat-data-card {
        grid-column: span 6;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {

    /* Container & Spacing */
    .container {
        padding: 0 1.5rem;
    }

    /* Typography */
    h1 {
        font-size: 2.25rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.35rem !important;
    }

    p {
        font-size: 1rem;
    }

    /* Header */
    .header-inner {
        padding: 1rem 0;
    }

    .header.scrolled .header-inner {
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
    }

    .logo img {
        height: 28px;
    }

    .nav {
        display: none;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Hero Section - Mobile Optimized */
    .hero {
        padding-top: 6rem !important;
        padding-bottom: 2rem !important;
        min-height: auto !important;
        position: relative;
        overflow: hidden;
    }

    /* Animated background gradient for mobile hero */
    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
        animation: pulse-bg 8s ease-in-out infinite;
        z-index: -1;
    }

    @keyframes pulse-bg {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.8;
        }
    }

    .hero-text {
        padding-right: 0;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 40vh;
        /* Ensure text takes up space */
    }

    .hero h1 {
        font-size: 2.75rem !important;
        /* Bigger headline */
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        /* Subtle pop */
    }

    /* Badge enhancement */
    .hero-badge {
        width: fit-content !important;
        margin: 0 auto 1rem auto !important;
        backdrop-filter: blur(10px);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 249, 255, 0.9)) !important;
        border: 1px solid rgba(56, 189, 248, 0.3) !important;
        box-shadow: 0 4px 12px rgba(56, 189, 248, 0.15) !important;
        transform: scale(1.05);
    }

    .hero-cta-container {
        margin-top: 1rem !important;
        align-items: center !important;
        width: 100%;
    }

    /* Global Badge Pill */
    .badge-pill {
        display: inline-block;
        padding: 0.5rem 1rem;
        border-radius: 100px;
        font-weight: 600;
        font-size: 0.9rem;
        backdrop-filter: blur(10px);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 249, 255, 0.9));
        border: 1px solid rgba(56, 189, 248, 0.3);
        box-shadow: 0 4px 12px rgba(56, 189, 248, 0.15);
        color: var(--primary);
        margin-bottom: 1.5rem;
        width: fit-content;
    }

    .hero-visual {
        height: 300px;
        margin-top: 1rem;
    }

    /* Grid System */
    .grid-12>* {
        grid-column: span 12 !important;
    }

    /* Service Cards */
    .service-card {
        grid-column: span 12 !important;
        padding: 2rem 1.5rem;
    }

    .card-image-container img {
        max-width: 100% !important;
    }

    /* Stats */
    .stat-item {
        grid-column: span 12 !important;
        border-right: none;
        padding: 2rem 1.5rem;
    }

    .stat-data-card {
        grid-column: span 12 !important;
        margin-bottom: 1rem;
        padding: 1.5rem !important;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        background: rgba(255, 255, 255, 0.9);
    }

    .stat-card-number {
        font-size: 3rem;
    }

    .stat-card-suffix {
        font-size: 2.25rem;
    }

    /* Sections */
    section {
        padding: 2rem 0 !important;
    }

    .services-section {
        padding: 2rem 0 !important;
    }

    /* Footer */
    .footer-col {
        grid-column: span 12 !important;
        margin-bottom: 2rem;
    }

    .footer {
        padding: 3rem 0 !important;
    }

    /* Cards */
    .card {
        padding: 1.5rem;
    }

    /* Floating Elements */
    .floating-card {
        width: 160px !important;
        padding: 1rem !important;
        font-size: 0.85rem;
    }

    /* Comparison Grid */
    .comparison-grid {
        flex-direction: column;
    }

    .comparison-grid::before {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 1rem auto;
    }

    /* WhatsApp Button - Mobile Optimized */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    /* Solutions Page - Mobile */
    section[style*="grid-template-columns"] {
        display: block !important;
    }

    section[style*="grid-template-columns"]>div {
        margin-bottom: 3rem;
    }

    section[style*="grid-template-columns"] img {
        max-width: 100% !important;
        margin: 0 auto;
        display: block;
    }

    /* Contact Form - Mobile */
    .form-step {
        padding: 2rem 1.5rem;
    }

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .form-navigation button {
        width: 100%;
    }

    /* Inbound Marketing Cards - Mobile */
    div[style*="grid-column: span 6"] {
        grid-column: span 12 !important;
    }

    /* Icon Sizes - Mobile */
    [data-lucide] {
        width: 20px !important;
        height: 20px !important;
    }

    .service-icon [data-lucide] {
        width: 24px !important;
        height: 24px !important;
    }

    /* Badges - Mobile */
    div[style*="border-radius: 100px"] {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
    }

    /* Large Icons in Cards - Mobile */
    div[style*="width: 80px"] {
        width: 64px !important;
        height: 64px !important;
    }

    div[style*="width: 80px"] [data-lucide] {
        width: 32px !important;
        height: 32px !important;
    }

    /* Gradient Icons - Mobile */
    div[style*="width: 56px"] {
        width: 48px !important;
        height: 48px !important;
    }

    div[style*="width: 56px"] [data-lucide] {
        width: 24px !important;
        height: 24px !important;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.85rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    .container {
        padding: 0 1rem;
    }

    .btn-primary {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero {
        padding-top: 6rem !important;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .card {
        padding: 1.25rem;
    }

    section {
        padding: 2.5rem 0 !important;
    }

    .stat-card-number {
        font-size: 2.5rem;
    }

    .stat-card-suffix {
        font-size: 2rem;
    }

    /* WhatsApp Button - Clean Implementation */
    .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        color: #fff;
        border-radius: 50%;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #128c7e;
    }

    .whatsapp-float svg {
        width: 32px;
        height: 32px;
        fill: white;
    }

    /* Footer Logo Container - Transparent on Mobile */
    .footer-logo-container {
        background: transparent;
        padding: 0;
        border-radius: 0;
        display: inline-block;
        margin-bottom: 1rem;
    }

    /* WhatsApp Button - Small Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    /* Form - Small Mobile */
    .form-step {
        padding: 1.5rem 1rem;
    }

    input,
    textarea {
        font-size: 16px !important;
        /* Prevents zoom on iOS */
    }
}

/* ============================================
   BURGER MENU & MOBILE NAV
   ============================================ */

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    /* Solid background for better readability */
    z-index: 2000;
    /* Higher z-index to cover everything */
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    /* Slide in from right */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Menu Header (Logo + Close Button) */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.close-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    transition: background 0.2s;
}

.close-menu-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

.mobile-nav-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    /* Larger, more impactful font */
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.mobile-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.mobile-cta {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Burger Menu Animation */
.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================
   CRITICAL MOBILE FIXES - OVERFLOW PREVENTION
   ============================================ */

@media (max-width: 768px) {

    /* Show Burger Menu */
    .burger-menu {
        display: flex;
    }

    .hidden-mobile {
        display: none !important;
    }

    /* Prevent all horizontal overflow */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }

    /* Force all containers to respect viewport */
    .container {
        width: 100% !important;
        padding: 0 1.25rem !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    /* Override inline max-width styles */
    [style*="max-width"] {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* Grid system complete override */
    .grid-12 {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .grid-12>* {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Force images to be responsive */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Comparison grid mobile fix */
    .comparison-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    /* Timeline mobile width fix */
    .timeline-content {
        width: auto !important;
        max-width: calc(100% - 60px) !important;
    }

    /* Fix Header Layout */
    .header-inner {
        justify-content: space-between !important;
    }

    /* Fix Hero Spacing */
    .hero {
        padding-top: 7rem !important;
        overflow: hidden;
        /* Clip any overflowing blobs */
    }

    /* Fix Floating Cards in Hero */
    .floating-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 1rem auto !important;
        max-width: 280px !important;
        width: 100% !important;
    }

    /* Fix Background Mesh Overflow */
    .mesh-background {
        width: 100% !important;
        overflow: hidden !important;
    }

    /* ============================================
       STRICT MOBILE FIXES (USER REQUESTED)
       ============================================ */

    /* 1. Header Compactness */
    .header.scrolled .header-inner,
    .header .header-inner {
        padding: 0.5rem 1rem !important;
        /* Reduced padding */
        min-height: 60px;
    }

    .logo img {
        height: 24px !important;
        /* Force smaller logo */
        width: auto !important;
    }

    .burger-menu {
        transform: scale(0.9);
        /* Slightly smaller burger */
    }

    /* 2. Hero Overflow & Floating Cards */
    .hero {
        overflow: hidden !important;
        /* Cut off anything outside */
        padding-top: 6rem !important;
    }

    .hero-visual {
        height: 500px !important;
        min-height: 500px !important;
        overflow: visible !important;
        /* Allow 3D scene to show */
        margin-top: -2rem !important;
        /* Pull character up */
        margin-bottom: -4rem !important;
        /* Pull content below up */
        display: flex;
        justify-content: center;
        position: relative;
    }

    .hero-img-main {
        max-width: 80% !important;
        /* Reduce main image size */
        height: auto !important;
    }



    /* Mobile Responsiveness for Hero Character */
    @media (max-width: 768px) {
        .hero-character {
            max-height: 400px;
            /* Smaller on mobile */
            max-width: 90%;
        }

        .hero-visual {
            height: auto !important;
            min-height: auto !important;
            margin-top: 2rem !important;
            margin-bottom: 0 !important;
            overflow: visible !important;
            padding-top: 0 !important;
            /* Reset desktop padding */
        }
    }

    /* Floating elements removed */

    .floating-badge:nth-child(1) {
        top: 60% !important;
    }

    .floating-badge:nth-child(2) {
        top: 75% !important;
    }

    /* 3. Logo Carousel - Mobile Fixes */
    /* Removed obsolete overrides that were breaking the new marquee */

    /* 4. General Layout Safety */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .grid-12 {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    /* Fix Services/Agency Pages Grid */
    .service-card,
    .card {
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* 5. Contact Form - Ultra Compact Mobile */
    .contact-hero {
        padding-top: 3.5rem !important;
        padding-bottom: 0.5rem !important;
        min-height: auto !important;
    }

    .contact-hero h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.2 !important;
    }

    .contact-hero p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0 !important;
    }

    .contact-form-card {
        padding: 1rem !important;
        margin-top: 0.5rem !important;
    }

    .contact-form-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }

    /* Single column layout for form fields on mobile */
    .form-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .form-grid-2+div {
        margin-bottom: 0.5rem !important;
    }

    .contact-form-card input,
    .contact-form-card label {
        font-size: 0.9rem !important;
    }

    .contact-form-card input {
        padding: 0.6rem !important;
    }

    .contact-form-card label {
        margin-bottom: 0.2rem !important;
        font-size: 0.85rem !important;
    }

    /* Compact progress bar on mobile */
    .progress-step {
        gap: 0.35rem !important;
    }

    .progress-step-number {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }

    .progress-step-label {
        font-size: 0.8rem !important;
    }

    /* Fix Alert Popup Spacing on Mobile */
    .alert-popup {
        margin-top: 5rem !important;
        padding: 2rem 1.5rem !important;
        overflow: visible !important;
        transform: scale(0.95);
        width: 100% !important;
    }

    .alert-popup h4 {
        font-size: 1.2rem !important;
        line-height: 1.3;
    }

    /* Fix Guarantee Card Overflow on Mobile */
    .section-title+p+.card {
        padding: 1.5rem !important;
    }

    .section-title+p+.card h3 {
        font-size: 1.5rem !important;
        word-wrap: break-word;
    }

    .section-title+p+.card p {
        font-size: 1rem !important;
    }
}

/* Loader Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Shimmer Effect */
.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}



/* Comparison Section Styles */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    position: relative;
    margin-top: 2rem;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    height: 100%;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.comparison-card.outbound {
    border-color: rgba(239, 68, 68, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(254, 242, 242, 0.8));
}

.comparison-card.inbound {
    border-color: rgba(16, 185, 129, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(236, 253, 245, 0.8));
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outbound-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.inbound-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.card-header h3 {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.2;
}

.card-header .subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text);
}

.comparison-list li:last-child {
    margin-bottom: 0;
}

.text-red {
    color: #EF4444;
    width: 20px;
    height: 20px;
}

.text-green {
    color: #10B981;
    width: 20px;
    height: 20px;
}

.vs-badge-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.vs-badge {
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid #f3f4f6;
}

/* Mobile Comparison */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        /* Increased gap for VS badge */
    }

    .vs-badge-container {
        position: absolute;
        top: 50%;
        /* Center vertically relative to the grid */
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Adjust grid to make space for the badge in the middle */
    .comparison-card.outbound {
        margin-bottom: 0;
    }
}