/* ── Domain Landing Page Styles ──────────────────────────────── */

/* Breadcrumbs */
.breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 0;
}
.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: #515165;
}
.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    color: #ccc;
}
.breadcrumbs a {
    color: #2A0E5C;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs [aria-current="page"] {
    color: #999;
}

/* Nav domain badge — white over the dark hero, flips to brand purple on scroll. */
.nav-domain-badge {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-left: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.main-nav.scrolled .nav-domain-badge {
    color: #2a0e5c;
    text-shadow: none;
}

/* Nav region picker */
.nav-region-picker {
    position: relative;
}
.nav-region-trigger {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.nav-region-trigger:hover {
    background: rgba(255, 255, 255, 0.25);
}
.nav-region-trigger svg {
    flex-shrink: 0;
}
.nav-region-chevron {
    transition: transform 0.2s;
}
.nav-region-trigger[aria-expanded="true"] .nav-region-chevron {
    transform: rotate(180deg);
}

/* Scrolled state */
.main-nav.scrolled .nav-region-trigger {
    color: #2A0E5C;
    background: rgba(42, 14, 92, 0.06);
    border-color: rgba(42, 14, 92, 0.15);
}
.main-nav.scrolled .nav-region-trigger:hover {
    background: rgba(42, 14, 92, 0.12);
}

.nav-region-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 180px;
    background: white;
    border: 1px solid #E0E3E9;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 0.35rem;
    z-index: 1001;
}
.nav-region-dropdown.open {
    display: block;
}
.nav-region-option {
    display: block;
    padding: 0.55rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2A0E5C;
    text-decoration: none;
    border-radius: 7px;
    transition: background 0.15s;
}
.nav-region-option:hover {
    background: #f5f0ff;
}
.nav-region-option.active {
    background: linear-gradient(135deg, #f5f0ff, #fff0f5);
    color: #FF0F6F;
    font-weight: 700;
}

/* Domain sections */
.domain-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Pain points grid */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.pain-point-card {
    background: #fff;
    border: 1px solid #E0E3E9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}
.pain-point-card:hover {
    box-shadow: 0 4px 16px rgba(42, 14, 92, 0.08);
}
.pain-point-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2A0E5C;
    margin: 0 0 0.5rem;
}
.pain-point-card p {
    font-size: 0.95rem;
    color: #515165;
    margin: 0;
    line-height: 1.5;
}

/* How it helps grid */
.how-it-helps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.help-card {
    background: linear-gradient(135deg, #f7f0ff, #fff5f9);
    border: 1px solid #e8d5f5;
    border-radius: 12px;
    padding: 1.5rem;
}
.help-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2A0E5C;
    margin: 0 0 0.5rem;
}
.help-card p {
    font-size: 0.95rem;
    color: #515165;
    margin: 0;
    line-height: 1.5;
}

/* Scenario cards grid */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.scenario-card {
    background: #fff;
    border: 1px solid #E0E3E9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.scenario-card:hover {
    box-shadow: 0 4px 20px rgba(255, 15, 111, 0.1);
    border-color: #FF0F6F;
}
.scenario-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF0F6F, #FF7A30);
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scenario-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2A0E5C;
    margin: 0 0 0.5rem;
}
.scenario-card p {
    font-size: 0.9rem;
    color: #515165;
    margin: 0;
    line-height: 1.5;
}
.scenarios-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Benefits grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.benefit-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
}
.benefit-check {
    color: #2CC98F;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.benefit-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1C1C28;
    margin: 0 0 0.25rem;
}
.benefit-card p {
    font-size: 0.9rem;
    color: #515165;
    margin: 0;
    line-height: 1.4;
}

/* Compliance callout */
.compliance-callout {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #f0f7ff;
    border: 1px solid #c8dff7;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.compliance-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.compliance-callout p {
    color: #2a4a7f;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* FAQ accordion */
.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}
.faq-item {
    border: 1px solid #E0E3E9;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-item summary {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #2A0E5C;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}
.faq-item summary::after {
    content: "+";
    font-size: 1.3rem;
    color: #FF0F6F;
    font-weight: 300;
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    content: "\2212";
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-answer {
    padding: 0 1.5rem 1rem;
}
.faq-answer p {
    color: #515165;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Region cards */
.region-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}
.region-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border: 1px solid #E0E3E9;
    border-radius: 10px;
    text-decoration: none;
    color: #2A0E5C;
    font-weight: 600;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.region-card:hover {
    border-color: #FF0F6F;
    box-shadow: 0 4px 12px rgba(255, 15, 111, 0.12);
}
.region-arrow {
    color: #FF0F6F;
}

/* ── Homepage Domain Cards ──────────────────────────────────── */

.domain-cards-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.domain-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.domain-card {
    background: #fff;
    border: 1px solid #E0E3E9;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.domain-card:hover {
    box-shadow: 0 8px 24px rgba(42, 14, 92, 0.1);
    border-color: #FF0F6F;
    transform: translateY(-2px);
}
.domain-card.domain-card-inactive {
    opacity: 0.6;
    pointer-events: none;
}
.domain-card-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2A0E5C;
}
.domain-card-description {
    font-size: 0.9rem;
    color: #515165;
    line-height: 1.4;
}
.domain-card-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    padding-top: 0.5rem;
}

/* Footer breadcrumbs */
.footer-breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer-breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
}
.footer-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.footer-breadcrumbs a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-breadcrumbs [aria-current="page"] {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer coming soon */
.footer-link-coming-soon {
    color: #999;
    display: block;
    padding: 0.2rem 0;
    font-size: 0.9rem;
}
.footer-link-coming-soon small {
    font-size: 0.75rem;
    font-style: italic;
}

/* ── Homepage Domain Showcase (primary drill-down hub) ──────── */

.domain-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
}
.domain-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.domain-showcase-card {
    background: #fff;
    border: 1px solid #E0E3E9;
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}
.domain-showcase-card:hover {
    box-shadow: 0 12px 36px rgba(42, 14, 92, 0.12);
    border-color: #FF0F6F;
    transform: translateY(-4px);
}
.domain-showcase-card:hover .domain-showcase-cta {
    color: #FF0F6F;
}

/* Icon container */
.domain-showcase-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.domain-showcase-icon svg {
    width: 36px;
    height: 36px;
}

/* Per-domain icon colours */
.domain-icon-financial-services {
    background: linear-gradient(135deg, #f0e6ff, #ffe6f0);
    color: #2A0E5C;
}
.domain-icon-interview-prep {
    background: linear-gradient(135deg, #fff0f3, #fff6ec);
    color: #d6336c;
}
.domain-icon-communication-skills {
    background: linear-gradient(135deg, #f5efff, #f0e6ff);
    color: #5A3E9C;
}
.domain-icon-education {
    background: linear-gradient(135deg, #fff4ec, #fff0f5);
    color: #e8590c;
}
.domain-icon-leadership {
    background: linear-gradient(135deg, #f0f7ff, #f0e6ff);
    color: #4a6fa5;
}
.domain-icon-sales {
    background: linear-gradient(135deg, #eafbf0, #f0f7ff);
    color: #2b8a3e;
}
.domain-icon-healthcare {
    background: linear-gradient(135deg, #f0f7ff, #e6f7ff);
    color: #1971c2;
}

/* Card body */
.domain-showcase-body {
    flex: 1;
}
.domain-showcase-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2A0E5C;
    margin: 0 0 0.35rem;
}
.domain-showcase-desc {
    font-size: 0.95rem;
    color: #515165;
    line-height: 1.55;
    margin: 0;
}

/* Region tags */
.domain-showcase-regions {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.6rem;
}
.domain-region-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #5A3E9C;
    background: rgba(42, 14, 92, 0.06);
    border: 1px solid rgba(42, 14, 92, 0.1);
    border-radius: 6px;
    padding: 0.2rem 0.55rem;
}

/* CTA link */
.domain-showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2A0E5C;
    transition: color 0.2s;
    margin-top: auto;
    padding-top: 0.25rem;
}
.domain-showcase-cta svg {
    transition: transform 0.2s;
}
.domain-showcase-card:hover .domain-showcase-cta svg {
    transform: translateX(3px);
}

/* Inactive / Coming Soon */
.domain-showcase-card-inactive {
    opacity: 0.55;
    pointer-events: none;
    border-style: dashed;
}
.domain-showcase-soon {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-top: auto;
    padding-top: 0.25rem;
}

/* Enterprise line */
.domain-showcase-enterprise {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: #515165;
}
.domain-showcase-enterprise a {
    color: #2A0E5C;
    font-weight: 600;
    text-decoration: none;
}
.domain-showcase-enterprise a:hover {
    text-decoration: underline;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 768px) {
    .nav-domain-badge {
        font-size: 1.25rem;
    }
    .nav-region-trigger {
        color: #2A0E5C;
        background: rgba(42, 14, 92, 0.06);
        border-color: rgba(42, 14, 92, 0.15);
    }
    .nav-region-dropdown {
        left: auto;
        right: 0;
    }
    .footer-breadcrumbs {
        padding: 1rem 1rem 0;
    }
    .domain-section {
        padding: 2.5rem 1rem;
    }
    .pain-points-grid,
    .how-it-helps-grid,
    .scenarios-grid,
    .benefits-grid,
    .domain-cards-grid,
    .domain-showcase-grid {
        grid-template-columns: 1fr;
    }
    .domain-showcase {
        padding: 3rem 1rem 2.5rem;
    }
    .region-cards {
        flex-direction: column;
    }
    .region-card {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .nav-domain-badge {
        font-size: 1.125rem;
    }
}

/* ──────────────────────────────────────────────────────────────
   Per-Domain Landing Page Accents
   ──────────────────────────────────────────────────────────────
   Each domain gets its own hero image and a slight accent tilt
   within the NudgeFlow brand palette (purple → magenta → coral
   → orange). The base palette never changes — only the hero
   background and the secondary accent swatches shift to match
   the target audience.
   ────────────────────────────────────────────────────────────── */

/* ── Education: warm, human, hopeful (purple → coral → amber) ── */
body.lp-education .hero-background {
    background-image: url('../images/domains/education/hero-education.jpg');
}
body.lp-education .hero-background-overlay {
    background: linear-gradient(135deg,
        rgba(50, 13, 100, 0.88) 0%,
        rgba(50, 13, 100, 0.7) 35%,
        rgba(185, 38, 106, 0.55) 70%,
        rgba(255, 138, 70, 0.45) 100%);
}
body.lp-education .section-badge,
body.lp-education .hero-badge {
    background: linear-gradient(135deg, rgba(255, 138, 70, 0.15), rgba(255, 74, 91, 0.12));
    border-color: rgba(255, 138, 70, 0.35);
}
body.lp-education .feature-card-primary .feature-image-overlay {
    background: linear-gradient(180deg, rgba(50, 13, 100, 0) 45%, rgba(255, 138, 70, 0.92) 100%);
}
body.lp-education .help-card {
    background: linear-gradient(135deg, #fff4ec, #fff0f5);
    border-color: #ffd9b8;
}
body.lp-education .scenario-icon {
    background: linear-gradient(135deg, #FF8A46, #FF4A5B);
}

/* ── Interview Prep: aspirational, energetic (coral → magenta) ── */
body.lp-interview-prep .hero-background {
    background-image: url('../images/domains/interview-prep/hero-interview-prep.jpg');
}
body.lp-interview-prep .hero-background-overlay {
    background: linear-gradient(135deg,
        rgba(42, 14, 92, 0.88) 0%,
        rgba(185, 38, 106, 0.72) 45%,
        rgba(255, 15, 111, 0.55) 78%,
        rgba(255, 122, 48, 0.42) 100%);
}

/* Hero badge: richer pill with an energy-gradient dot in front of the text. */
body.lp-interview-prep .hero-badge {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 12px rgba(42, 14, 92, 0.18);
}

/* Gradient-fill the hero accent so it actually sings on the dark overlay. */
body.lp-interview-prep .hero-title {
    letter-spacing: -0.025em;
}
body.lp-interview-prep .hero-title-accent {
    background: linear-gradient(135deg, #FF0F6F 0%, #FF7A30 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    font-weight: 800;
}

/* Stat numbers echo the gradient. */
body.lp-interview-prep .stat-number {
    background: linear-gradient(135deg, #FF0F6F, #FF7A30);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    font-weight: 800;
}

/* Hero primary CTA switches from flat coral to the brand energy gradient. */
body.lp-interview-prep .hero-cta .btn-primary,
body.lp-interview-prep .scenarios-cta .btn-primary,
body.lp-interview-prep .cta-section .btn-primary {
    background: linear-gradient(135deg, #FF0F6F 0%, #FF7A30 100%);
    box-shadow: 0 8px 24px rgba(255, 15, 111, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
body.lp-interview-prep .hero-cta .btn-primary:hover,
body.lp-interview-prep .scenarios-cta .btn-primary:hover,
body.lp-interview-prep .cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #FF0F6F 0%, #FF7A30 100%);
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 15, 111, 0.36);
}

/* Section eyebrow pill — tinted to the interview-prep accent. */
body.lp-interview-prep .section-badge {
    background: linear-gradient(135deg, rgba(255, 15, 111, 0.10), rgba(255, 122, 48, 0.08));
    border: 1px solid rgba(255, 15, 111, 0.25);
    color: #B9266A;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Feature card polish. */
body.lp-interview-prep .feature-card {
    border-radius: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
body.lp-interview-prep .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(42, 14, 92, 0.18);
}
body.lp-interview-prep .feature-card-primary .feature-image-overlay {
    background: linear-gradient(180deg, rgba(42, 14, 92, 0) 40%, rgba(255, 15, 111, 0.92) 100%);
}

/* Step cards — stronger purple-tinted lift. */
body.lp-interview-prep .step-card {
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
body.lp-interview-prep .step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(42, 14, 92, 0.14);
    border-color: rgba(255, 15, 111, 0.25);
}
body.lp-interview-prep .step-number {
    background: linear-gradient(135deg, #FF0F6F, #FF7A30);
    color: #fff;
    box-shadow: 0 6px 16px rgba(255, 15, 111, 0.32);
}
body.lp-interview-prep .step-arrow {
    color: #B9266A;
    opacity: 0.7;
}

/* How-it-helps cards — subtle energy wash. */
body.lp-interview-prep .help-card {
    background: linear-gradient(135deg, #fff0f5, #fff4ec);
    border-color: rgba(255, 15, 111, 0.15);
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.lp-interview-prep .help-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 15, 111, 0.12);
}

/* Pain-point cards — cooler, indigo-led on white for contrast against help cards. */
body.lp-interview-prep .pain-point-card {
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
body.lp-interview-prep .pain-point-card:hover {
    transform: translateY(-2px);
    border-color: rgba(42, 14, 92, 0.2);
    box-shadow: 0 12px 28px rgba(42, 14, 92, 0.1);
}

/* Sample-scenario cards — picks up the energy gradient on the icon tile. */
body.lp-interview-prep .scenario-card {
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
body.lp-interview-prep .scenario-card:hover {
    transform: translateY(-3px);
    border-color: #FF0F6F;
    box-shadow: 0 12px 28px rgba(255, 15, 111, 0.16);
}
body.lp-interview-prep .scenario-icon {
    background: linear-gradient(135deg, #FF0F6F, #FF7A30);
    box-shadow: 0 6px 16px rgba(255, 15, 111, 0.28);
    border-radius: 12px;
}

/* Use-case cards — warmer hover. */
body.lp-interview-prep .use-case-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body.lp-interview-prep .use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(42, 14, 92, 0.16);
}

/* Rich benefits — stat numbers echo the gradient. */
body.lp-interview-prep .benefit-stat-card {
    border-radius: 16px;
}
body.lp-interview-prep .benefit-stat-number {
    background: linear-gradient(135deg, #FF0F6F, #FF7A30);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
body.lp-interview-prep .benefit-icon {
    color: #FF0F6F;
}

/* Closing CTA — purple-to-magenta background with a pink button lift. */
body.lp-interview-prep .cta-section {
    background: linear-gradient(135deg, #2A0E5C 0%, #5A3E9C 55%, #B9266A 100%);
}
body.lp-interview-prep .cta-title {
    letter-spacing: -0.01em;
}

/* Wider walkthrough video — match the 1200px content gutter instead of
   the default 960px the other domain landings use. */
body.lp-interview-prep .video-container {
    max-width: 1200px;
}


/* Drop the dark letterbox backdrop on the wrapper — the bundled walkthrough
   renders its own brand-tinted surface, so showing a near-black backdrop
   behind it looks mismatched. Keep a soft lift via a purple-tinted shadow. */
body.lp-interview-prep .video-wrapper {
    background: transparent;
    box-shadow: 0 18px 40px rgba(42, 14, 92, 0.18);
}

/* FAQ — the + / − toggle uses the accent pink. */
body.lp-interview-prep .faq-item {
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.lp-interview-prep .faq-item:hover {
    border-color: rgba(255, 15, 111, 0.25);
    box-shadow: 0 4px 12px rgba(42, 14, 92, 0.06);
}
body.lp-interview-prep .faq-item summary::after {
    color: #FF0F6F;
}

/* ── Communication Skills: calm, professional (deep purple → magenta) ── */
body.lp-communication-skills .hero-background {
    background-image: url('../images/domains/communication-skills/hero-communication-skills.jpg');
}
body.lp-communication-skills .hero-background-overlay {
    background: linear-gradient(135deg,
        rgba(50, 13, 100, 0.9) 0%,
        rgba(50, 13, 100, 0.75) 40%,
        rgba(185, 38, 106, 0.55) 75%,
        rgba(255, 74, 91, 0.4) 100%);
}
body.lp-communication-skills .section-badge,
body.lp-communication-skills .hero-badge {
    background: linear-gradient(135deg, rgba(50, 13, 100, 0.12), rgba(185, 38, 106, 0.14));
    border-color: rgba(185, 38, 106, 0.35);
}
body.lp-communication-skills .feature-card-primary .feature-image-overlay {
    background: linear-gradient(180deg, rgba(50, 13, 100, 0) 45%, rgba(50, 13, 100, 0.92) 100%);
}
body.lp-communication-skills .help-card {
    background: linear-gradient(135deg, #f5efff, #fff0f7);
    border-color: #e1cdf5;
}
body.lp-communication-skills .scenario-icon {
    background: linear-gradient(135deg, #320D64, #B9266A);
}
