/* Root variables mapping to the provided color palette */
:root {
    --color-midnight: #0B132B;
    /* Backgrounds, large sections */
    --color-cyan: #00F5FF;
    /* CTA, pulse, details */
    --color-cyan-glow: rgba(0, 245, 255, 0.4);
    --color-space-grey: #5D6D7E;
    /* Secondary text, borders */
    --color-white: #FFFFFF;
    /* Clean content, main text */

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-white);
    background-color: var(--color-white);
    /* Middle section is white */
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.text-center {
    text-align: center;
}

.text-midnight {
    color: var(--color-midnight) !important;
}

.center-underline {
    margin: 0 auto 30px auto;
}

.dark-underline {
    background-color: var(--color-midnight);
    box-shadow: none;
}

.full-width {
    width: 100%;
    text-align: center;
}

.section-subtitle {
    color: var(--color-space-grey);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.row-container {
    display: flex;
    gap: 60px;
    justify-content: space-between;
    align-items: stretch;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 19, 43, 0.85);
    /* Volvemos al color semitransparente original */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex: 1;
    /* Push the link container out to split space with nav-links */
}

.logo {
    height: 56px;
    /* 40% Larger than original 40px */
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    /* Esto elimina el negro del logo y lo hace transparente */
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Push links and CTA to the right */
    flex: 1;
    /* Take up remaining space */
    gap: 30px;
}

.menu-toggle {
    display: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    /* Keep above menu */
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.nav-links a {
    color: #C0C0C0;
    /* Plateado */
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
    /* Prevent words like OUR MISSION from breaking lines */
}

.nav-links a:hover {
    color: var(--color-cyan);
}

.nav-cta {
    background-color: var(--color-cyan);
    color: var(--color-midnight) !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 800 !important;
    text-shadow: none;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--color-white);
    box-shadow: 0 0 15px var(--color-cyan-glow);
    transform: translateY(-2px);
}

.mobile-cta {
    display: none;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    background-color: var(--color-midnight);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
    /* offset for navbar */
}

/* Hexagon / polygon background effect using CSS */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(11, 19, 43, 0.9), rgba(11, 19, 43, 0.7)),
        url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

/* Neon Glow Lines */
.hero-glow {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-cyan), transparent);
    z-index: 1;
}

.hero-glow-1 {
    height: 150%;
    left: 15%;
    top: -25%;
    transform: rotate(35deg);
    box-shadow: 0 0 20px 2px var(--color-cyan);
    opacity: 0.6;
}

.hero-glow-2 {
    height: 150%;
    right: 15%;
    top: -25%;
    transform: rotate(-35deg);
    box-shadow: 0 0 20px 2px var(--color-cyan);
    opacity: 0.6;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    background: linear-gradient(90deg, var(--color-white), var(--color-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.44rem;
    /* 20% larger than 1.2rem */
    color: var(--color-white);
    margin-bottom: 40px;
    max-width: 650px;
    /* Slightly wider to accommodate larger text */
    font-weight: 400;
    /* Slightly bolder for better visibility */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Added text shadow for visibility against complex backgrounds */
}

.cta-button {
    position: relative;
    display: inline-block;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 1.5px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--color-cyan);
    color: var(--color-midnight);
    box-shadow: 0 0 20px var(--color-cyan-glow);
}

.primary-btn:hover {
    box-shadow: 0 0 35px var(--color-cyan);
    transform: translateY(-3px) scale(1.02);
}

/* Button hover reflection effect */
.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.cta-button:hover .btn-glow {
    top: 100%;
    left: 100%;
    opacity: 1;
}

/* --- STATS SECTION (Restored) --- */
.stats {
    background-color: var(--color-white);
    padding: 80px 0;
    color: var(--color-midnight);
    position: relative;
    z-index: 5;
}

.stats .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.stats .service-card {
    padding: 40px 20px;
    background: var(--color-white);
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.stats .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 19, 43, 0.08);
    border-color: rgba(0, 245, 255, 0.2);
}

.stats .icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background-color: rgba(0, 245, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-cyan);
    box-shadow: 0 0 15px var(--color-cyan-glow), inset 0 0 15px var(--color-cyan-glow);
    transition: all 0.4s ease;
}

.stats .service-card:hover .icon-wrapper {
    background-color: var(--color-cyan);
}

.stats .icon-wrapper i {
    font-size: 40px;
    color: var(--color-cyan);
    transition: all 0.4s ease;
}

.stats .service-card:hover .icon-wrapper i {
    color: var(--color-midnight);
}

.stats .service-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--color-midnight);
}

.stats .service-desc {
    color: var(--color-space-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- WORK SECTION --- */
.work {
    background-color: var(--color-midnight);
    padding: 100px 0;
    color: var(--color-white);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
}

.work-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.work-item-wide {
    grid-column: span 2;
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(11, 19, 43, 0.95), transparent);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.work-item:hover .work-img {
    transform: scale(1.1);
}

.work-overlay h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.work-item:hover .work-overlay h3 {
    transform: translateY(0);
}

.work-overlay p {
    color: var(--color-cyan);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    height: 0;
    overflow: hidden;
}

.work-item:hover .work-overlay p {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-top: 5px;
}

/* --- SERVICES & PRICING SECTION --- */
.services {
    background-color: var(--color-white);
    padding: 120px 0;
    color: var(--color-midnight);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #FAFAFA;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #EAEAEA;
    text-align: left;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 19, 43, 0.1);
    border-color: rgba(0, 245, 255, 0.5);
}

.popular {
    background: var(--color-midnight);
    color: var(--color-white);
    border-color: var(--color-cyan);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(11, 19, 43, 0.2);
}

.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 30px;
    transform: translateY(-50%);
    background-color: var(--color-cyan);
    color: var(--color-midnight);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 0 15px var(--color-cyan-glow);
}

.pricing-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.popular .pricing-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.popular .tier-name {
    color: var(--color-cyan);
}

.price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    position: relative;
    top: 5px;
}

.period {
    font-size: 1rem;
    color: var(--color-space-grey);
    font-weight: 400;
}

.tier-desc {
    color: var(--color-space-grey);
    font-size: 0.95rem;
}

.popular .tier-desc {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--color-cyan);
    margin-top: 4px;
}

/* --- VALUE PROP SLIDER --- */
.value-prop {
    background-color: #f4f6f9;
    padding: 100px 0;
    color: var(--color-midnight);
}

.value-prop-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.value-text {
    flex: 1;
}

.benefit-box {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--color-white);
    border-left: 4px solid var(--color-cyan);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--color-midnight);
    font-size: 1.2rem;
}

.benefit-box h4 i {
    color: var(--color-cyan);
}

.benefit-box p {
    color: var(--color-space-grey);
    font-size: 0.95rem;
}

.value-slider {
    flex: 1;
    height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeSlider 15s infinite;
}

.slide-1 {
    animation-delay: 0s;
}

.slide-2 {
    animation-delay: 5s;
}

.slide-3 {
    animation-delay: 10s;
}

@keyframes fadeSlider {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    33% {
        opacity: 1;
        transform: scale(1);
    }

    43% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
    }
}

.slider-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(11, 19, 43, 0.9);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 245, 255, 0.3);
    backdrop-filter: blur(5px);
}

/* --- ABOUT US SECTION --- */
.about {
    background-color: var(--color-midnight);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow */
.about-glow {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    transform: translateY(-50%);
    border-radius: 50%;
    pointer-events: none;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-content {
    flex: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 15px;
}

.title-underline {
    height: 4px;
    width: 80px;
    background-color: var(--color-cyan);
    margin-bottom: 30px;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--color-cyan);
}

.about-text {
    color: var(--color-space-grey);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 550px;
}

.about-text:first-of-type {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
}

.secondary-btn {
    background: transparent;
    color: var(--color-cyan);
    border: 2px solid var(--color-cyan);
    margin-top: 15px;
}

.secondary-btn:hover {
    background: var(--color-cyan);
    color: var(--color-midnight);
    box-shadow: 0 0 20px var(--color-cyan-glow);
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hologram-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.15);
}

.hologram-img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
    filter: contrast(120%) brightness(90%);
}

.hologram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(11, 19, 43, 0.8) 0%, rgba(0, 245, 255, 0.2) 100%);
    mix-blend-mode: overlay;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 10px var(--color-cyan);
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% {
        top: -10%;
    }

    100% {
        top: 110%;
    }
}

/* --- CONTACT SECTION --- */
.contact {
    background-color: var(--color-white);
    padding: 120px 0;
    color: var(--color-midnight);
}

.contact-info {
    flex: 1;
}

.contact-desc {
    color: var(--color-space-grey);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--color-cyan);
    background: var(--color-midnight);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 245, 255, 0.2);
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--color-space-grey);
    font-weight: 500;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--color-midnight);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(11, 19, 43, 0.2);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--color-cyan);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

/* --- FOOTER --- */
footer {
    background-color: #050a17;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    color: var(--color-space-grey);
    font-size: 0.9rem;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .nav-container {
        height: 80px;
        flex-wrap: nowrap;
        padding: 0 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        /* Anchor for absolute logo */
    }

    .menu-toggle {
        display: block;
        flex: 1;
        text-align: left;
    }

    .logo-link {
        position: absolute;
        /* Absolute center ensures perfect middle regardless of flex lengths */
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
    }

    .logo {
        height: 36px !important;
    }

    .mobile-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 11px !important;
        font-weight: 800 !important;
        font-family: var(--font-heading) !important;
        padding: 6px 10px !important;
        margin: 0 !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        white-space: nowrap !important;
    }

    .mobile-cta-wrapper {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -280px;
        /* Hidden off to the left */
        width: 280px;
        height: 100vh;
        background: var(--color-midnight);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 30px 40px;
        border-right: 1px solid rgba(0, 245, 255, 0.2);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
        transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        margin: 0;
        gap: 30px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        display: block;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .logo {
        height: 28px;
    }

    .desktop-cta {
        display: none !important;
    }

    .mobile-cta {
        display: inline-block;
        font-size: 0.75rem;
        padding: 8px 12px;
        margin-left: auto;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .popular {
        transform: scale(1);
    }

    .popular:hover {
        transform: translateY(-10px);
    }

    .value-prop-container,
    .row-container {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }

    .about-visual {
        width: 100%;
    }

    .hero {
        padding-top: 100px;
    }

    .stats,
    .work,
    .services,
    .value-prop,
    .about,
    .contact {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats,
    .work,
    .services,
    .value-prop,
    .about,
    .contact {
        padding: 60px 0;
    }

    .work-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .work-item-wide {
        grid-column: auto;
    }

    .value-slider {
        height: 300px;
        margin-top: 30px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .footer-slogan h2 {
        font-size: 1.7rem !important;
    }

    .footer-slogan p {
        font-size: 0.8rem !important;
        letter-spacing: 3px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2rem);
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .value-slider {
        height: 250px;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}