* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

:root {
    --primary: #0a0000;
    --secondary: #1a0000;
    --accent: #ff0000;
    --highlight: #ffffff;
    --light: #ffffff;
    --text: #e0e0e0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 50, 50, 0.2);
}


body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    background: var(--primary);
    background-image: radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.1) 0%, rgba(10, 0, 0, 1) 90%);
    padding-bottom: 90px;
}

/* Dynamic Background */
#dynamic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.03) 0%, transparent 30%),
        linear-gradient(to bottom, #0a0000, #1a0000);
}

.light-trail {
    position: absolute;
    height: 2px;
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 10px 2px var(--accent);
    animation: trailMove linear infinite;
}

.trail-1 {
    width: 400px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    top: 70%;
    left: -400px;
    animation-duration: 15s;
    opacity: 0.7;
}

.trail-2 {
    width: 600px;
    background: linear-gradient(to right, transparent, var(--highlight), transparent);
    top: 75%;
    left: -600px;
    animation-duration: 20s;
    animation-delay: 3s;
    opacity: 0.5;
}

.trail-3 {
    width: 300px;
    background: linear-gradient(to right, transparent, #ff9900, transparent);
    top: 80%;
    left: -300px;
    animation-duration: 12s;
    animation-delay: 7s;
    opacity: 0.4;
}

.spiral-trail {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top: 1px solid var(--accent);
    border-right: 1px solid var(--accent);
    filter: blur(1px);
    box-shadow: 0 0 15px 1px rgba(255, 0, 0, 0.5);
    top: 60%;
    left: 70%;
    animation: spiralRotate 25s linear infinite;
    opacity: 0.6;
}

.spiral-inner {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top: 1px solid var(--highlight);
    border-left: 1px solid var(--highlight);
    filter: blur(1px);
    box-shadow: 0 0 12px 1px rgba(255, 77, 77, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spiralRotateReverse 20s linear infinite;
}

.lens-flare {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 100, 100, 0.3), transparent 70%);
    filter: blur(30px);
    top: 20%;
    left: 10%;
    opacity: 0.3;
}

@keyframes trailMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100vw) translateY(-50px); }
}

@keyframes spiralRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spiralRotateReverse {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 5;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(26, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.cta-button {
    background: linear-gradient(45deg, var(--accent), #a80404);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(138, 3, 3, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 3, 3, 0.7);
    background: linear-gradient(45deg, #a80404, #8A0303);
}

.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
    animation: fadeInUp 1s ease;
}

.hero-image {
    flex: 1;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(209, 0, 0, 0.3);
}

.tagline {
    font-size: 1.1rem;
    color: var(--highlight);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #ff4d4d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--light);
    font-weight: 300;
}

.highlight {
    color: var(--highlight);
    font-weight: 600;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(209, 0, 0, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(209, 0, 0, 0.2);
}

.feature-badge i {
    color: var(--highlight);
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-cta .cta-button {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--highlight);
}

.phone-number i {
    font-size: 1.5rem;
}

.content-list {
    padding: 100px 0;
    z-index: 5;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff4d4d, #8A0303);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--light);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.content-card {
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
}

.content-card.glass {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--glass);
    backdrop-filter: blur(12px);
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--highlight);
    background: rgba(255, 255, 255, 0.05);
}

.content-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--highlight);
    background: rgba(209, 0, 0, 0.1);
    border: 1px solid rgba(209, 0, 0, 0.2);
}

.content-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--light);
}

.content-card ul {
    list-style: none;
    text-align: left;
    width: 100%;
    padding: 0;
}

.content-card li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-card li:last-child {
    border-bottom: none;
}

.content-card li i {
    color: var(--highlight);
    min-width: 25px;
}

.steps-section {
    padding: 100px 0;
    z-index: 5;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step-card {
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
}

.step-card.glass {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--glass);
    backdrop-filter: blur(12px);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--highlight);
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent), #a80404);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light);
    margin-bottom: 15px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: var(--highlight);
    background: rgba(209, 0, 0, 0.1);
    border: 1px solid rgba(209, 0, 0, 0.2);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--light);
}

.step-card p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 20px;
}

.step-card .cta-button {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.highlight-gradient {
    background: linear-gradient(45deg, #ff5e00, #ff6600);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.dark-red {
    color: #ff0000;
}

.pricing {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
    background: transparent;
    transition: all 0.3s ease;
}

.pricing-card.glass {
    border: 2px solid rgba(209, 0, 0, 0.3);
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-radius: 15px;
}

.pricing-card.popular {
    border: 2px solid var(--highlight);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #8A0303, #D10000);
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin: 20px 0;
    background: linear-gradient(45deg, #ffffff, #ff4d4d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-period {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    padding-left: 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--highlight);
    font-size: 1.2rem;
}

.excluded {
    opacity: 0.6;
    text-decoration: line-through;
}

.carousel-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 5;
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: var(--glass);
    backdrop-filter: blur(12px);
    padding: 20px 0;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    backdrop-filter: blur(5px);
    border-radius: 0 0 15px 15px;
    color: white;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.slide-content p {
    color: var(--text);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--highlight);
    transform: scale(1.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--highlight);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.language-section {
    width: 100vw;
    padding: 60px 20px 40px;
    background: linear-gradient(145deg, #220000, #330000);
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.language-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.language-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff4d4d;
}

.language-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 30px;
}

.cta-btn {
    background: #d40606;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.cta-btn:hover {
    background: #f50909;
    box-shadow: 0 0 15px #ff2929;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.language-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    color: white;
    text-align: center;
    box-shadow: 0 0 20px #fc1010;
    position: relative;
}

.popup-content h3 {
    color: #ff0033;
    margin-bottom: 20px;
}

.popup-content ul {
    list-style: none;
    padding: 0;
    columns: 2;
    text-align: left;
}

.popup-content ul li {
    margin-bottom: 10px;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

@media(max-width: 576px) {
    .popup-content ul {
        columns: 1;
    }
}

#testimonials {
    background: #0a0000;
    color: #fff;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
}

#testimonials h2 {
    text-align: center;
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ff4b5c;
}

#testimonials p.subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #e8b0b8;
    margin-bottom: 3rem;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.7s ease;
    will-change: transform;
}

.testimonial-wrapper {
    width: 100%;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 75, 92, 0.2);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 75, 92, 0.2);
    text-align: center;
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff4b5c;
    margin-bottom: 1rem;
}

.testimonial-card h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    color: #ffced4;
}

.testimonial-card p {
    color: #FFE2E5;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-card .stars {
    margin-top: 1rem;
    color: #ffcbcb;
    font-size: 1.2rem;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 75, 92, 0.3);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 75, 92, 0.5);
}

.nav-left {
    left: 15px;
}

.nav-right {
    right: 15px;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(138, 3, 3, 0.2), rgba(209, 0, 0, 0.2));
    text-align: center;
    position: relative;
    z-index: 5;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    color: var(--text);
    border: 1px solid rgba(209, 0, 0, 0.3);
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text);
}

.chat-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #8A0303, #a80404);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(138, 3, 3, 0.5);
    margin-top: 20px;
    cursor: pointer;
}

.chat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(138, 3, 3, 0.7);
    background: linear-gradient(45deg, #a80404, #8A0303);
}

.faq-section {
    padding: 100px 0;
    z-index: 5;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.9em;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

footer {
    background: rgba(15, 5, 5, 0.95);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--light);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--highlight);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--highlight);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--highlight);
    color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-size: 0.9rem;
}

.fixed-footer-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid rgba(209, 0, 0, 0.3);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.footer-navbar-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-navbar-text {
    flex: 1;
}

.footer-navbar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.footer-navbar-subtitle {
    font-size: 0.95rem;
    color: var(--highlight);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-trial-button {
    background: linear-gradient(45deg, var(--accent), #a80404);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(138, 3, 3, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-trial-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 3, 3, 0.6);
    background: linear-gradient(45deg, #a80404, #8A0303);
}

.footer-trial-button:active {
    transform: translateY(0);
}

.footer-trial-button i {
    font-size: 1.1rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2100;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #128C7E, #25D366);
}

.whatsapp-float i {
    font-size: 2rem;
}

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

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

@keyframes whatsapp-bounce {
    0% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
    50% { transform: translateY(0); }
    70% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .footer-navbar-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-navbar-text {
        flex: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .price {
        font-size: 3rem;
    }

    .spiral-trail {
        display: none;
    }

    .carousel-slide img {
        height: 400px;
    }

}