/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --color-red: #dc2626;
    --color-dark-red: #991b1b;
    --color-black: #0a0a0a;
    --color-grey: #71717a;
    --color-light-grey: #a1a1aa;
    --color-steel: #52525b;
    --color-dark-bg: #0a0a0a;
    --color-darker-bg: #050505;
    --color-grey-bg: #18181b;
    --color-zinc-800: #27272a;
    --color-zinc-900: #18181b;
    --color-zinc-950: #09090b;
    
    /* Shadows */
    --shadow-glow-red: 0 0 30px rgba(220, 38, 38, 0.4);
    --shadow-glow-red-intense: 0 0 50px rgba(220, 38, 38, 0.6);
    --shadow-steel: 0 10px 40px rgba(0, 0, 0, 0.8);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--color-black);
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 3.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; font-family: 'Oswald', sans-serif; }

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.bg-black { background: var(--color-black); }
.bg-dark { background: var(--color-zinc-900); }
.text-red { color: var(--color-red); }
.glow { box-shadow: var(--shadow-glow-red); }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-delay-1 {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.animate-fade-in-delay-4 {
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

#header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    background: var(--color-red);
    padding: 0.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

.logo-subtext {
    font-size: 0.75rem;
    color: var(--color-red);
    letter-spacing: 0.2em;
}

.desktop-nav {
    display: none;
    gap: 2rem;
    align-items: center;
}

.desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.desktop-nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-zinc-800);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--color-red);
}

.desktop-only {
    display: none;
}

/* Buttons */
.cta-button, .btn-primary, .btn-secondary, .btn-outline {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.cta-button, .btn-primary {
    background: var(--color-red);
    color: #fff;
}

.cta-button:hover, .btn-primary:hover {
    background: var(--color-dark-red);
    transform: scale(1.05);
}

.btn-secondary {
    background: #fff;
    color: #000;
}

.btn-secondary:hover {
    background: #e5e5e5;
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.6), transparent);
    z-index: 10;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent, rgba(0,0,0,0.5));
    z-index: 10;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 10;
    opacity: 0.1;
    background-image: 
        linear-gradient(rgba(220, 38, 38, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 20;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid var(--color-red);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d4d4d8;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-ctas button {
    width: 100%;
    max-width: 300px;
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.trust-indicators {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(39, 39, 42, 0.5);
    border: 1px solid var(--color-zinc-800);
    backdrop-filter: blur(10px);
}

.trust-card svg {
    color: var(--color-red);
}

.trust-title {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-family: 'Bebas Neue', sans-serif;
}

.trust-subtitle {
    font-size: 0.875rem;
    color: #a1a1aa;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.25rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.5rem;
    background: var(--color-red);
    border-radius: 0.125rem;
    animation: scrollWheel 2s ease-in-out infinite;
}

/* Live Crowd Indicator */
.crowd-indicator-wrapper {
    position: relative;
}

.crowd-indicator {
    position: fixed;
    top: 120px;
    right: 2rem;
    z-index: 30;
    background: var(--color-zinc-900);
    border: 2px solid var(--color-red);
    padding: 1.5rem;
    max-width: 28rem;
    display: none;
}

.crowd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.crowd-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: var(--color-red);
    border-radius: 50%;
}

.crowd-count {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.crowd-count svg {
    color: var(--color-red);
}

.crowd-number {
    font-size: 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
}

.crowd-label {
    font-size: 0.75rem;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.crowd-status-badge {
    background: var(--color-red);
    padding: 0.75rem;
    text-align: center;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.crowd-peak {
    padding-top: 1rem;
    border-top: 1px solid var(--color-zinc-800);
}

.peak-title {
    font-size: 0.75rem;
    color: #71717a;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.peak-hours {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.peak-hour-card {
    background: var(--color-black);
    padding: 0.5rem;
    text-align: center;
}

.peak-time {
    color: var(--color-red);
    font-size: 0.875rem;
}

.peak-desc {
    font-size: 0.75rem;
    color: #52525b;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--color-red);
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-description {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 48rem;
    margin: 1rem auto 0;
}

/* About Section */
.about-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 5rem;
}

.about-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 10;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.about-content p {
    color: #d4d4d8;
}

.stat-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--color-red);
    font-family: 'Bebas Neue', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.values-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.value-card {
    background: var(--color-black);
    border: 1px solid var(--color-zinc-800);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--color-red);
    transform: translateY(-5px);
}

.value-card svg {
    color: var(--color-red);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.875rem;
    color: #a1a1aa;
}

.social-proof {
    display: grid;
    gap: 2rem;
    background: linear-gradient(to right, rgba(220, 38, 38, 0.2), transparent);
    border-left: 4px solid var(--color-red);
    padding: 2rem;
}

.proof-stat {
    text-align: center;
}

.proof-number {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
}

.proof-label {
    font-size: 0.875rem;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--color-zinc-900);
    border: 2px solid var(--color-zinc-800);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--color-red);
    transform: translateY(-10px);
}

.pricing-card.popular {
    border-color: var(--color-red);
    box-shadow: var(--shadow-glow-red);
}

.popular-badge, .addon-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-red);
    padding: 0.25rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.addon-badge {
    background: #fff;
    color: #000;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
}

.savings {
    font-size: 0.875rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-family: 'Bebas Neue', sans-serif;
}

.period {
    color: #71717a;
    margin-left: 0.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #d4d4d8;
    margin-bottom: 0.75rem;
}

.plan-features svg {
    color: var(--color-red);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-card button {
    width: 100%;
    padding: 1rem;
}

.trial-cta {
    text-align: center;
    background: linear-gradient(to right, var(--color-red), var(--color-dark-red));
    padding: 3rem;
}

.trial-cta p {
    font-size: 1.125rem;
    margin: 1rem 0 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 40;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* AI Chat Widget */
.ai-chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

.chat-toggle {
    background: var(--color-red);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-glow-red-intense);
    transition: all 0.3s ease;
    color: #fff;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 384px;
    max-width: calc(100vw - 3rem);
    background: var(--color-zinc-900);
    border: 2px solid var(--color-red);
    box-shadow: var(--shadow-steel);
    max-height: 600px;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: var(--color-red);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-bot-icon {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.chat-title {
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.chat-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.chat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: var(--color-black);
    max-height: 400px;
}

.message {
    margin-bottom: 1rem;
    padding: 0.75rem;
    font-size: 0.875rem;
    max-width: 80%;
}

.message.bot {
    background: var(--color-zinc-800);
    color: #d4d4d8;
}

.message.user {
    background: var(--color-red);
    color: #fff;
    margin-left: auto;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.chat-options button {
    background: var(--color-zinc-900);
    border: 1px solid #52525b;
    color: #fff;
    padding: 0.5rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.chat-options button:hover {
    background: var(--color-red);
    border-color: var(--color-red);
}

.chat-input {
    padding: 1rem;
    background: var(--color-zinc-900);
    border-top: 1px solid var(--color-zinc-800);
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    background: var(--color-black);
    border: 1px solid #52525b;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--color-red);
}

.chat-input button {
    background: var(--color-red);
    border: none;
    color: #fff;
    padding: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.chat-input button:hover {
    background: var(--color-dark-red);
}

/* Exit Popup */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 100;
}

.exit-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.exit-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-zinc-900);
    border: 4px solid var(--color-red);
    padding: 3rem;
    max-width: 600px;
    width: calc(100% - 2rem);
    text-align: center;
}

.exit-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-black);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.exit-close:hover {
    background: var(--color-red);
}

.exit-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.exit-tag {
    color: var(--color-red);
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.exit-offer {
    background: var(--color-black);
    border: 2px solid var(--color-red);
    padding: 2rem;
    margin: 2rem 0;
}

.offer-title {
    font-size: 3rem;
    font-family: 'Bebas Neue', sans-serif;
}

.offer-subtitle {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.offer-bonus {
    color: #a1a1aa;
    margin: 0.5rem 0;
}

.offer-value {
    font-size: 0.875rem;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

.exit-popup button {
    width: 100%;
    margin: 0.5rem 0;
}

.exit-dismiss {
    background: none;
    border: none;
    color: #71717a;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.5rem;
}

.exit-dismiss:hover {
    color: #fff;
}

/* Footer */
.footer {
    background: var(--color-zinc-950);
    border-top: 1px solid var(--color-zinc-800);
}

.footer .container {
    padding: 4rem 1.5rem 2rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.footer-column p {
    color: #a1a1aa;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--color-red);
}

.footer-bottom {
    border-top: 1px solid var(--color-zinc-800);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #71717a;
}

/* Responsive Design */
@media (min-width: 768px) {
    .trust-indicators {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-ctas {
        flex-direction: row;
    }

    .hero-ctas button {
        width: auto;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-proof {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }

    .desktop-only {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .crowd-indicator {
        display: block;
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-dark-red);
}
