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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/*!--RESET_AND_BASE_STYLES_END!--*/

/*!--TYPOGRAPHY_START!--*/
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

em {
    font-style: italic;
    color: #00d4ff;
    font-weight: 600;
}

strong {
    color: #ffffff;
    font-weight: 700;
}
/*!--TYPOGRAPHY_END!--*/

/*!--BUTTONS_START!--*/
/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, #0099cc 0%, #00d4ff 100%);
}

.btn-primary.pulse {
    animation: pulse 2s infinite;
}

.btn-primary.mega {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    border-radius: 60px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #00d4ff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-plan {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border: 2px solid #00d4ff;
    color: #00d4ff;
}

.btn-plan:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    border-color: #00d4ff;
}
/*!--BUTTONS_END!--*/

/*!--ANIMATIONS_START!--*/
/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.6); }
}
/*!--ANIMATIONS_END!--*/

/*!--FLOATING_WHATSAPP_START!--*/
/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    font-size: 1.5rem;
}
/*!--FLOATING_WHATSAPP_END!--*/

/*!--HERO_SECTION_START!--*/
/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 153, 204, 0.1) 0%, transparent 50%);
}

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

.hero-content h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.hero-trust i {
    color: #00d4ff;
    margin-right: 0.5rem;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
    opacity: 0.3;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.element-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}
/*!--HERO_SECTION_END!--*/

/*!--URGENCY_BANNER_START!--*/
/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    padding: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-weight: 600;
    color: white;
}

.urgency-content i {
    font-size: 1.2rem;
    animation: pulse 1.5s infinite;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/*!--URGENCY_BANNER_END!--*/

/*!--SECTION_STYLES_START!--*/
/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}
/*!--SECTION_STYLES_END!--*/

/*!--ABOUT_USPEKH_START!--*/
/* About Uspekh Section */
.about-uspekh {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.about-uspekh h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #00d4ff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-highlight {
    background: linear-gradient(135deg, #00d4ff20 0%, #0099cc20 100%);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid #00d4ff;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-highlight i {
    font-size: 2rem;
    color: #00d4ff;
}

.testimonial-preview {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text p {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.testimonial-text span {
    font-size: 0.9rem;
    color: #00d4ff;
}
/*!--ABOUT_USPEKH_END!--*/

/*!--PLANS_SECTION_START!--*/
/* Plans Section */
.plans-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.plans-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.plans-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00d4ff20 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.recommended {
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin: 1rem 0;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: #00d4ff;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
}

.plan-price .period {
    font-size: 1.2rem;
    color: #b0b0b0;
}

.plan-benefits {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.plan-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.4;
}

.plan-benefits i {
    color: #00d4ff;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.plans-guarantee {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #00d4ff;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.guarantee-content i {
    font-size: 3rem;
    color: #00d4ff;
    flex-shrink: 0;
}

.guarantee-content h4 {
    margin-bottom: 0.5rem;
    color: #00d4ff;
}
/*!--PLANS_SECTION_END!--*/

/*!--TESTIMONIALS_SECTION_START!--*/
/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00d4ff;
}

.testimonial-author strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
}
/*!--TESTIMONIALS_SECTION_END!--*/

/*!--WHY_USPEKH_SECTION_START!--*/
/* Why Uspekh Section */
.why-uspekh-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.why-uspekh-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.why-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.why-item h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}
/*!--WHY_USPEKH_SECTION_END!--*/

/*!--AUTHORITY_SECTION_START!--*/
/* Authority Section */
.authority-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.authority-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.tech-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
    transition: all 0.3s ease;
}

.tech-logo:hover {
    color: #00d4ff;
    transform: translateY(-5px);
}

.tech-logo i {
    font-size: 3rem;
}

.authority-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #e0e0e0;
    font-size: 1rem;
}

.authority-cta {
    text-align: center;
}
/*!--AUTHORITY_SECTION_END!--*/

/*!--PROMOTION_SECTION_START!--*/
/* Promotion Section */
.promotion-section {
    background: linear-gradient(135deg, #2a1a00 0%, #4a3300 100%);
    position: relative;
    overflow: hidden;
}

.promotion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
}

.promotion-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.promotion-header {
    margin-bottom: 3rem;
}

.promotion-header i {
    font-size: 4rem;
    color: #ffc107;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.promotion-header h2 {
    color: #ffc107;
    margin-bottom: 1rem;
}

.promotion-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.promotion-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.offer {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #ffc107;
}

.offer i {
    font-size: 2.5rem;
    color: #ffc107;
    flex-shrink: 0;
}

.offer h3 {
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.offer p {
    color: #b0b0b0;
    margin: 0;
}

.promotion-highlight {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000;
    padding: 2rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.promotion-highlight h3 {
    color: #000;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.promotion-urgency {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    padding: 1.5rem;
    border-radius: 20px;
    color: white;
}

.urgency-counter {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: 1.1rem;
}
/*!--PROMOTION_SECTION_END!--*/

/*!--FINAL_CTA_SECTION_START!--*/
/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.final-cta-content h2 {
    margin-bottom: 1.5rem;
    color: #00d4ff;
}

.final-cta-text {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.final-cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #b0b0b0;
    font-size: 1.1rem;
}

.final-cta-guarantee i {
    color: #00d4ff;
    font-size: 1.5rem;
}
/*!--FINAL_CTA_SECTION_END!--*/

/*!--FAQ_SECTION_START!--*/
/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00d4ff;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #00d4ff;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #00d4ff;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #e0e0e0;
    line-height: 1.6;
}
/*!--FAQ_SECTION_END!--*/

/*!--FOOTER_START!--*/
/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-brand h3 {
    color: #00d4ff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #b0b0b0;
}

.footer-contact h4,
.footer-social h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-whatsapp,
.footer-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-whatsapp:hover {
    color: #25d366;
}

.footer-email:hover {
    color: #00d4ff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00d4ff;
    color: #000;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00d4ff;
}

.footer-bottom p {
    color: #888;
    margin: 0;
}
/*!--FOOTER_END!--*/

/*!--MODAL_STYLES_START!--*/
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin: 10% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 2px solid #00d4ff;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #00d4ff;
}

.modal-content h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.modal-content p {
    text-align: center;
    margin-bottom: 2rem;
}

#quickForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#quickForm input {
    padding: 1rem;
    border: 2px solid #333;
    border-radius: 10px;
    background: #2a2a2a;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#quickForm input:focus {
    outline: none;
    border-color: #00d4ff;
}

#quickForm input::placeholder {
    color: #888;
}
/*!--MODAL_STYLES_END!--*/

/*!--POPUP_STYLES_START!--*/
/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    z-index: 1500;
    right: 20px;
    bottom: 100px;
    width: 350px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #00d4ff;
}

.popup-content h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.popup-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
/*!--POPUP_STYLES_END!--*/

/*!--FLOATING_ACTION_BUTTON_START!--*/
/* Floating Action Button */
.floating-action {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 1000;
}

.floating-main {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.floating-main:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.6);
}

.floating-options {
    position: absolute;
    bottom: 70px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-action.active .floating-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-option {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.floating-option:hover {
    background: #00d4ff;
    color: white;
    transform: scale(1.1);
}

.floating-option::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-option:hover::before {
    opacity: 1;
    transform: translateX(0);
}
/*!--FLOATING_ACTION_BUTTON_END!--*/

/*!--RESPONSIVE_DESIGN_START!--*/
/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.recommended {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-logos {
        gap: 1.5rem;
    }
    
    .tech-logo i {
        font-size: 2rem;
    }
    
    .authority-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promotion-offers {
        grid-template-columns: 1fr;
    }
    
    .offer {
        flex-direction: column;
        text-align: center;
    }
    
    .urgency-counter {
        flex-direction: column;
        gap: 1rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .popup {
        right: 10px;
        left: 10px;
        width: auto;
        bottom: 120px;
    }
    
    .floating-whatsapp {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-whatsapp span {
        display: none;
    }
    
    .floating-action {
        bottom: 80px;
        left: 10px;
    }
    
    .element {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-primary.mega {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .plan-price .amount {
        font-size: 2.5rem;
    }
    
    .authority-stats {
        grid-template-columns: 1fr;
    }
    
    .urgency-content {
        flex-direction: column;
        gap: 1rem;
    }
}
/*!--RESPONSIVE_DESIGN_END!--*/

/*!--SCROLL_ANIMATIONS_START!--*/
/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/*!--SCROLL_ANIMATIONS_END!--*/

/*!--LOADING_ANIMATION_START!--*/
/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}
/*!--LOADING_ANIMATION_END!--*/

/*!--UTILITY_CLASSES_START!--*/
/* Utility classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}
/*!--PRELOADER_STYLES_START!--*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 120px;
  animation: fadeZoom 1.5s ease-in-out infinite alternate;
}

@keyframes fadeZoom {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.15);
  }
}
/*!--PRELOADER_STYLES_END!--*/
/*!--UTILITY_CLASSES_END!--*/

