/* Pricing Page Styles */
:root {
    --primary: #FF6B00;
    --secondary: #e05d00;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #666;
    --light-gray: #f5f5f5;
    --border: #e0e0e0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 20px 5%;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 5%;
}

.logo-container {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-image {
    position: absolute;
    height: 120px;
    width: 150px;
    object-fit: contain;
    transition: var(--transition);
}

#header nav {
    display: flex;
    align-items: center;
}

.logo-white {
    opacity: 1;
}

.logo-orange {
    opacity: 0;
}

#header.scrolled .logo-white {
    opacity: 0;
}

#header.scrolled .logo-orange {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

#header.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.dropdown {
    position: relative;
}

.dropdown-icon {
    margin-left: 5px;
    font-size: 12px;
    transition: var(--transition);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    margin-top: 15px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary);
    padding-left: 25px;
}

.dropdown-menu a i {
    color: var(--primary);
    width: 20px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--light);
    cursor: pointer;
    z-index: 1001;
}

#header.scrolled .menu-toggle {
    color: var(--dark);
}

.nav-overlay {
    display: none;
}

/* Pricing Hero Section */
.pricing-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 150px 5% 80px;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(255, 107, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.separator {
    margin: 0 10px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: white;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition);
    cursor: pointer;
}

.toggle-label.active {
    opacity: 1;
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: rgba(255, 255, 255, 0.5);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.save-badge {
    background: white;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 8px;
}

/* Pricing Info Section */
.pricing-info-section {
    padding: 80px 5%;
    background: white;
    text-align: center;
}

.pricing-info-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.highlight-orange {
    color: var(--primary);
}

.pricing-info-section .section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.pricing-info-section .billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pricing-info-section .toggle-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition);
    cursor: pointer;
    color: var(--dark);
}

.pricing-info-section .toggle-label.active {
    opacity: 1;
    font-weight: 600;
    color: var(--primary);
}

.pricing-info-section .switch .slider {
    background-color: var(--border);
}

.pricing-info-section .switch input:checked + .slider {
    background-color: var(--primary);
}

.pricing-info-section .switch .slider:before {
    background-color: white;
}

.pricing-info-section .save-badge {
    background: var(--primary);
    color: white;
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 100px 5%;
    background: var(--light-gray);
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 700px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.15);
    border-color: var(--primary);
}

.pricing-card.popular {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.plan-badge {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.plan-description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.plan-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 10px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: var(--gray);
    margin-left: 5px;
}

.billing-note {
    font-size: 0.85rem;
    color: var(--gray);
}

.plan-features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

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

.plan-features li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.plan-features li.unavailable {
    color: var(--gray);
    opacity: 0.5;
}

.plan-features li.unavailable i {
    color: var(--gray);
}

.plan-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    border: 2px solid var(--primary);
    margin-top: auto;
}

.plan-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
}

.plan-button.secondary {
    background: white;
    color: var(--primary);
}

.plan-button.secondary:hover {
    background: var(--primary);
    color: white;
}

/* Custom Plan Styling */
.custom-plan {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.custom-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

/* Comparison Table Section */
.comparison-section {
    padding: 100px 5%;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: var(--dark);
    color: white;
}

.comparison-table th {
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: var(--light-gray);
}

.popular-column {
    background: rgba(255, 107, 0, 0.05);
}

.comparison-table .popular-column {
    position: relative;
}

.feature-name {
    font-weight: 600;
    color: var(--dark);
}

.comparison-table i.fa-check {
    color: var(--primary);
    font-size: 1.2rem;
}

.comparison-table i.fa-times {
    color: var(--gray);
    opacity: 0.3;
}

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background: var(--light-gray);
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button.primary {
    background: white;
    color: var(--primary);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* Footer Styles */
#footer {
    background: linear-gradient(135deg, #fef3e6 0%, #ffffff 100%);
    padding: 80px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.footer-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

.footer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(255, 107, 0, 0.12) 0%, rgba(59, 130, 246, 0.08) 45%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.footer-card:hover::after {
    opacity: 1;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.footer-card p {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

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

.footer-links-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-grid a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.footer-links-grid a:hover {
    color: var(--primary);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 14px 28px rgba(255, 107, 0, 0.15);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.footer-contact-list li {
    display: flex;
    gap: 14px;
    min-width: 0;
}

.footer-contact-list li div {
    min-width: 0;
    flex: 1;
}

.footer-contact-list li div a,
.footer-contact-list li div span:not(.footer-contact-label) {
    word-break: break-word;
    overflow-wrap: break-word;
    display: block;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-contact-list a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-list a:hover {
    color: var(--primary);
}

.footer-app-text {
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.app-button:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #e05d00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.app-button i {
    font-size: 1.2rem;
}

.footer-divider {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    margin: 40px auto 30px;
    background: linear-gradient(90deg, rgba(255, 107, 0, 0) 0%, rgba(255, 107, 0, 0.35) 50%, rgba(255, 107, 0, 0) 100%);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--dark);
}

.footer-bottom p {
    color: var(--dark);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-divider-dot {
    color: rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1002;
        padding: 8px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .menu-toggle i {
        font-size: 24px;
        transition: transform 0.3s ease;
    }
    
    .menu-toggle.active i {
        transform: rotate(90deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--light) 0%, #f8f9fa 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
        padding: 170px 0 20px 0;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        color: var(--dark);
        font-size: 1.1rem;
        padding: 18px 25px;
        display: flex;
        align-items: center;
        width: 100%;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }
    
    .nav-links a:hover,
    .nav-links a:focus {
        background: rgba(255, 107, 0, 0.1);
        color: var(--primary);
        border-left-color: var(--primary);
        transform: translateX(5px);
    }
    
    .nav-links a:after,
    .nav-links a::after {
        display: none;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 10px;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.5);
    }
    
    .dropdown-menu a {
        padding: 12px 15px;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 120px 5% 80px;
    }

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

    .billing-toggle {
        flex-direction: column;
        gap: 10px;
    }

    .amount {
        font-size: 2.5rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
