body {
    padding-top: var(--header-height);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-padding);
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.card-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.card-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 400;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
    font-family: var(--font-body);
    text-align: center;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.features {
    list-style: none;
    margin: 2rem 0;
}

.feature-item {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item::before {
    content: "✓";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.85rem;
}

.btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    margin-top: 2rem;
}

.btn:hover {
    background: #cf6c1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 20px rgba(15, 75, 128, 0.3);
}

.additional-info {
    background: var(--bg-subtle);
    max-width: 100%;
    margin-top: 4rem;
}

.additional-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.info-item h3 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.info-item ul {
    list-style: none;
    padding: 0;
}

.info-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
}

.contact-cta {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    width: auto;
    margin-top: 0;
}

.card-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.card-note p {
    margin: 0;
    line-height: 1.6;
}

.card-note.special-price {
    background: rgba(230, 126, 34, 0.1);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: none;
    font-style: normal;
}

.card-note.special-price p {
    color: var(--accent-color);
}

.contact-section {
    background: var(--bg-subtle);
    max-width: 100%;
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .container {
        padding: 4rem 1.5rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-cta h2 {
        font-size: 2rem;
    }
}
