html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

/* Services Section */
.services {
    padding: 150px 2rem;
    position: relative;
    z-index: 1;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(236, 99, 255, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Global Shine Effect */
.section-tag::after,
.service-card::after,
.pricing-card::after,
.contact-detail-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.section-tag:hover::after,
.service-card:hover::after,
.pricing-card:hover::after,
.contact-detail-icon:hover::after {
    left: 150%;
}

/* Adjustments for icons */
.service-icon, .pricing-icon, .contact-detail-icon {
    position: relative;
    overflow: hidden;
    background: var(--gradient-1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header h2 span {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #000;
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.4), rgba(0, 240, 255, 0.4));
    border-radius: 26px;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-card:hover::before {
    inset: -2px;
    background: linear-gradient(135deg, #f72585, #00f0ff);
    box-shadow: 0 0 25px rgba(247, 37, 133, 0.3), 0 0 50px rgba(0, 240, 255, 0.2);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-card:hover::after {
    width: 500px;
    height: 500px;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 240, 255, 0.1);
}

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.5);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-tag {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--primary);
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.service-price-amount {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-price-period {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Process Section */
.process {
    padding: 150px 2rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.02);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.process-timeline::after {
    content: '';
    position: absolute;
    top: 39px;
    left: 10%;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.8), #fff);
    box-shadow: 10px 0 20px 2px rgba(0, 240, 255, 1), 0 0 10px rgba(0, 240, 255, 0.6);
    border-radius: 4px;
    z-index: 2;
    animation: neonTravel 3.5s linear infinite;
    pointer-events: none;
}

@keyframes neonTravel {
    0% {
        left: 10%;
        opacity: 0;
        transform: translateX(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 90%;
        opacity: 0;
        transform: translateX(-100%);
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 3;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 3;
    background: var(--gradient-1);
    color: var(--dark);
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.process-step:hover .process-number {
    transform: scale(1.15);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.process-step:hover h3 {
    color: var(--primary);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 60px 2rem 60px;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(8, 12, 22, 0.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 25px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.4), rgba(112, 0, 255, 0.4));
    border-radius: 26px;
    z-index: -1;
    transition: all 0.4s ease;
}

.pricing-card:hover::before {
    inset: -2px;
    background: linear-gradient(135deg, #00f0ff, #7000ff);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5), 0 0 60px rgba(112, 0, 255, 0.35);
}

.pricing-features {
    flex-grow: 1;
}

.pricing-card.featured {
    background: rgba(12, 16, 32, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.5);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.25), 0 0 60px rgba(112, 0, 255, 0.2);
    transform: scale(1.02);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: -40px;
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    color: #020306;
    padding: 0.4rem 3rem;
    transform: rotate(45deg);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 5;
    letter-spacing: 0.08em;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    transition: all 0.4s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}

.pricing-card.featured .pricing-icon {
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

.pricing-name {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.pricing-price {
    font-size: 2.6rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin: 1rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #00f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.featured .pricing-price {
    background: linear-gradient(135deg, #00f0ff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 1.25rem 0 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features li {
    color: var(--text);
}

.pricing-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    color: #020306;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    color: #020306;
}

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Contact Section */
.contact {
    padding: 150px 2rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.02);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    width: 100%;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.3), transparent);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

@media (max-width: 992px) {
    .contact-container::before {
        display: none;
    }
}

.contact-info h3 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-btn-wrapper {
    display: flex;
    justify-content: center;
    margin: 2.5rem 0 0 0;
    width: 100%;
}

.contact-btn-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    padding: 1rem 3rem !important;
    width: 100% !important;
    max-width: 440px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border: 1px solid rgba(0, 180, 255, 0.45) !important;
    box-shadow: 0 0 16px rgba(0, 150, 255, 0.25), inset 0 0 12px rgba(0, 180, 255, 0.1) !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
}

.contact-btn-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 220, 255, 0.25), rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    animation: blueSweep 4.5s infinite ease-in-out;
}

.contact-btn-pill:hover {
    transform: translateY(-2px) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(0, 240, 255, 0.8) !important;
    box-shadow: 0 0 24px rgba(0, 180, 255, 0.45), 0 0 40px rgba(0, 240, 255, 0.2) !important;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 20px rgba(0, 240, 255, 0.5);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-detail:hover {
    transform: translateX(10px);
}

.contact-detail-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2), inset 0 0 15px rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    color: var(--primary);
}

.contact-detail:hover .contact-detail-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4), inset 0 0 20px rgba(0, 240, 255, 0.2);
    border-color: rgba(0, 240, 255, 0.6);
}

.contact-detail-text h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-detail-text p {
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-form {
    background: rgba(18, 18, 26, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.05);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.125rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), inset 0 0 10px rgba(0, 240, 255, 0.1);
    background: rgba(0, 240, 255, 0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300f0ff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.form-group select option {
    background: #12121a;
    color: #ffffff;
    padding: 0.75rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border: 1px solid rgba(0, 180, 255, 0.45) !important;
    box-shadow: 0 0 16px rgba(0, 150, 255, 0.25), inset 0 0 12px rgba(0, 180, 255, 0.1) !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 220, 255, 0.25), rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    animation: blueSweep 4.5s infinite ease-in-out;
}

.btn-submit:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(0, 240, 255, 0.8) !important;
    box-shadow: 0 0 24px rgba(0, 180, 255, 0.45), 0 0 40px rgba(0, 240, 255, 0.2) !important;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 20px rgba(0, 240, 255, 0.5);
}

/* Footer */
.footer {
    background: var(--dark-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 2rem 40px;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
}

.footer-social a:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(8px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 104px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Keyframe para animación sutil de flotación */
@keyframes subtleFloatAnim {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    animation: subtleFloatAnim 3.4s ease-in-out infinite;
    animation-delay: 0.6s;
}

.floating-btn-chat {
    background: #ffffff;
    animation: subtleFloatAnim 3.4s ease-in-out infinite;
    animation-delay: 0s;
}

.nortechly-chatbot-btn {
    animation: subtleFloatAnim 3.4s ease-in-out infinite;
    animation-delay: 1.2s;
}

.floating-btn:hover {
    transform: scale(1.15) translateY(-4px) !important;
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.3);
}

/* Tooltip for floating buttons */
.tooltip-container {
    position: relative;
}

.tooltip-container::after {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    background: rgba(18, 18, 26, 0.9);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.tooltip-container:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--dark-light);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 3rem;
    border-radius: 25px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.4s ease;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin: 0 auto 1.5rem;
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.modal-close {
    background: var(--gradient-1);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 1;
    transform: none;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}

/* Tech Stack Marquee */
.tech-marquee-container {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 -4px 25px rgba(255, 255, 255, 0.25), 
                0 4px 25px rgba(255, 255, 255, 0.25), 
                inset 0 3px 18px rgba(255, 255, 255, 0.08), 
                inset 0 -3px 18px rgba(255, 255, 255, 0.08);
    z-index: 2;
}

@keyframes laserSweepTop {
    0% {
        left: -35%;
    }
    45%, 100% {
        left: 135%;
    }
}

@keyframes laserSweepBottom {
    0% {
        left: -35%;
    }
    45%, 100% {
        left: 135%;
    }
}

.marquee-glow-line-top,
.marquee-glow-line-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 15%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(255, 255, 255, 0.3) 85%, 
        transparent 100%
    );
    box-shadow: 0 0 12px #ffffff, 0 0 25px rgba(255, 255, 255, 0.7);
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.marquee-glow-line-top {
    top: 0;
}

.marquee-glow-line-bottom {
    bottom: 0;
}

.marquee-glow-line-top::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -35%;
    width: 320px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffffff 50%, transparent);
    box-shadow: 0 0 25px #ffffff, 0 0 45px #ffffff, 0 0 70px rgba(255, 255, 255, 0.9);
    animation: laserSweepTop 3.2s infinite ease-in-out;
}

.marquee-glow-line-bottom::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -35%;
    width: 320px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffffff 50%, transparent);
    box-shadow: 0 0 25px #ffffff, 0 0 45px #ffffff, 0 0 70px rgba(255, 255, 255, 0.9);
    animation: laserSweepBottom 3.2s infinite ease-in-out;
    animation-delay: 0.4s;
}

.tech-marquee-container::before,
.tech-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.tech-marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark), transparent);
}

.tech-marquee-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dark), transparent);
}

.tech-marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

@keyframes whiteShimmer {
    0% {
        left: -100%;
    }
    40%, 100% {
        left: 160%;
    }
}

.tech-bubble {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    color: #e2e8f0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.08), inset 0 0 10px rgba(255, 255, 255, 0.04), 0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
    animation: floatBubble 6s ease-in-out infinite;
}

.tech-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    animation: whiteShimmer 4.5s infinite ease-in-out;
    pointer-events: none;
}

.tech-bubble:nth-child(even) {
    animation-delay: -3s;
}

.tech-bubble:nth-child(even)::before {
    animation-delay: -2.25s;
}

.tech-bubble:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.35), inset 0 0 12px rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Stagger animations for grid items (zero-delay instant render) */
.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(3),
.pricing-grid .pricing-card:nth-child(1),
.pricing-grid .pricing-card:nth-child(2),
.pricing-grid .pricing-card:nth-child(3),
.process-timeline .process-step:nth-child(1),
.process-timeline .process-step:nth-child(2),
.process-timeline .process-step:nth-child(3),
.process-timeline .process-step:nth-child(4) {
    transition-delay: 0s !important;
}

/* ===================================================
   RESPONSIVE COMPLETO — BREAKPOINTS ESTRUCTURADOS
   =================================================== */

/* === TABLET LANDSCAPE (max-width: 1200px) === */
@media (max-width: 1200px) {
    .services, .pricing, .process, .contact {
        padding: 100px 1.25rem !important;
    }

    .section-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .services-grid,
    .pricing-grid {
        gap: 1.5rem;
    }

    .service-card,
    .pricing-card {
        max-width: 100%;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before,
    .process-timeline::after {
        display: none !important;
    }

    .contact-container {
        gap: 3rem;
    }

    .contact-info h3 {
        font-size: 2.6rem;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .popular-badge {
        right: -20px;
        padding: 0.4rem 2rem;
        font-size: 0.7rem;
    }

    .pricing-price {
        font-size: 2.8rem;
    }
}

/* === TABLET PORTRAIT (max-width: 992px) === */
@media (max-width: 992px) {
    .services, .pricing, .process, .contact {
        padding: 80px 1rem !important;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .services-grid {
        gap: 1.25rem;
    }

    .pricing-grid {
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .popular-badge {
        right: -15px;
        top: 15px;
        padding: 0.35rem 1.8rem;
        font-size: 0.65rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-container::before {
        display: none;
    }

    .contact-info h3 {
        font-size: 2.2rem;
        text-align: center;
    }

    .contact-info > p {
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* === MOBILE (max-width: 768px) === */
@media (max-width: 768px) {
    .services, .pricing, .process, .contact {
        padding: 60px 1rem !important;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .nav-links {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .navbar .nav-cta,
    .nav-container .nav-cta {
        display: none;
    }

    .mobile-menu {
        display: flex;
        margin-left: 0.75rem;
        scale: 0.8;
        transform-origin: right center;
    }

    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .lang-btn svg {
        width: 12px !important;
        height: 12px !important;
    }

    .nav-actions {
        gap: 0.4rem;
        margin-left: auto;
        margin-right: -0.5rem;
    }
    .services-grid {
        max-width: 450px;
        margin: 0 auto;
    }

    .service-card {
        max-width: 100%;
    }

    .pricing-grid {
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .popular-badge {
        right: -10px;
        top: 12px;
        padding: 0.3rem 1.5rem;
        font-size: 0.6rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-price-amount {
        font-size: 1.6rem;
    }

    .pricing-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1px;
    }

    .tech-marquee-container::before,
    .tech-marquee-container::after {
        width: 60px;
    }

    .tech-bubble {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .tech-marquee-container {
        padding: 2rem 0;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-number {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        max-width: 100% !important;
        width: 100% !important;
    }

    .contact-info {
        display: contents !important;
    }

    .contact-info h3 {
        order: 1 !important;
        font-size: 1.8rem !important;
        text-align: center !important;
    }

    .contact-info > p {
        order: 2 !important;
        text-align: center !important;
        margin-bottom: 1.25rem !important;
        font-size: 0.95rem;
    }

    .contact-btn-wrapper {
        order: 3 !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0.5rem 0 1.5rem 0 !important;
        width: 100% !important;
    }

    .contact-image-container {
        order: 4 !important;
        width: 100% !important;
        margin: 0.5rem 0 1.5rem 0 !important;
    }

    .contact-form {
        order: 5 !important;
        margin-bottom: 2rem !important;
        padding: 1.5rem;
        border-radius: 20px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .contact-details {
        order: 6 !important;
        width: 100% !important;
    }

    .contact-detail-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .contact-detail-text h4 {
        font-size: 0.8rem;
    }

    .contact-detail-text p {
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer {
        padding: 60px 1.5rem 30px;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .cursor,
    .cursor-dot {
        display: none;
    }

    /* Floating CTA & ChatBot mobile */
    .nortechly-chatbot-btn {
        bottom: 15px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
    }

    .nortechly-chatbot-badge {
        bottom: 20px !important;
        right: 72px !important;
        max-width: 200px !important;
        padding: 8px 12px !important;
    }

    .floating-cta {
        bottom: 78px !important;
        right: 15px !important;
        gap: 0.5rem !important;
        z-index: 1000 !important;
    }

    .floating-btn {
        width: 48px !important;
        height: 48px !important;
    }

    .floating-btn svg {
        width: 22px !important;
        height: 22px !important;
    }
}

/* === MOBILE SMALL (max-width: 480px) === */
@media (max-width: 480px) {

    .services, .pricing, .process, .contact {
        padding: 50px 0.75rem !important;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .services-grid,
    .pricing-grid {
        max-width: 100%;
        padding: 0 !important;
    }

    .service-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .pricing-price {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .process-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .footer {
        padding: 40px 1rem 25px;
    }

    .popular-badge {
        position: absolute;
        right: 0;
        top: 0;
        transform: none;
        border-radius: 0 20px 0 12px;
        padding: 0.35rem 0.75rem;
        font-size: 0.65rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-price-amount {
        font-size: 1.4rem;
    }

    .contact-info h3 {
        font-size: 1.6rem !important;
    }

    .contact-form {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .tech-marquee-container::before,
    .tech-marquee-container::after {
        width: 30px;
    }

    .tech-bubble {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin: 1rem;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .modal-content h3 {
        font-size: 1.4rem;
    }
}

/* === GLOBAL OVERFLOW PREVENTION === */

img, canvas, svg {
    max-width: 100%;
    height: auto;
}

/* Ensure no horizontal scroll from any element */
.hero, .services, .pricing, .process, .contact, .footer,
.section-container, .hero-container, .hero-stats {
    max-width: 100%;
}

/* Custom Checkbox Styling for Age Confirmation */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    line-height: 1.4;
}

.checkbox-container input {
    display: none; /* Hide default checkbox */
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-container:hover .checkbox-custom {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(76, 215, 246, 0.2);
}

.checkbox-container input:checked ~ .checkbox-custom {
    background: var(--gradient-1);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(76, 215, 246, 0.4);
}

.checkbox-custom::after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkbox-custom::after {
    display: block;
}

.checkbox-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-container:hover .checkbox-text {
    color: rgba(255, 255, 255, 0.95);
}

/* Floating Cookie & Terms Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 400px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(76, 215, 246, 0.15);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hidden {
    display: none !important;
}

.cookie-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cookie-icon {
    color: var(--primary);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-top: 2px;
}

.cookie-icon svg {
    width: 100%;
    height: 100%;
}

.cookie-text h4 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--secondary);
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--gradient-1);
    color: var(--dark);
    box-shadow: 0 0 10px rgba(76, 215, 246, 0.2);
}

.cookie-btn-accept:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(76, 215, 246, 0.4);
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

.brand-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo-img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.4));
}

/* Global Inline Vertical Ticker for Footer */
@keyframes verticalTickerInline {
  0%, 20% { transform: translateY(0); }
  33%, 53% { transform: translateY(-30px); }
  66%, 86% { transform: translateY(-60px); }
  100% { transform: translateY(-90px); }
}

.ticker-track-inline {
  animation: verticalTickerInline 9s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
