:root {
    color-scheme: dark;
}

section {
    padding: 90px 0;
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.75);
    max-width: 720px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(15, 23, 42, 0.85);
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-soft);
}

.feature-card h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

.feature-card span {
    font-size: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: rgba(11, 16, 34, 0.95);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 146, 38, 0.15);
    border: 1px solid rgba(255, 146, 38, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-card h3 {
    font-size: 1.4rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.package-card ul {
    display: grid;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
}

.package-card ul li::before {
    content: '•';
    margin-right: 0.5rem;
    color: var(--color-secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-name {
    margin-top: 1.2rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-card,
.map-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card ul {
    display: grid;
    gap: 0.8rem;
}

.contact-card li strong {
    display: block;
    color: var(--color-secondary);
}

.social-links {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.social-chip {
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.cta-final {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 146, 38, 0.15), rgba(255, 255, 255, 0));
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.cta-final h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-btn-group {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
    section {
        padding: 60px 0;
    }

    .cta-btn-group {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.9rem;
    }
}
