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

.sh-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 62% 44%, rgba(200, 16, 46, .17) 0%, transparent 62%),
        radial-gradient(ellipse 38% 40% at 4% 82%, rgba(200, 16, 46, .07) 0%, transparent 55%),
        radial-gradient(ellipse 28% 28% at 94% 12%, rgba(200, 16, 46, .05) 0%, transparent 50%)
}

.sh-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .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, .22), transparent)
}

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

/* Decorative female symbol */
.sh-symbol {
    position: absolute;
    right: 8%;
    top: 10%;
    width: 320px;
    height: 320px;
    opacity: .04;
    pointer-events: none
}

.sh-symbol svg {
    width: 100%;
    height: 100%
}

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

.sh-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 16, 46, .15);
    border: 1px solid rgba(200, 16, 46, .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
}

.sh-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 18px
}

.sh-title em {
    color: var(--red);
    font-style: normal;
    display: block
}

.sh-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .6);
    max-width: 460px;
    line-height: 1.85;
    margin-bottom: 36px
}

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

.sh-quick-stats {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    overflow: hidden
}

.sh-qs {
    padding: 14px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .08);
    flex: 1
}

.sh-qs:last-child {
    border-right: none
}

.sh-qs-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: white
}

.sh-qs-num span {
    color: var(--red)
}

.sh-qs-label {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .4);
    margin-top: 2px
}

/* Hero card — Women's Financial Dashboard */
.sh-right {
    position: relative
}

.sh-card {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .45)
}

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

.sh-card-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5)
}

.sh-card-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(200, 16, 46, .15);
    color: #ff8090;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px
}

.sh-card-badge span {
    width: 6px;
    height: 6px;
    background: #ff8090;
    border-radius: 50%;
    animation: pulseDot 2s infinite
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.5);
        opacity: .5
    }
}

/* Profile row */
.profile-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .04);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 18px
}

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

.profile-info .p-name {
    font-size: 14px;
    font-weight: 700;
    color: white
}

.profile-info .p-role {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .45);
    margin-top: 2px
}

.profile-badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    background: rgba(74, 222, 128, .12);
    color: #4ade80;
    padding: 4px 10px;
    border-radius: 6px
}

/* Independence meter */
.indep-meter {
    margin-bottom: 18px
}

.im-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between
}

.im-label span {
    font-weight: 700;
    color: white
}

.im-bar-bg {
    height: 10px;
    background: rgba(255, 255, 255, .08);
    border-radius: 5px;
    overflow: hidden
}

.im-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), #ff6b6b);
    border-radius: 5px;
    animation: barGrow 1.6s var(--ease) both
}

@keyframes barGrow {
    from {
        width: 0 !important
    }

    to {}
}

.sh-divider {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin: 14px 0
}

.sh-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.sh-metric {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
    padding: 12px 14px
}

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

.sh-metric-val {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white
}

.sh-metric-val .up {
    color: #4ade80;
    font-size: 11px;
    font-weight: 500;
    margin-left: 3px
}

.sh-metric-val .tag {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    font-weight: 400;
    margin-left: 2px
}

.sh-float {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    z-index: 3
}

.sh-float.f1 {
    top: -20px;
    right: -20px
}

.sh-float.f2 {
    bottom: -18px;
    left: -20px
}

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

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

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.sh-tag {
    animation: fadeInUp .55s ease both
}

.sh-title {
    animation: fadeInUp .65s .08s ease both
}

.sh-desc {
    animation: fadeInUp .65s .16s ease both
}

.sh-actions {
    animation: fadeInUp .65s .24s ease both
}

.sh-quick-stats {
    animation: fadeInUp .65s .32s ease both
}

/* ============================================================
   WHY WOMEN NEED DEDICATED PLANNING
============================================================ */
.why-women {
    background: var(--gray-50)
}

.ww-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center
}

.ww-body {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.9
}

.ww-body p {
    margin-bottom: 18px
}

.ww-body strong {
    color: var(--black);
    font-weight: 600
}

.ww-highlight {
    border-left: 3px solid var(--red);
    padding: 16px 20px;
    background: rgba(200, 16, 46, .04);
    border-radius: 0 6px 6px 0;
    margin: 24px 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--black-2);
    line-height: 1.7
}

/* Stats infographic */
.women-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.ws-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: var(--transition)
}

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

.ws-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px
}

.ws-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px
}

.ws-sub {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5
}

.ws-card.dark {
    background: var(--black);
    border-color: var(--black)
}

.ws-card.dark .ws-num {
    color: white
}

.ws-card.dark .ws-label {
    color: rgba(255, 255, 255, .8)
}

.ws-card.dark .ws-sub {
    color: rgba(255, 255, 255, .4)
}

/* ============================================================
   THE 7 GAPS WOMEN FACE
============================================================ */
.seven-gaps {
    background: var(--white)
}

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

.gap-card {
    background: white;
    padding: 28px 22px;
    transition: var(--transition);
    cursor: default;
    position: relative
}

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

.gap-card:hover::after {
    transform: scaleX(1)
}

.gap-card:hover {
    background: var(--gray-50);
    z-index: 1;
    box-shadow: var(--shadow-md)
}

.gap-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 10px;
    transition: color .3s
}

.gap-card:hover .gap-num {
    color: rgba(200, 16, 46, .15)
}

.gap-icon {
    font-size: 24px;
    margin-bottom: 10px
}

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

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

.gap-stat {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    background: rgba(200, 16, 46, .08);
    padding: 3px 10px;
    border-radius: 100px
}

/* ============================================================
   LIFE STAGES — WOMEN
============================================================ */
.women-stages {
    background: var(--gray-50)
}

.ws-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative
}

.ws-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-200);
    z-index: 0
}

.wst-card {
    position: relative;
    z-index: 1;
    padding: 0 14px;
    text-align: center
}

.wst-dot {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--gray-200);
    transition: var(--transition);
    cursor: default;
    background: white
}

.wst-card:hover .wst-dot {
    box-shadow: 0 0 0 3px var(--red), 0 8px 24px rgba(200, 16, 46, .2);
    transform: scale(1.08)
}

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

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

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

.wst-priorities {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px
}

.wst-priority {
    font-size: 11px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center
}

.wst-priority i {
    color: var(--red);
    font-size: 9px
}

/* ============================================================
   CAREER BREAK PLANNING
============================================================ */
.career-break {
    background: var(--white)
}

.cb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.cb-visual {
    background: var(--black);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    overflow: hidden
}

.cb-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 65% 30%, rgba(200, 16, 46, .18), transparent 65%)
}

.cb-vis-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 20px;
    position: relative;
    z-index: 1
}

.cb-timeline-vis {
    position: relative;
    z-index: 1
}

.cbtv-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
}

.cbtv-label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .6);
    width: 110px;
    flex-shrink: 0;
    font-weight: 600
}

.cbtv-bar-bg {
    flex: 1;
    height: 22px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    overflow: hidden;
    position: relative
}

.cbtv-bar {
    height: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    animation: barGrow 1.4s var(--ease) both
}

.cbtv-val {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .7);
    width: 60px;
    text-align: right;
    font-weight: 700;
    flex-shrink: 0
}

.cb-insight {
    margin-top: 18px;
    background: rgba(200, 16, 46, .12);
    border: 1px solid rgba(200, 16, 46, .2);
    border-radius: 8px;
    padding: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    position: relative;
    z-index: 1
}

.cb-insight strong {
    color: white
}

.cb-points {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.cbp-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: var(--transition);
    cursor: default
}

.cbp-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-sm);
    background: var(--gray-50)
}

.cbp-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    background: rgba(200, 16, 46, .08);
    color: var(--red);
    transition: var(--transition)
}

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

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

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

/* ============================================================
   LONGEVITY PLANNING
============================================================ */
.longevity {
    background: var(--gray-50)
}

.longevity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.longevity-body {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.9
}

.longevity-body p {
    margin-bottom: 16px
}

.longevity-body strong {
    color: var(--black);
    font-weight: 600
}

.longevity-highlight {
    border-left: 3px solid var(--red);
    padding: 16px 20px;
    background: rgba(200, 16, 46, .04);
    border-radius: 0 6px 6px 0;
    margin: 20px 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--black-2);
    line-height: 1.7
}

/* Lifespan comparison chart */
.lifespan-card {
    background: var(--black);
    border-radius: 12px;
    padding: 28px;
    overflow: hidden;
    position: relative
}

.lifespan-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 20%, rgba(200, 16, 46, .15), transparent 65%)
}

.lc-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 22px;
    position: relative;
    z-index: 1
}

.lifespan-rows {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px
}

.lr-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.lr-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    width: 80px;
    flex-shrink: 0
}

.lr-bar-bg {
    flex: 1;
    height: 28px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    overflow: hidden
}

.lr-bar {
    height: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    animation: barGrow 1.4s var(--ease) both;
    white-space: nowrap
}

.lr-extra {
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    width: 70px;
    text-align: right
}

.lc-implication {
    background: rgba(200, 16, 46, .12);
    border: 1px solid rgba(200, 16, 46, .2);
    border-radius: 8px;
    padding: 14px;
    position: relative;
    z-index: 1
}

.lc-implication p {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7
}

.lc-implication strong {
    color: white
}

.longevity-actions {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.la-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: var(--transition)
}

.la-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-sm)
}

.la-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition)
}

.la-card:hover .la-icon {
    transform: scale(1.1)
}

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

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

/* ============================================================
   FI TRACKER — INTERACTIVE
============================================================ */
.fi-tracker {
    background: var(--white)
}

.fi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.fi-form {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px
}

.fi-form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px
}

.fi-form-sub {
    font-size: 13.5px;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.7
}

.fi-field {
    margin-bottom: 20px
}

.fi-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--black-2);
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.fi-label span {
    font-size: 14px;
    font-weight: 700;
    color: var(--red)
}

.range-input {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: var(--gray-200);
    outline: none;
    cursor: pointer
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(200, 16, 46, .3);
    transition: transform .15s
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.2)
}

.fi-result {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    position: sticky;
    top: calc(var(--nav-h) + 24px)
}

.fir-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px
}

.fir-big {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    margin-bottom: 4px
}

.fir-big span {
    color: var(--red)
}

.fir-sub {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 24px
}

.fir-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px
}

.firbr-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid var(--gray-100)
}

.firbr-label {
    font-size: 13px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px
}

.firbr-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0
}

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

.fir-gauge {
    width: 120px;
    height: 60px;
    overflow: hidden;
    margin: 0 auto 16px;
    position: relative
}

.fir-gauge svg {
    width: 100%;
    height: 120px
}

.fir-gauge-label {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black)
}

.fir-gauge-sub {
    text-align: center;
    font-size: 11px;
    color: var(--gray-500)
}

/* ============================================================
   WOMEN-SPECIFIC INSTRUMENTS
============================================================ */
.women-instruments {
    background: var(--gray-50)
}

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

.wi-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition)
}

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

.wi-header {
    padding: 20px 24px;
    position: relative;
    overflow: hidden
}

.wi-header::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12)
}

.wi-icon {
    font-size: 24px;
    position: relative;
    z-index: 1;
    margin-bottom: 5px
}

.wi-name {
    font-size: 15px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1
}

.wi-tag {
    font-size: 11px;
    color: rgba(255, 255, 255, .75);
    position: relative;
    z-index: 1;
    margin-top: 2px
}

.wi-body {
    padding: 18px 22px
}

.wi-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 12px
}

.wi-rows {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.wi-row {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    padding: 7px 0;
    border-bottom: 1px solid var(--gray-100)
}

.wi-row:last-child {
    border-bottom: none
}

.wi-row-label {
    color: var(--gray-500)
}

.wi-row-val {
    font-weight: 700;
    color: var(--black)
}

.wi-row-val.green {
    color: #15803d
}

.wi-row-val.red {
    color: var(--red)
}

.wi-footer {
    padding: 12px 22px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    font-size: 12px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px
}

.wi-footer i {
    color: var(--red)
}

/* ============================================================
   WOMEN'S SERVICES GRID
============================================================ */
.women-services {
    background: var(--white)
}

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

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

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

.wserv-card:hover::after {
    transform: scaleX(1)
}

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

.wserv-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    transition: var(--transition)
}

.wserv-card:hover .wserv-icon {
    transform: scale(1.08)
}

.wserv-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--black)
}

.wserv-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 12px
}

.wserv-list {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.wserv-list li {
    font-size: 12.5px;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 7px
}

.wserv-list li i {
    color: var(--red);
    font-size: 10px;
    margin-top: 3px;
    flex-shrink: 0
}

/* ============================================================
   PROCESS
============================================================ */
.women-process {
    background: var(--black)
}

.wp-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative
}

.wp-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    pointer-events: none
}

.wp-step {
    padding: 0 14px;
    text-align: center
}

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

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

.wp-step h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 8px
}

.wp-step p {
    font-size: 12px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.65
}

/* ============================================================
   WHO IS IT FOR
============================================================ */
.for-whom {
    background: var(--gray-50)
}

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

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

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

.fw-card:hover::after {
    transform: scaleX(1)
}

.fw-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px)
}

.fw-emoji {
    font-size: 36px;
    margin-bottom: 14px
}

.fw-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black)
}

.fw-card p {
    font-size: 13.5px;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 14px
}

.fw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.fw-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    background: rgba(200, 16, 46, .07);
    color: var(--red);
    padding: 3px 10px;
    border-radius: 100px
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.women-testimonials {
    background: var(--white)
}

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

.wt-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 28px;
    transition: var(--transition)
}

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

.wt-quote-icon {
    font-size: 28px;
    color: var(--red);
    opacity: .4;
    margin-bottom: 12px
}

.wt-stars {
    color: var(--red);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 14px
}

.wt-text {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 18px
}

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

.wt-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: 16px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    font-family: var(--font-display)
}

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

.wt-role {
    font-size: 12px;
    color: var(--gray-500)
}