:root {
    --brand-red: #d32f2f; /* Darker, professional red from logo */
    --brand-dark: #1a202c; /* Deep slate from logo text */
    --brand-grey: #2d3748; /* Darker grey for better visibility */
    --primary: var(--brand-red);
    --primary-dark: #b71c1c;
    --secondary: #4a5568; /* Moved old brand-grey here */
    --accent: #ffcc00;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --text: #f1f5f9; /* Slightly brighter for better contrast on dark */
    --text-muted: #94a3b8;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gradient-main: linear-gradient(135deg, var(--brand-red) 0%, #1a202c 100%);
    --gradient-glow: linear-gradient(135deg, rgba(211, 47, 47, 0.5) 0%, rgba(26, 32, 44, 0.5) 100%);
    --gradient-text: linear-gradient(to right, white, #e2e8f0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--darker);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Grid */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    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;
    z-index: -2;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Navigation */
.navbar {
    background: var(--darker);
    padding: 0.5rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    height: 80px;
    border-bottom: 1px solid var(--glass-border);
}

.logo-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    padding: 8px; /* Added small padding to match reference image */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 4px solid var(--brand-red);
    position: absolute;
    left: 8%;
    top: 10px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed back to contain to avoid cropping logo text */
    border-radius: 50%;
}

.logo-container a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-left: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white; /* Changed from var(--brand-dark) to white */
    font-weight: 700;
    transition: all 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--brand-red); /* Brand red hover */
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 8px; /* Square-ish buttons like reference */
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-signup {
    background: var(--brand-red);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-signup:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 32, 44, 0.4);
}

.btn-login {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-login:hover {
    background: white;
    color: var(--brand-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, white, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

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

/* Floating Elements */
.hero-float {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

.hero-float.top-right {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.hero-float.bottom-left {
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Background Blobs */
/* Dropdown Menu Styles */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--dark);
    min-width: 220px;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
    margin: 0 !important;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.2s;
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--brand-red);
}

/* Highlight for Cab Screens */
.nav-links .highlight-nav {
    background: var(--brand-red);
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 50px;
    margin-left: 10px;
}

.nav-links .highlight-nav:hover {
    background: var(--brand-dark);
    color: white !important;
}

/* Mobile Dropdown Adjustments */
@media (max-width: 1024px) {
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links li.active-dropdown .dropdown-menu {
        max-height: 500px;
    }

    .nav-links .highlight-nav {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
    animation: blob-bounce 10s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-dark);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--secondary);
    animation-delay: -5s;
}

@keyframes blob-bounce {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Marquee */
.marquee-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    margin: 0 3rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Stats Section */
.stats-container {
    padding: 5rem 5%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2));
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* Sections */
.section {
    padding: 6rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(211, 47, 47, 0.1);
    color: var(--brand-red);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(211, 47, 47, 0.2);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-stretch {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Cards */
.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(211, 47, 47, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-red);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Steps */
.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* Footer */
footer {
    background: rgba(2, 6, 23, 0.9);
    padding: 5rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact Form Styles */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2);
    background: rgba(15, 23, 42, 0.8);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Floating WhatsApp Button */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.float-wa:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #20bd5a;
    box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.5);
}

.float-wa i {
    margin-top: 2px; /* Visual adjustment */
}

/* Utility Classes */
.hide-mobile {
    display: block;
}

/* Comparison Table Mobile Enhancements */
/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white; /* Changed from #94a3b8 to white */
    border-radius: 3px;
    transition: 0.3s;
}

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

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

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

@media (max-width: 1024px) {
    .navbar {
        padding: 0 5%;
        justify-content: center; /* Center the logo */
    }

    .logo-container {
        position: relative;
        left: 0;
        top: 0;
        width: 80px;
        height: 80px;
        border-width: 3px;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--darker); /* Dark background for mobile menu */
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        border-left: 1px solid var(--glass-border);
    }

    .nav-right.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .nav-links li a {
        font-size: 1.2rem;
        color: white;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 15%;
        gap: 1rem;
    }

    .nav-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
        justify-content: center;
    }
}

/* Comparison Table */
.comparison-container {
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: var(--glass);
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.comparison-table {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    align-items: center;
}

.comparison-row.header {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px 16px 0 0;
    border-bottom: 2px solid var(--glass-border);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: white;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-col {
    font-weight: 600;
    color: white;
}

.trad-col {
    color: var(--text-muted);
}

.aow-col {
    font-weight: 700;
    color: var(--brand-red);
}

/* Comparison Table Mobile Enhancements */
@media (max-width: 768px) {
    .comparison-container {
        padding: 0;
        margin-top: 2rem;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        overflow: visible;
    }
    
    .comparison-table {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .comparison-row.header {
        display: none !important;
    }

    .comparison-row {
        display: block !important;
        margin-bottom: 1.5rem;
        background: var(--glass);
        border-radius: 24px;
        padding: 1.5rem;
        border: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        backdrop-filter: blur(10px);
    }

    .feature-col, .trad-col, .aow-col {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 0 !important;
        width: 100% !important;
        border: none !important;
        text-align: right !important;
        color: white !important;
    }

    .feature-col {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--brand-red) !important;
        border-bottom: 1px solid var(--glass-border) !important;
        margin-bottom: 8px;
        padding-bottom: 15px !important;
        text-align: left !important;
        display: block !important;
    }

    .trad-col::before {
        content: "Traditional:";
        font-weight: 600;
        color: var(--text-muted);
        font-size: 0.8rem;
        text-transform: uppercase;
        margin-right: 10px;
    }

    .aow-col::before {
        content: "Our Way:";
        font-weight: 700;
        color: var(--brand-red);
        font-size: 0.8rem;
        text-transform: uppercase;
        margin-right: 10px;
    }

    .trad-col {
        color: var(--text-muted) !important;
    }

    .aow-col {
        color: white !important;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 5%;
    text-align: center;
    background: var(--brand-red);
    color: white;
    border-radius: 40px;
    margin: 4rem 5%;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: white;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 60px;
}

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 8%;
        border-radius: 30px;
        margin: 2rem 5%;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .page-hero {
        min-height: 40vh;
        padding: 100px 5% 40px;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .nav-right {
        gap: 2rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .logo-container {
        width: 65px;
        height: 65px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
        min-height: auto;
        padding-bottom: 4rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-image img {
        transform: none !important;
    }
    
    .grid, .grid-2, .grid-3 {
        grid-template-columns: 1fr !important;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 2.5rem !important;
    }

    .slogan-xl {
        font-size: 2.2rem !important;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
    
    .marquee-item {
        font-size: 0.8rem;
        margin-right: 30px;
    }

    .comparison-container {
        margin: 0 -5%;
        padding: 0 5%;
    }

    .comparison-table th, .comparison-table td {
        padding: 12px !important;
        font-size: 0.8rem;
    }
    
    .step-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }
    
    .step-number {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-content div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-content div:first-child p {
        margin-inline: auto;
    }

    .float-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 6px 15px;
    }
}
