/* ============================================================
   PLANNING FOR MEN — PAGE CSS
   Matches: investment-planning design system
   Sections: Hero (dark) → Why (white) → Stages (gray-50) →
             Services (white) → Process (dark) → Calc Strip (red) →
             Testimonials (gray-50) → FAQ (white) → CTA (dark) → Related (white)
============================================================ */

/* ────────────────────────────────────────────────────────────
   HERO — DARK (matches .service-hero pattern)
──────────────────────────────────────────────────────────── */
.service-hero {
    position: relative;
    background: var(--black);
    overflow: hidden;
    padding: 100px 0 80px;
}

.sh-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 80% at 65% 50%, rgba(200, 16, 46, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 35% 40% at 5% 85%, rgba(200, 16, 46, 0.07) 0%, transparent 50%);
}

.sh-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
}

.sh-line {
    position: absolute;
    top: 0;
    right: 20%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(200, 16, 46, 0.28), transparent);
}

.sh-line2 {
    position: absolute;
    top: 0;
    right: 35%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.04), transparent);
}

.sh-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* ── Hero Left ── */
.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 16, 46, 0.15);
    border: 1px solid rgba(200, 16, 46, 0.3);
    color: #ff8090;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero__label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: heroPulse 2s infinite;
}

@keyframes heroPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.6); opacity: 0.5; }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.8vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero__title em {
    color: var(--red);
    font-style: italic;
    display: block;
}

.hero__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 460px;
    line-height: 1.85;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero stats strip */
.hero__stats {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.hero__stats > div {
    padding: 14px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    flex: 1;
    text-align: center;
}

.hero__stats > div:last-child {
    border-right: none;
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero__stat-num span,
.hero__stat-num em { color: var(--red); font-style: normal; }

.hero__stat-label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 3px;
    letter-spacing: 0.03em;
}

/* ── Hero Right (visual card) ── */
.hero__visual {
    position: relative;
}

.hero__card-main {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 2;
}

.hero__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hero__card-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero__card-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
}

.hero__card-badge-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: heroPulse 2s infinite;
}

/* mini bar chart in hero card */
.hero__mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 80px;
    margin-bottom: 20px;
}

.hmc-bar {
    flex: 1;
    background: rgba(200, 16, 46, 0.22);
    border-radius: 3px 3px 0 0;
    animation: growBar 1.2s cubic-bezier(0.4,0,0.2,1) both;
    transform-origin: bottom;
}

.hmc-bar.hi { background: var(--red); }

.hmc-bar:nth-child(1)  { animation-delay: .05s; }
.hmc-bar:nth-child(2)  { animation-delay: .10s; }
.hmc-bar:nth-child(3)  { animation-delay: .15s; }
.hmc-bar:nth-child(4)  { animation-delay: .20s; }
.hmc-bar:nth-child(5)  { animation-delay: .25s; }
.hmc-bar:nth-child(6)  { animation-delay: .30s; }
.hmc-bar:nth-child(7)  { animation-delay: .35s; }
.hmc-bar:nth-child(8)  { animation-delay: .40s; }
.hmc-bar:nth-child(9)  { animation-delay: .45s; }
.hmc-bar:nth-child(10) { animation-delay: .50s; }
.hmc-bar:nth-child(11) { animation-delay: .55s; }
.hmc-bar:nth-child(12) { animation-delay: .60s; }

@keyframes growBar {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
}

/* metric grid in hero card */
.hero__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hero__metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 13px 15px;
}

.hero__metric-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.hero__metric-val {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.hero__metric-val .up  { color: #4ade80; font-size: 12px; font-weight: 500; margin-left: 3px; }
.hero__metric-val .dn  { color: #f87171; font-size: 12px; font-weight: 500; margin-left: 3px; }
.hero__metric-val .neu { color: rgba(255,255,255,0.45); font-size: 12px; font-weight: 500; margin-left: 3px; }

/* floating cards on hero visual */
.hero__float {
    position: absolute;
    background: var(--white);
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: heroFloat 4s ease-in-out infinite;
}

.hero__float.f1 { top: -22px; right: -22px; animation-delay: 0s; }
.hero__float.f2 { bottom: -18px; left: -18px; animation-delay: 1.5s; }

@keyframes heroFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.hero__float-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.hero__float-val {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.hero__float-val span { color: var(--red); font-size: 13px; }

.hero__float-sub {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 3px;
}

.hero__float-avatars {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.hf-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
    margin-left: -8px;
}
.hf-av:first-child { margin-left: 0; }
.hf-av-more {
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 9px;
}

/* ────────────────────────────────────────────────────────────
   WHY MEN NEED A PLAN — WHITE BG
──────────────────────────────────────────────────────────── */
.why-men {
    background: var(--white);
}

.why-men-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* left: text + feature boxes */
.why-men-content {}

.why-men-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.wmf-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.wmf-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.wmf-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.wmf-card:hover::after { transform: scaleX(1); }

.wmf-icon {
    width: 44px;
    height: 44px;
    background: rgba(200, 16, 46, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    margin-bottom: 14px;
    transition: var(--transition);
}

.wmf-card:hover .wmf-icon { background: var(--red); color: white; }

.wmf-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.wmf-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.65;
}

/* right: stats card (dark) */
.why-men-visual {
    position: relative;
}

.why-bg-block {
    position: absolute;
    top: -14px; left: -14px; right: 14px; bottom: 14px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.why-chart-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--black), var(--black-2));
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.wcc-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
}

.wcc-bar-group { margin-bottom: 16px; }

.wcc-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}

.wcc-bar-labels span:last-child { color: var(--red); font-weight: 700; }

.wcc-bar-track {
    height: 8px;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
    overflow: hidden;
}

.wcc-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red));
    width: 0;
    transition: width 1.6s cubic-bezier(0.4,0,0.2,1);
}

.wcc-bar-fill.animated { width: var(--w); }

.wcc-footer {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.wcc-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.wcc-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

/* float badge on visual */
.why-badge-float {
    position: absolute;
    z-index: 2;
    background: var(--white);
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.why-badge-float.f1 { bottom: -18px; right: -18px; }
.why-badge-float.f2 { top: -18px; right: 36px; }

.wbf-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wbf-icon {
    width: 36px;
    height: 36px;
    background: rgba(200, 16, 46, 0.09);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
}

.wbf-num {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
}

.wbf-label {
    font-size: 11px;
    color: var(--gray-500);
}

/* ────────────────────────────────────────────────────────────
   LIFE STAGES — GRAY-50 BG
──────────────────────────────────────────────────────────── */
.life-stages {
    background: var(--gray-50);
}

.life-stages .section-title { color: var(--black); }
.life-stages .section-sub   { color: var(--gray-500); }

.stages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.stage-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.stage-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stage-card:hover::before { transform: scaleX(1); }

.stage-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(200, 16, 46, 0.08);
    line-height: 1;
    margin-bottom: 4px;
}

.stage-age {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(200, 16, 46, 0.07);
    border: 1px solid rgba(200, 16, 46, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.stage-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.stage-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
}

.stage-items {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.stage-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--gray-700);
}

.stage-item::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
}

/* ────────────────────────────────────────────────────────────
   SERVICES FOR MEN — WHITE BG
──────────────────────────────────────────────────────────── */
.men-services {
    background: var(--white);
}

.men-services .section-title { color: var(--black); }

/* Tab filter row (optional) */
.svc-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.svc-tab {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    border: 1.5px solid var(--gray-200);
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.svc-tab:hover,
.svc-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-200);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
}

.svc-card {
    background: var(--white);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.svc-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.svc-card:hover::before { transform: scaleX(1); }

.svc-card:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.svc-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 16, 46, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 20px;
    margin-bottom: 18px;
    transition: var(--transition);
}

.svc-card:hover .svc-icon {
    background: var(--red);
    color: white;
    transform: scale(1.05);
}

.svc-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.svc-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    opacity: 0;
    transition: opacity var(--transition);
}

.svc-card:hover .svc-link { opacity: 1; }

/* ────────────────────────────────────────────────────────────
   PROCESS — DARK BG (matches .process section)
──────────────────────────────────────────────────────────── */
.men-process {
    background: var(--black);
}

.men-process .section-title { color: var(--white); }
.men-process .section-sub   { color: rgba(255,255,255,0.5); }
.men-process .section-label { color: var(--red); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 16px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 10%; right: 10%;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.process-step {
    padding: 0 16px;
    text-align: center;
    position: relative;
}

.process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .process-num,
.process-step.active .process-num {
    background: var(--red);
    border-color: var(--red);
    color: white;
    box-shadow: 0 0 0 8px rgba(200, 16, 46, 0.14);
}

.process-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.42);
    line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────
   CALC STRIP — RED GRADIENT
──────────────────────────────────────────────────────────── */
.calc-strip {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    padding: 56px 0;
}

.calc-strip-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.calc-strip__title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.calc-strip__desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    line-height: 1.75;
}

/* ────────────────────────────────────────────────────────────
   TESTIMONIALS — GRAY-50 BG
──────────────────────────────────────────────────────────── */
.men-testimonials {
    background: var(--gray-50);
}

.men-testimonials .section-title { color: var(--black); }
.men-testimonials .section-sub   { color: var(--gray-500); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 28px;
    transition: var(--transition);
    position: relative;
}

.testi-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testi-stars {
    color: var(--red);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testi-quote {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: rgba(200, 16, 46, 0.12);
    line-height: 1;
    margin-bottom: 4px;
}

.testi-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.testi-role {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}
 
/* ────────────────────────────────────────────────────────────
   CTA BAND — DARK (matches .cta-band)
──────────────────────────────────────────────────────────── */
.men-cta {
    background: linear-gradient(135deg, var(--black) 0%, #1a0608 50%, var(--black) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(200, 16, 46, 0.18);
}

.men-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.12), transparent 65%);
    pointer-events: none;
}

.men-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.cta-title span { color: var(--red); }

.cta-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.ct-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.ct-item i { color: var(--red); }

/* ────────────────────────────────────────────────────────────
   RELATED SERVICES — WHITE BG
──────────────────────────────────────────────────────────── */
.men-related {
    background: var(--white);
}

.men-related .section-title { color: var(--black); }

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

.rel-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 24px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.rel-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.rel-card:hover::before { transform: scaleX(1); }

.rel-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.rc-icon {
    width: 44px;
    height: 44px;
    background: rgba(200, 16, 46, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    margin-bottom: 14px;
    transition: var(--transition);
}

.rel-card:hover .rc-icon { background: var(--red); color: white; }

.rel-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.rel-card p {
    font-size: 12.5px;
    color: var(--gray-500);
    line-height: 1.65;
}

.rc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--red);
    opacity: 0;
    transition: opacity var(--transition);
}

.rel-card:hover .rc-link { opacity: 1; }

/* ────────────────────────────────────────────────────────────
   RESPONSIVE — PLANNING FOR MEN
──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .sh-content         { gap: 48px; }
    .stages-grid        { grid-template-columns: repeat(2, 1fr); }
    .svc-grid           { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid  { grid-template-columns: 1fr 1fr; }
    .related-grid       { grid-template-columns: repeat(2, 1fr); }
    .process-steps      { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .process-steps::before { display: none; }
}

@media (max-width: 900px) {
    .service-hero       { padding: 80px 0 60px; }
    .sh-content         { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual       { display: none; }
    .why-men-grid       { grid-template-columns: 1fr; gap: 48px; }
    .faq-layout         { grid-template-columns: 1fr; gap: 40px; }
    .faq-intro          { position: static; }
    .calc-strip-inner   { grid-template-columns: 1fr; text-align: center; }
    .calc-strip__desc   { max-width: 100%; }
}

@media (max-width: 640px) {
    .hero__stats        { flex-direction: column; border-radius: 8px; }
    .hero__stats > div  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .hero__stats > div:last-child { border-bottom: none; }
    .hero__actions      { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .why-men-features   { grid-template-columns: 1fr; }
    .stages-grid        { grid-template-columns: 1fr; }
    .svc-grid           { grid-template-columns: 1fr; }
    .testimonials-grid  { grid-template-columns: 1fr; }
    .related-grid       { grid-template-columns: 1fr 1fr; }
    .process-steps      { grid-template-columns: 1fr 1fr; }
    .cta-actions        { flex-direction: column; align-items: center; }
    .cta-actions .btn   { width: 100%; max-width: 320px; justify-content: center; }
}