/* ReproHelix Labs — High-fidelity infographic sections (~95% match) */

:root {
    --info-navy: #0d3b66;
    --info-navy-dark: #002d72;
    --info-teal: #1a526a;
    --info-blue: #1e5f8a;
    --info-cyan: #22d3ee;
    --info-green: #76b82a;
    --info-green-bright: #84cc16;
    --info-sky: #e8f4fc;
    --info-sky-deep: #d0e8f5;
}

.info-section {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

/* ─── Shared decorations ─── */
.info-dna-left,
.info-dna-right {
    position: absolute;
    width: 120px;
    height: 280px;
    opacity: 0.12;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 120'%3E%3Cpath d='M10 0 Q20 15 30 30 Q20 45 10 60 Q20 75 30 90 Q20 105 10 120' fill='none' stroke='%231a526a' stroke-width='2'/%3E%3Cpath d='M30 0 Q20 15 10 30 Q20 45 30 60 Q20 75 10 90 Q20 105 30 120' fill='none' stroke='%2376b82a' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}

.info-dna-left { left: -20px; top: 10%; }
.info-dna-right { right: -20px; bottom: 10%; transform: scaleX(-1); }

.info-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0.75rem 0;
}

.info-divider::before,
.info-divider::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1a526a, transparent);
}

.info-divider-dot {
    width: 6px;
    height: 6px;
    background: #76b82a;
    border-radius: 50%;
}

.info-gradient-text {
    background: linear-gradient(90deg, #0d3b66, #1a526a 50%, #76b82a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ─── BUILDING FUTURE ─── */
.info-building {
    padding: 2.5rem 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #eef6fc 45%, #dceef8 100%);
    border: 1px solid #c5dff0;
}

.info-building-header {
    text-align: center;
    margin-bottom: 2rem;
}

.info-building-header p {
    font-size: 0.85rem;
    color: var(--info-navy);
    margin-bottom: 0.25rem;
}

.info-building-header h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.15;
}

.info-hex-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    max-width: 520px;
    margin: 0 auto 2rem;
}

.info-hex-cell {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-hex-shape {
    position: absolute;
    inset: 4%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: #fff;
    border: 2px solid #76b82a;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.info-hex-cell:hover .info-hex-shape {
    transform: scale(1.04);
}

.info-hex-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.85;
}

.info-hex-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,59,102,0.75) 0%, rgba(13,59,102,0.35) 40%, transparent 70%);
}

.info-hex-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0.5rem;
    width: 100%;
}

.info-hex-badge {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin: 0 auto 0.25rem;
    font-size: 0.75rem;
    color: #fff;
    background: rgba(13, 59, 102, 0.9);
    border-radius: 50%;
}

.info-hex-title {
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.info-hex-center-wrap .info-hex-shape {
    background: #fff;
    border: 2px solid #c5dff0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-hex-center-wrap img {
    width: 55%;
    height: auto;
    object-fit: contain;
}

.info-hex-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
}

.info-values-glass {
    display: grid;
    gap: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 223, 240, 0.8);
    border-radius: 8px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .info-values-glass { grid-template-columns: repeat(4, 1fr); }
}

.info-values-glass .info-value {
    padding: 1rem 0.85rem;
    border-right: 1px solid #e2e8f0;
}

.info-values-glass .info-value:last-child { border-right: none; }

/* ─── LEARN EXPLORE ─── */
.info-learn {
    padding: 1.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 50%, #e8f2fa 100%);
    border: 1px solid #d4e8f5;
}

.info-learn-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .info-learn-grid { grid-template-columns: 38% 1fr; align-items: stretch; }
}

.info-learn-brand h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--info-navy);
    margin-bottom: 0.5rem;
}

.info-learn-tagline {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.info-learn-tagline .t-learn,
.info-learn-tagline .t-explore { color: var(--info-navy); }
.info-learn-tagline .t-innovate { color: var(--info-green); }

.info-learn-mission {
    font-size: 0.72rem;
    color: #4a6fa5;
    margin-bottom: 1.25rem;
}

.info-learn-visual {
    position: relative;
    height: 180px;
    margin-bottom: 1.25rem;
    background: radial-gradient(ellipse at 50% 60%, rgba(34, 211, 238, 0.2), transparent 65%),
                linear-gradient(180deg, #f8fbff, #e8f4fc);
    border-radius: 8px;
    border: 1px solid #d4e8f5;
    overflow: hidden;
}

.info-learn-visual::before {
    content: '🔬';
    position: absolute;
    left: 12%;
    bottom: 20%;
    font-size: 3rem;
    filter: drop-shadow(0 4px 12px rgba(30,95,138,0.3));
}

.info-learn-visual::after {
    content: '';
    position: absolute;
    right: 20%;
    top: 25%;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(34,211,238,0.6), rgba(30,95,138,0.2));
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(34,211,238,0.4);
}

.info-learn-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 480px) {
    .info-learn-pillars { grid-template-columns: repeat(4, 1fr); }
}

.info-learn-pillar {
    text-align: center;
    padding: 0.5rem 0.25rem;
}

.info-learn-pillar-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: 0 auto 0.35rem;
    font-size: 0.9rem;
    color: var(--info-navy);
    border: 2px solid var(--info-navy);
    border-radius: 50%;
}

.info-learn-pillar strong {
    display: block;
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--info-navy);
    letter-spacing: 0.05em;
}

.info-learn-pillar span {
    font-size: 0.5rem;
    color: #64748b;
    line-height: 1.3;
}

.info-path-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-path-row {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr 72px;
    gap: 0.65rem;
    align-items: center;
    padding: 0.65rem 0.75rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(13, 59, 102, 0.08);
    border: 1px solid #e8f2f8;
    transition: box-shadow 0.25s ease;
}

.info-path-row:hover {
    box-shadow: 0 6px 20px rgba(13, 59, 102, 0.12);
}

.info-path-row::after {
    content: '↓';
    position: absolute;
    left: 26px;
    bottom: -0.55rem;
    font-size: 0.65rem;
    color: #94a3b8;
    z-index: 2;
}

.info-path-row:last-child::after { display: none; }

.info-path-icon-circle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-path-row:nth-child(1) .info-path-icon-circle,
.info-path-row:nth-child(2) .info-path-icon-circle { background: linear-gradient(135deg, #1e5f8a, #2563eb); }
.info-path-row:nth-child(3) .info-path-icon-circle { background: linear-gradient(135deg, #0891b2, #2ec4b6); }
.info-path-row:nth-child(4) .info-path-icon-circle,
.info-path-row:nth-child(5) .info-path-icon-circle { background: linear-gradient(135deg, #5a9420, #76b82a); }

.info-path-text strong {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--info-navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.info-path-text span {
    font-size: 0.6rem;
    color: #64748b;
}

.info-path-photo {
    width: 72px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.info-path-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-learn-footer {
    margin-top: 1.25rem;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, #0d3b66, #1a526a);
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

.info-learn-footer .hl { color: #a8e063; }

/* ─── RESEARCH AREAS ─── */
.info-research {
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, #f8fbff 0%, #eef6fc 50%, #e4f0f8 100%);
    border: 1px solid #c5dff0;
}

.info-research h3 {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--info-navy);
    margin-bottom: 0.5rem;
}

.info-research-underline {
    width: 60px;
    height: 3px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(90deg, #1e5f8a, #76b82a);
    border-radius: 2px;
}

.info-research-radial {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 1.75rem;
    aspect-ratio: 1;
    min-height: 320px;
}

@media (max-width: 767px) {
    .info-research-radial {
        aspect-ratio: auto;
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
        max-width: none;
    }

    .info-research-radial .info-research-spokes,
    .info-research-radial .info-research-center {
        display: none;
    }

    .info-research-node {
        position: static;
        width: 100%;
        transform: none;
    }

    .info-research-node .info-hex-shape {
        position: relative;
        aspect-ratio: 1.2;
    }
}

.info-research-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 3px solid transparent;
    border-radius: 50%;
    background-clip: padding-box;
    box-shadow: 0 0 0 3px #1e5f8a, 0 4px 20px rgba(13,59,102,0.15);
    z-index: 5;
}

.info-research-center::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(180deg, #1e5f8a, #76b82a);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.info-research-center-icon { font-size: 1.25rem; }
.info-research-center span {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--info-navy);
    letter-spacing: 0.05em;
}

.info-research-node {
    position: absolute;
    width: 28%;
    aspect-ratio: 1.15;
    transform: translate(-50%, -50%);
}

.info-research-node .info-hex-shape {
    inset: 0;
    border-color: #1e5f8a;
}

.info-research-node.green .info-hex-shape { border-color: #76b82a; }
.info-research-node.green .info-hex-title { color: #5a9420; text-shadow: none; }
.info-research-node.green .info-hex-overlay { background: linear-gradient(180deg, rgba(255,255,255,0.9), transparent); }

.info-research-spokes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.info-research-spokes line {
    stroke: #76b82a;
    stroke-width: 1;
    stroke-dasharray: 4 3;
    opacity: 0.5;
}

.info-values-research {
    display: grid;
    gap: 0;
    background: #fff;
    border: 1px solid #d4e8f5;
    border-radius: 8px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .info-values-research { grid-template-columns: repeat(5, 1fr); }
}

.info-values-research .info-value {
    padding: 0.85rem 0.65rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #eef4f8;
}

.info-values-research .info-value:last-child { border-right: none; }
.info-values-research .info-value-icon { margin-bottom: 0.35rem; }

/* ─── DISSERTATION ─── */
.info-dissertation {
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, #f5faff 0%, #e8f4fc 40%, #dceef8 100%);
    border: 1px solid #c5dff0;
}

.info-dissertation::before,
.info-dissertation::after {
    content: '';
    position: absolute;
    pointer-events: none;
    opacity: 0.08;
}

.info-dissertation::before {
    left: 0;
    bottom: 0;
    width: 180px;
    height: 180px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%231a526a' stroke-width='2'/%3E%3Cpath d='M30 50h40M50 30v40' stroke='%231a526a' stroke-width='1'/%3E%3C/svg%3E") center/contain no-repeat;
}

.info-dissertation::after {
    right: 0;
    top: 0;
    width: 140px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 120'%3E%3Cpath d='M10 0 Q20 15 30 30 Q20 45 10 60 Q20 75 30 90 Q20 105 10 120' fill='none' stroke='%2376b82a' stroke-width='3'/%3E%3Cpath d='M30 0 Q20 15 10 30 Q20 45 30 60 Q20 75 10 90 Q20 105 30 120' fill='none' stroke='%231e5f8a' stroke-width='3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.info-diss-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.info-diss-header h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--info-navy-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.info-diss-header .sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--info-navy);
    margin-top: 0.35rem;
}

.info-diss-header .tag {
    font-size: 0.72rem;
    color: #4a6fa5;
    margin-top: 0.25rem;
}

.info-diss-flow {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .info-diss-flow {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.65rem;
    }
}

.info-diss-card {
    position: relative;
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(13,59,102,0.05);
}

@media (min-width: 1024px) {
    .info-diss-card:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -0.55rem;
        top: 1.25rem;
        font-size: 0.75rem;
        color: #94a3b8;
        z-index: 2;
    }
}

.info-diss-num {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin: 0 auto 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    border-radius: 50%;
}

.info-diss-card:nth-child(1) .info-diss-num { background: #7c3aed; }
.info-diss-card:nth-child(2) .info-diss-num { background: #2563eb; }
.info-diss-card:nth-child(3) .info-diss-num { background: #0891b2; }
.info-diss-card:nth-child(4) .info-diss-num { background: #16a34a; }
.info-diss-card:nth-child(5) .info-diss-num { background: #ca8a04; }
.info-diss-card:nth-child(6) .info-diss-num { background: #4f46e5; }

.info-diss-card:nth-child(1) .info-diss-title { color: #7c3aed; }
.info-diss-card:nth-child(2) .info-diss-title { color: #2563eb; }
.info-diss-card:nth-child(3) .info-diss-title { color: #0891b2; }
.info-diss-card:nth-child(4) .info-diss-title { color: #16a34a; }
.info-diss-card:nth-child(5) .info-diss-title { color: #ca8a04; }
.info-diss-card:nth-child(6) .info-diss-title { color: #4f46e5; }

.info-diss-title {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

.info-diss-thumb {
    width: 100%;
    height: 64px;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    border: 2px solid #e2e8f0;
}

.info-diss-card:nth-child(1) .info-diss-thumb { border-color: #7c3aed; background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.info-diss-card:nth-child(2) .info-diss-thumb { border-color: #2563eb; background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.info-diss-card:nth-child(3) .info-diss-thumb { border-color: #0891b2; background: linear-gradient(135deg, #cffafe, #a5f3fc); }
.info-diss-card:nth-child(4) .info-diss-thumb { border-color: #16a34a; background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.info-diss-card:nth-child(5) .info-diss-thumb { border-color: #ca8a04; background: linear-gradient(135deg, #fef3c7, #fde68a); }
.info-diss-card:nth-child(6) .info-diss-thumb { border-color: #4f46e5; background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }

.info-diss-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.55rem;
    line-height: 1.45;
    color: #64748b;
}

.info-diss-bullets li {
    position: relative;
    padding-left: 0.65rem;
    margin-bottom: 0.15rem;
}

.info-diss-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.info-diss-card:nth-child(1) .info-diss-bullets li::before { color: #7c3aed; }
.info-diss-card:nth-child(2) .info-diss-bullets li::before { color: #2563eb; }
.info-diss-card:nth-child(3) .info-diss-bullets li::before { color: #0891b2; }
.info-diss-card:nth-child(4) .info-diss-bullets li::before { color: #16a34a; }
.info-diss-card:nth-child(5) .info-diss-bullets li::before { color: #ca8a04; }
.info-diss-card:nth-child(6) .info-diss-bullets li::before { color: #4f46e5; }

.info-diss-bottom {
    display: grid;
    gap: 0;
    padding: 1rem;
    background: linear-gradient(90deg, #0d3b66, #1a526a);
    border-radius: 8px;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .info-diss-bottom { grid-template-columns: repeat(5, 1fr); }
}

.info-diss-bottom-item {
    text-align: center;
    padding: 0.5rem;
    color: #fff;
}

.info-diss-bottom-item .icon { font-size: 1.25rem; margin-bottom: 0.35rem; }
.info-diss-bottom-item strong {
    display: block;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 0.15rem;
}
.info-diss-bottom-item span { font-size: 0.5rem; opacity: 0.8; }

.info-diss-footer {
    text-align: center;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--info-navy);
}

/* ─── MALE FERTILITY DIAGNOSTICS ─── */
.info-diagnostics {
    padding: 2rem 1.25rem;
    background: linear-gradient(180deg, #050d18 0%, #0a1628 30%, #0f2744 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.info-diagnostics::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 55%, rgba(34, 211, 238, 0.08), transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='%2322d3ee' opacity='0.15'/%3E%3C/svg%3E");
    pointer-events: none;
}

.info-diag-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.info-diag-header h3 {
    font-size: clamp(1.1rem, 2.8vw, 1.65rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.info-diag-header h3 .cyan { color: #22d3ee; }
.info-diag-header h3 .green { color: #84cc16; }

.info-diag-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.65rem;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
}

.info-diag-sub::before,
.info-diag-sub::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34,211,238,0.6));
}

.info-diag-sub::after {
    background: linear-gradient(90deg, rgba(34,211,238,0.6), transparent);
}

.info-diag-pills {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .info-diag-pills { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1200px) {
    .info-diag-pills { grid-template-columns: repeat(7, 1fr); }
}

.info-diag-pill {
    padding: 0.85rem 0.5rem;
    text-align: center;
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(34, 211, 238, 0.45);
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.15), inset 0 0 20px rgba(34, 211, 238, 0.03);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-diag-pill:hover {
    border-color: rgba(132, 204, 22, 0.6);
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.2);
}

.info-diag-pill-icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    filter: drop-shadow(0 0 8px rgba(34,211,238,0.4));
}

.info-diag-pill-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #22d3ee;
    margin-bottom: 0.2rem;
}

.info-diag-pill-full {
    font-size: 0.55rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.info-diag-pill-desc {
    font-size: 0.5rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.5);
}

.info-diag-center-visual {
    position: relative;
    height: 100px;
    margin: 0 auto 1.25rem;
    max-width: 320px;
    z-index: 1;
}

.info-diag-center-visual::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(34,211,238,0.5), rgba(34,211,238,0.1));
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(34,211,238,0.3);
}

.info-diag-center-visual::after {
    content: '🥚';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
}

.info-diag-benefits {
    display: grid;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: rgba(0, 15, 30, 0.7);
    border: 1px solid rgba(34, 211, 238, 0.35);
    border-radius: 24px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .info-diag-benefits { grid-template-columns: repeat(5, 1fr); }
}

.info-diag-benefit {
    text-align: center;
    padding: 0.35rem;
}

.info-diag-benefit .icon { font-size: 1rem; margin-bottom: 0.25rem; }
.info-diag-benefit strong {
    display: block;
    font-size: 0.5rem;
    font-weight: 700;
    color: #22d3ee;
    letter-spacing: 0.03em;
    margin-bottom: 0.1rem;
}
.info-diag-benefit span { font-size: 0.48rem; color: rgba(255,255,255,0.55); line-height: 1.35; }

.info-diag-tagline {
    text-align: center;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
}

.info-diag-tagline .cyan { color: #22d3ee; }
.info-diag-tagline .green { color: #84cc16; }

/* ─── SPERM BANK ─── */
.info-sperm {
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, #f0f7ff 0%, #e4f2fa 50%, #d8ebf6 100%);
    border: 1px solid #b8d9ee;
}

.info-sperm::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 10%;
    width: 200px;
    height: 200px;
    opacity: 0.06;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='30' cy='50' rx='8' ry='4' fill='%231a526a'/%3E%3Cpath d='M38 50 Q60 45 80 50' stroke='%231a526a' stroke-width='2' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
}

.info-sperm-tank {
    position: absolute;
    right: -10px;
    bottom: 5%;
    width: 100px;
    height: 160px;
    opacity: 0.15;
    background: linear-gradient(180deg, #fff 0%, #e8f4fc 100%);
    border: 2px solid #1a526a;
    border-radius: 8px 8px 4px 4px;
    pointer-events: none;
}

.info-sperm-tank::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.8), transparent);
    border-radius: 50%;
}

.info-sperm-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.info-sperm-header h3 {
    font-size: clamp(1.2rem, 3vw, 1.65rem);
    font-weight: 700;
    color: var(--info-navy-dark);
}

.info-sperm-header .sub {
    font-size: 0.85rem;
    color: #1e5f8a;
    margin-top: 0.25rem;
}

.info-sperm-badge-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.info-sperm-badge-wrap::before,
.info-sperm-badge-wrap::after {
    content: '';
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1e5f8a);
}

.info-sperm-badge-wrap::after {
    background: linear-gradient(90deg, #1e5f8a, transparent);
}

.info-sperm-badge {
    padding: 0.4rem 1.25rem;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--info-navy-dark);
    border-radius: 999px;
}

.info-sperm-flow {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .info-sperm-flow { grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
}

.info-sperm-step {
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid #c5dff0;
    border-radius: 12px;
    position: relative;
}

@media (min-width: 1024px) {
    .info-sperm-step:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -0.45rem;
        top: 2.5rem;
        font-size: 0.7rem;
        color: #1e5f8a;
        z-index: 2;
    }
}

.info-sperm-num {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin: 0 auto 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    background: var(--info-navy-dark);
    border-radius: 50%;
}

.info-sperm-photo {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    border: 3px solid #b8d9ee;
    background-size: cover;
    background-position: center;
    overflow: visible;
}

.info-sperm-photo-badge {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
}

.info-sperm-step:nth-child(1) .info-sperm-photo { background: linear-gradient(135deg, #dbeafe, #93c5fd); }
.info-sperm-step:nth-child(1) .info-sperm-photo-badge { background: #2563eb; }
.info-sperm-step:nth-child(2) .info-sperm-photo { background: linear-gradient(135deg, #dcfce7, #86efac); }
.info-sperm-step:nth-child(2) .info-sperm-photo-badge { background: #16a34a; }
.info-sperm-step:nth-child(3) .info-sperm-photo { background: linear-gradient(135deg, #ede9fe, #c4b5fd); }
.info-sperm-step:nth-child(3) .info-sperm-photo-badge { background: #7c3aed; }
.info-sperm-step:nth-child(4) .info-sperm-photo { background: linear-gradient(135deg, #cffafe, #67e8f9); }
.info-sperm-step:nth-child(4) .info-sperm-photo-badge { background: #0891b2; }
.info-sperm-step:nth-child(5) .info-sperm-photo { background: linear-gradient(135deg, #dcfce7, #4ade80); }
.info-sperm-step:nth-child(5) .info-sperm-photo-badge { background: #16a34a; }

.info-sperm-title {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--info-navy-dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.3rem;
}

.info-sperm-desc {
    font-size: 0.55rem;
    line-height: 1.45;
    color: #64748b;
}

.info-sperm-values {
    display: grid;
    gap: 0;
    padding: 1rem;
    background: #fff;
    border: 1px solid #b8d9ee;
    border-radius: 10px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .info-sperm-values { grid-template-columns: repeat(5, 1fr); }
}

.info-sperm-values .info-value {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
    border-right: 1px solid #eef4f8;
}

.info-sperm-values .info-value:last-child { border-right: none; }

.info-sperm-values .info-value-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.info-sperm-step:nth-child(1) .info-value-icon,
.info-sperm-values .info-value:nth-child(1) .info-value-icon { background: #dbeafe; color: #2563eb; }
.info-sperm-values .info-value:nth-child(2) .info-value-icon { background: #cffafe; color: #0891b2; }
.info-sperm-values .info-value:nth-child(3) .info-value-icon { background: #ede9fe; color: #7c3aed; }
.info-sperm-values .info-value:nth-child(4) .info-value-icon { background: #dbeafe; color: #1e5f8a; }
.info-sperm-values .info-value:nth-child(5) .info-value-icon { background: #dcfce7; color: #16a34a; }

.info-sperm-footer {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--info-navy-dark);
    position: relative;
    z-index: 1;
}

.info-sperm-footer .hl { color: var(--info-green); }

/* Shared value styles */
.info-value {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.info-value-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: #1a526a;
    background: #f0f7fa;
    border-radius: 50%;
}

.info-value-title {
    font-size: 0.6rem;
    font-weight: 700;
    color: #0d3b66;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.info-value-desc {
    font-size: 0.55rem;
    color: #64748b;
    margin-top: 0.1rem;
    line-height: 1.35;
}

.info-accent { color: #76b82a; }
