/* Brand Colors */
:root {
    --yellow: #F0C227;
    --blue: #1A2658;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-gray: #666;
    --dark: #333;
    --bronze: #CD7F32;
    --silver: #C0C0C0;
    --gold: #FFD700;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--blue) 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

.logo-icon {
    background: var(--white);
    color: var(--blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--yellow);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--yellow);
}

.login-btn {
    background: var(--white);
    color: var(--blue);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    background: var(--yellow);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Section 1: Pricing Plans */
.pricing-plans {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-title-center {
    font-size: 48px;
    color: var(--blue);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle-center {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.plan-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.plan-card.popular {
    transform: scale(1.05);
    border-color: var(--yellow);
}

.plan-card.popular:hover {
    transform: scale(1.08) translateY(-15px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--yellow), var(--blue));
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(240, 194, 39, 0.4);
}

.plan-badge {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bronze-card .plan-icon {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
}

.silver-card .plan-icon {
    background: linear-gradient(135deg, #C0C0C0, #808080);
}

.gold-card .plan-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.plan-icon i {
    font-size: 36px;
    color: var(--white);
}

.plan-name {
    font-size: 32px;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-price {
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    color: var(--text-gray);
    vertical-align: top;
}

.amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--blue);
}

.period {
    font-size: 18px;
    color: var(--text-gray);
}

.plan-tagline {
    color: var(--text-gray);
    font-size: 15px;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features-list li i {
    font-size: 18px;
    color: var(--yellow);
}

.features-list li.disabled {
    color: var(--text-gray);
    opacity: 0.5;
}

.features-list li.disabled i {
    color: var(--text-gray);
}

.plan-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bronze-btn {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: var(--white);
}

.silver-btn {
    background: linear-gradient(135deg, var(--yellow), var(--blue));
    color: var(--white);
}

.gold-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--white);
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section 2: Plan Comparison */
.plan-comparison {
    padding: 100px 0;
    background: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--blue), var(--yellow));
    color: var(--white);
}

.comparison-table th {
    padding: 25px 20px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.comparison-table th.feature-column {
    text-align: left;
    width: 40%;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.comparison-table tbody tr:hover {
    background: var(--light-gray);
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    font-size: 15px;
}

.comparison-table td.feature-name {
    font-weight: 600;
    color: var(--dark);
    text-align: left;
}

.comparison-table td i.fa-check {
    color: var(--yellow);
    font-size: 22px;
}

.comparison-table td i.fa-times {
    color: var(--text-gray);
    font-size: 22px;
    opacity: 0.3;
}

/* Section 3: FAQ */
.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.section-title {
    font-size: 42px;
    color: var(--blue);
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--blue);
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--yellow);
    transition: transform 0.3s;
}

.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: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.7;
}

.guarantee-card {
    background: linear-gradient(135deg, var(--blue), var(--yellow));
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.guarantee-icon i {
    font-size: 40px;
}

.guarantee-title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.guarantee-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
}

.guarantee-features {
    list-style: none;
}

.guarantee-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.guarantee-features i {
    color: var(--yellow);
    font-size: 18px;
}

.trust-badges {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.trust-badges h4 {
    text-align: center;
    color: var(--blue);
    font-size: 22px;
    margin-bottom: 25px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.badge-item {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s;
}

.badge-item:hover {
    background: var(--yellow);
    transform: scale(1.05);
}

.badge-item i {
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 10px;
    display: block;
}

.badge-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

/* Footer */
.footer {
    background: var(--blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--yellow);
}

.footer-description {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--yellow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--yellow);
    opacity: 1;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--blue);
        padding: 20px;
        gap: 15px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.popular {
        transform: scale(1);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title-center {
        font-size: 36px;
    }

    .badges-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table-wrapper {
        font-size: 13px;
    }
}