/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --secondary-color: #991b1b;
    --dark-bg: #ffffff;
    --darker-bg: #f8f9fa;
    --light-text: #1a1a1a;
    --gray-text: #666666;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #10b981;
    --gradient-1: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --gradient-2: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --gradient-3: linear-gradient(135deg, #dc2626 0%, #f87171 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.logo:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    background: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.btn-hero {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
}

.btn-pricing {
    width: 100%;
    background: #dc2626;
    color: #ffffff;
    margin-top: auto;
    padding: 14px 30px;
    font-size: 1rem;
    text-align: center;
    display: block;
}

.btn-pricing:hover {
    background: #ef4444;
    transform: translateY(-2px);
}

.btn-pricing.featured-btn {
    background: #ffffff;
    color: #dc2626;
}

.btn-pricing.featured-btn:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(220, 38, 38, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

/* Spacing for internal pages only (not home page) */
.hero-title.internal-page {
    gap: 10px;
}

.hero-title > span:first-child {
    white-space: nowrap;
}

.highlight {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(220, 38, 38, 0.3));
    animation: float 6s ease-in-out infinite;
    border-radius: 20px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-text);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--gradient-2);
}

.feature-card:nth-child(3) .feature-icon {
    background: var(--gradient-3);
}

.feature-card:nth-child(4) .feature-icon {
    background: var(--gradient-1);
}

.feature-card:nth-child(5) .feature-icon {
    background: var(--gradient-2);
}

.feature-card:nth-child(6) .feature-icon {
    background: var(--gradient-3);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: var(--gray-text);
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: visible;
}

.pricing .container {
    position: relative;
    overflow: visible;
}

/* Scroll hint for mobile */
@media (max-width: 992px) {
    .pricing-grid::before {
        content: '';
        position: sticky;
        left: 0;
        width: 30px;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0.9), transparent);
        pointer-events: none;
        z-index: 1;
    }
    
    .pricing-grid::after {
        content: '';
        position: sticky;
        right: 0;
        width: 30px;
        height: 100%;
        background: linear-gradient(to left, rgba(255,255,255,0.9), transparent);
        pointer-events: none;
        z-index: 1;
    }
}


.pricing-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
    padding: 20px 5px 20px 5px;
    margin: 0 -5px;
}

.pricing-grid::-webkit-scrollbar {
    height: 8px;
}

.pricing-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.pricing-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.pricing-grid::-webkit-scrollbar-thumb:hover {
    background: #ff8533;
}


.pricing-card {
    background: #ffffff;
    backdrop-filter: blur(10px);
    padding: 50px 30px 35px;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 260px;
    flex: 0 0 calc(25% - 15px);
    scroll-snap-align: center;
    overflow: visible;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-color: #dc2626;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
    color: #ffffff;
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-subtitle,
.pricing-card.featured .price-amount,
.pricing-card.featured .price-currency {
    color: #ffffff;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-card.featured .pricing-features i {
    color: #ffffff;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

/* Top badge above card */
.pricing-badge-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fee2e2;
    color: #dc2626;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.pricing-badge-top.featured-badge {
    background: #dc2626;
    color: #ffffff;
}

/* Discount pill below price */
.pricing-discount {
    background: #fee2e2;
    color: #dc2626;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin: 15px 0 20px;
    display: inline-block;
    align-self: center;
}

.pricing-discount.featured-discount {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.pricing-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.pricing-subtitle {
    color: #9ca3af;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
}

.pricing-price {
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 10px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
    width: 100%;
}

.pricing-features li {
    padding: 10px 0;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features i {
    color: #dc2626;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
    border-color: var(--primary-color);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: #ffa500;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 1rem;
    flex-grow: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--light-text);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: transparent;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #f8f9fa;
    backdrop-filter: blur(10px);
    padding: 60px 0 20px;
    border-top: 1px solid #e0e0e0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-title i {
    color: var(--primary-color);
}

.footer-description {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-text);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--gray-text);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    /* Hide Contact Us button on tablet and mobile */
    .nav-wrapper .btn-primary {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-card {
        width: 300px;
        height: 300px;
    }

    .hero-icon {
        font-size: 100px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        gap: 15px;
        padding: 0 10px 20px 10px;
    }
    
    .pricing-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 280px;
        max-width: 320px;
        padding: 50px 25px 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
        border-color: #dc2626;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px) scale(1);
    }
    
    .pricing-badge-top {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .hero {
        padding: 110px 0 80px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        gap: 15px;
    }

    .hero-img {
        max-width: 350px;
    }

    .logo-img {
        height: 35px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features,
    .pricing,
    .faq {
        padding: 70px 0;
    }

    .features-grid {
        gap: 25px;
    }
    
    .feature-card {
        padding: 40px 30px;
        margin-bottom: 15px;
    }

    .scroll-to-top {
        bottom: 140px !important;
        right: 25px !important;
    }

    /* Vertical pricing layout for mobile */
    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 35px;
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 20px 0;
        margin: 0;
        align-items: center;
    }
    
    .pricing-card {
        flex: none;
        width: 100%;
        max-width: 420px;
        min-width: auto;
        padding: 50px 30px 35px;
        scroll-snap-align: none;
        margin-bottom: 10px;
    }
    
    /* Reorder cards: 1 Month, 12 Months, 6 Months, 3 Months */
    .pricing-card:nth-child(1) {
        order: 1;
    }
    
    .pricing-card:nth-child(2) {
        order: 2;
    }
    
    .pricing-card:nth-child(3) {
        order: 3;
    }
    
    .pricing-card:nth-child(4) {
        order: 4;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px) scale(1);
    }
    
    .pricing-discount {
        font-size: 0.85rem;
        padding: 7px 15px;
        margin: 20px 0 25px;
    }
    
    .pricing-badge-top {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .pricing-price {
        margin: 25px 0;
    }
    
    .btn-pricing {
        margin-top: 25px;
        padding: 15px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
        padding: 20px 0;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float i {
    line-height: 60px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 70px;
        right: 20px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .scroll-to-top {
        width: 45px !important;
        height: 45px !important;
        bottom: 135px !important;
        right: 20px !important;
        font-size: 1rem !important;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 120px 0 70px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .hero-img {
        max-width: 280px;
    }

    .logo-img {
        height: 32px;
    }

    .stat-item {
        padding: 8px 12px;
        font-size: 0.8rem;
        flex: 1;
    }

    .stat-item i {
        font-size: 1.2rem;
    }

    .btn-hero {
        padding: 14px 30px;
        font-size: 0.95rem;
        margin-top: 10px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .section-description {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 35px 25px;
        margin-bottom: 20px;
    }
    
    .pricing-card {
        padding: 45px 25px 30px;
        margin-bottom: 25px;
    }

    .pricing-features {
        font-size: 0.85rem;
        margin: 25px 0;
    }
    
    .pricing-features li {
        padding: 12px 0;
    }
    
    /* Vertical layout maintained on small mobile */
    .pricing-grid {
        gap: 30px;
        padding: 0 10px;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 380px;
        padding: 45px 25px 30px;
    }
    
    .pricing-badge-top {
        font-size: 0.7rem;
        padding: 5px 14px;
        top: -12px;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.8rem;
    }
    
    .price-currency {
        font-size: 1.2rem;
        margin-top: 8px;
    }
    
    .pricing-discount {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin: 10px 0 15px;
    }
    
    .pricing-features li {
        padding: 8px 0;
        font-size: 0.85rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .features,
    .pricing,
    .faq {
        padding: 50px 0;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .pricing-card {
        width: 100%;
        max-width: 340px;
        padding: 38px 18px 22px;
    }
    
    .pricing-badge-top {
        font-size: 0.65rem;
        padding: 4px 12px;
        top: -10px;
    }
    
    .pricing-title {
        font-size: 1.4rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-discount {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .pricing-features li {
        font-size: 0.8rem;
    }
}

/* Landscape orientation optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .pricing-card {
        padding: 20px 15px;
    }
    
    .pricing-features li {
        padding: 6px 0;
    }
}
