/* ── Page Hero ── */
.couples-hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(61, 90, 108, 0.78), rgba(61, 90, 108, 0.78)),
        url('/images/screenshot-2025-01-03-at-6.58.11-pm.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.couples-hero h1,
.couples-hero h2,
.couples-hero p {
    color: white;
}

.couples-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.couples-hero h2 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
    opacity: 0.85;
}

.couples-hero h2:after {
    display: none;
}

.couples-hero .hero-byline {
    color: rgba(255, 255, 255, 0.75);
}

.couples-hero .primary-btn {
    background-color: #c5705a;
    color: white;
}

.couples-hero .primary-btn:hover {
    background-color: #b05e49;
}

.couples-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.couples-hero .hero-byline {
    font-size: 0.85rem;
    max-width: none;
    margin: 0 0 0.75rem;
    opacity: 1;
}

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

/* ── Intro ── */
.couples-intro {
    background: #fff;
}

.couples-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.couples-intro-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* ── EFT Explainer ── */
.eft-section {
    background: var(--light-color);
}

.eft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.eft-card {
    background: #fff;
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.eft-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.13);
}

.eft-card .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.eft-card .icon-circle i {
    font-size: 1.6rem;
    color: var(--dark-color);
}

.eft-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.eft-card p {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* ── Issues ── */
.issues-section {
    background: #fff;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.issue-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.issue-item:hover {
    border-color: var(--secondary-color);
    background: var(--light-color);
}

.issue-item i {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.issue-item h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.issue-item p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* ── Process / What to Expect ── */
.process-section {
    background: var(--light-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: steps;
}

.process-step {
    background: #fff;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--box-shadow);
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* ── FAQ ── */
.faq-section {
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

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

.faq-question i {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--primary-color);
}

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

.faq-answer {
    display: none;
    padding: 0 0 22px;
    color: var(--gray-color);
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-banner h2,
.cta-banner p {
    color: white;
}

.cta-banner h2:after {
    background-color: rgba(255, 255, 255, 0.5);
}

.cta-banner p {
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.cta-banner .btn-white {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-banner .btn-white:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .couples-intro-grid {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .couples-hero h1 {
        font-size: 2rem;
    }

    .eft-grid,
    .issues-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}
