/* --- SERVICES HERO --- */
.services-hero {
    background-color: var(--bg-white);
}
.hero-sub {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* --- PRICING GRID --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center; /* Align cards vertically */
}

.price-card {
    background: white;
    border: var(--border-thick);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    background-clip: padding-box;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hard);
}

/* Featured Plan Styling */
.featured {
    border-color: var(--brand-black);
    box-shadow: 8px 8px 0px var(--brand-cyan); /* Cyan Shadow for Pop */
    transform: scale(1.05); /* Slightly larger */
    z-index: 2;
}

.featured:hover {
    box-shadow: 10px 10px 0px var(--brand-red); /* Changes to Red on Hover */
    transform: scale(1.05) translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    border: 2px solid var(--brand-black);
}

.card-header h3 { margin-bottom: 0.5rem; }
.card-header p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.5rem; }

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-black);
    margin-bottom: 1.5rem;
    font-family: var(--font-head);
}
.currency { font-size: 1.5rem; vertical-align: super; }

.features {
    text-align: left;
    margin-bottom: 2rem;
    list-style: none;
}

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
}
.features li strong { color: var(--brand-black); }

/* --- COMPARISON TABLE --- */
.table-responsive {
    overflow-x: auto;
    border: var(--border-thick);
    border-radius: var(--radius);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.compare-table th, .compare-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.compare-table th {
    background: var(--brand-black);
    color: white;
    font-family: var(--font-head);
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    background: #f9f9f9;
}

.highlight-col {
    background-color: #e0f7fa !important; /* Light Cyan Tint */
    border-left: 2px solid var(--brand-black);
    border-right: 2px solid var(--brand-black);
}

/* --- FAQ SECTION --- */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.faq-item[open] {
    border: var(--border-thick);
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.faq-item summary {
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 1.1rem;
    list-style: none; /* Hides default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-item[open] summary::after { content: '-'; }

.faq-item p {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* --- DARK FORM (CTA) --- */
.contact-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-benefits li {
    list-style: none;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--brand-cyan);
}

.dark-form input, .dark-form textarea {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.dark-form input:focus, .dark-form textarea:focus {
    background: rgba(255,255,255,0.2);
    border-color: var(--brand-cyan);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .featured { transform: scale(1); }
    .featured:hover { transform: translateY(-5px); }
    .contact-block { grid-template-columns: 1fr; }
}