/* ═══════════════════════════════════════════════════════
   SocialBandhu — Subpage Styles (Industries & Services)
   Inherits design tokens from styles.css
   ═══════════════════════════════════════════════════════ */

/* ─── SUB-HERO ─── */
.sub-hero {
    min-height: 60vh;
    display: flex; align-items: center;
    padding: 140px 40px 80px;
    position: relative; overflow: hidden;
}
.sub-hero-bg {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.sub-hero .hero-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: .25; }
.sub-hero .orb-a { width: 500px; height: 500px; background: radial-gradient(circle, var(--lime) 0%, transparent 70%); top: -20%; left: -8%; }
.sub-hero .orb-b { width: 350px; height: 350px; background: radial-gradient(circle, #00ff8866 0%, transparent 70%); bottom: -15%; right: 0; }
.sub-hero-inner {
    position: relative; z-index: 2;
    max-width: 1320px; margin: 0 auto; width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.sub-hero-content {
    /* Text side — stacks naturally */
}
.sub-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sub-hero-visual svg {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(202,255,3,0.06));
}
/* Ambient glow behind hero visual */
.sub-hero-visual::before {
    content: '';
    position: absolute;
    width: 70%; height: 70%;
    background: radial-gradient(circle, rgba(202,255,3,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}
/* Floating animation for hero visual */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.sub-hero-visual svg {
    animation: heroFloat 6s ease-in-out infinite;
}
.sub-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text3); margin-bottom: 24px;
    font-family: var(--font-mono);
}
.sub-breadcrumb a { color: var(--text2); transition: color .3s; }
.sub-breadcrumb a:hover { color: var(--lime); }
.sub-breadcrumb .sep { color: var(--text3); }
.sub-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 500; color: var(--lime);
    padding: 8px 20px; border: 1px solid var(--lime-dim);
    border-radius: 50px; margin-bottom: 28px;
    background: rgba(202,255,3,.04);
}
.sub-badge .badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--lime); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.sub-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -.03em; color: var(--white);
    margin-bottom: 20px;
}
.sub-hero h1 em { color: var(--lime); }
.sub-hero-desc {
    font-size: clamp(.95rem, 1.3vw, 1.12rem);
    line-height: 1.75; color: var(--text2);
    max-width: 640px; margin-bottom: 32px;
}
.sub-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── SECTION LAYOUTS ─── */
.sub-section {
    padding: 100px 0;
    position: relative;
}
.sub-section-dark { background: var(--bg2); }
.sub-section-top {
    margin-bottom: 56px;
}
.sub-section-top .label {
    font-family: var(--font-mono);
    font-size: 13px; color: var(--text3);
    margin-bottom: 16px; display: block;
}
.sub-section-top h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800; line-height: 1.12;
    letter-spacing: -.02em; color: var(--white);
}

/* ─── FEATURES GRID ─── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: border-color .4s var(--ease-out), transform .4s var(--ease-out);
}
.feature-card:hover {
    border-color: var(--lime-dim);
    transform: translateY(-4px);
}
.feature-icon {
    width: 48px; height: 48px;
    background: rgba(202,255,3,.06);
    border: 1px solid var(--lime-dim);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: var(--lime);
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem; font-weight: 700;
    color: var(--white); margin-bottom: 10px;
}
.feature-card p {
    font-size: .92rem; line-height: 1.7;
    color: var(--text2);
}

/* ─── STATS ROW ─── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden; margin: 60px 0;
}
.stat-item {
    background: var(--card);
    padding: 36px 24px; text-align: center;
}
.stat-val {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800; color: var(--lime);
    margin-bottom: 6px;
}
.stat-label {
    font-size: 13px; color: var(--text3);
    font-weight: 500; letter-spacing: .02em;
    text-transform: uppercase;
}

/* ─── APPROACH / PROCESS STEPS ─── */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}
.approach-step {
    position: relative;
    padding: 32px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
}
.approach-num {
    font-family: var(--font-mono);
    font-size: 12px; color: var(--lime);
    margin-bottom: 16px; display: block;
}
.approach-step h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 700;
    color: var(--white); margin-bottom: 10px;
}
.approach-step p {
    font-size: .9rem; line-height: 1.7;
    color: var(--text2);
}

/* ─── USE-CASE CARDS ─── */
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.usecase-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color .4s;
}
.usecase-card:hover { border-color: var(--lime-dim); }
.usecase-icon {
    width: 44px; height: 44px;
    background: rgba(202,255,3,0.05);
    border: 1px solid rgba(202,255,3,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    color: var(--lime);
    transition: border-color 0.3s, background 0.3s;
}
.usecase-card:hover .usecase-icon {
    border-color: rgba(202,255,3,0.25);
    background: rgba(202,255,3,0.08);
}
.usecase-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem; font-weight: 700;
    color: var(--lime); margin-bottom: 10px;
}
.usecase-card p {
    font-size: .9rem; line-height: 1.7;
    color: var(--text2);
}

/* ─── RELATED LINKS ─── */
.related-section { padding: 80px 0; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.related-link {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: border-color .4s, transform .3s;
    font-weight: 600; font-size: .95rem;
    color: var(--white);
}
.related-link:hover {
    border-color: var(--lime);
    transform: translateY(-2px);
}
.related-link svg { color: var(--lime); flex-shrink: 0; }

/* ─── SUB-FAQ ─── */
.sub-faq { padding: 100px 0; }
.sub-faq-grid {
    display: grid; gap: 16px;
    max-width: 800px;
}
.sub-faq-item {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.sub-faq-item summary {
    padding: 20px 24px;
    font-weight: 600; font-size: .95rem;
    color: var(--white);
    cursor: pointer; list-style: none;
    display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
}
.sub-faq-item summary::-webkit-details-marker { display: none; }
.sub-faq-item[open] summary { border-bottom: 1px solid var(--card-border); }
.sub-faq-item[open] .faq-icon { transform: rotate(45deg); }
.sub-faq-answer {
    padding: 20px 24px;
    font-size: .9rem; line-height: 1.75;
    color: var(--text2);
}

/* ─── SUB-CTA ─── */
.sub-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sub-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(202,255,3,0.03) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.sub-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800; line-height: 1.12;
    color: var(--white); margin-bottom: 24px;
}
.sub-cta p {
    font-size: 1rem; line-height: 1.7;
    color: var(--text2); max-width: 560px;
    margin: 0 auto 32px;
}

/* ─── LEMON YELLOW ACCENT SECTIONS ─── */

/* Yellow stats row — bold visual break */
.stats-row-yellow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--lime);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 60px 0;
    transform: rotate(-0.5deg);
}
.stats-row-yellow .stat-item {
    background: transparent;
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.08);
}
.stats-row-yellow .stat-item:last-child { border-right: none; }
.stats-row-yellow .stat-val {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 6px;
}
.stats-row-yellow .stat-label {
    font-size: 13px;
    color: rgba(0,0,0,0.65);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Yellow CTA banner — high-visibility call to action */
.sub-cta-yellow {
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--lime);
    border-radius: var(--radius-xl);
    margin: 0 40px;
}
.sub-cta-yellow::before { display: none; }
.sub-cta-yellow h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800; line-height: 1.12;
    color: var(--black); margin-bottom: 16px;
    position: relative;
}
.sub-cta-yellow p {
    font-size: 1rem; line-height: 1.7;
    color: rgba(0,0,0,0.7); max-width: 560px;
    margin: 0 auto 32px;
    position: relative;
}
.sub-cta-yellow .btn-primary {
    background: var(--black);
    color: var(--lime);
    border-color: var(--black);
}
.sub-cta-yellow .btn-primary:hover {
    background: var(--bg2);
    color: var(--lime);
    border-color: var(--bg2);
}
.sub-cta-yellow .btn-ghost {
    color: var(--black);
    border-color: var(--black);
}
.sub-cta-yellow .btn-ghost:hover {
    background: var(--black);
    color: var(--lime);
}

/* Highlight strip — horizontal accent divider */
.highlight-strip {
    background: var(--lime);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
    margin: 40px 0;
}
.highlight-strip .hstrip-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--black);
    font-size: 0.95rem;
    background: transparent;
    padding: 0;
    text-align: left;
}
.highlight-strip .hstrip-item svg {
    color: var(--black);
    opacity: 0.8;
    flex-shrink: 0;
}
.highlight-strip .hstrip-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    flex-shrink: 0;
}

/* Yellow feature card highlight variant */
.feature-card-yellow {
    background: var(--lime) !important;
    border-color: var(--lime) !important;
}
.feature-card-yellow .feature-icon {
    background: rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.15);
    color: var(--black);
}
.feature-card-yellow h3 { color: var(--black); }
.feature-card-yellow p { color: rgba(0,0,0,0.7); }

/* Why-us yellow section */
.why-us-yellow {
    background: var(--lime);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    margin: 0 40px;
    position: relative;
}
.why-us-yellow .sub-section-top .label { color: rgba(0,0,0,0.5); }
.why-us-yellow .sub-section-top h2 { color: var(--black); }
.why-us-yellow .approach-step {
    background: rgba(255,255,255,0.25);
    border-color: rgba(0,0,0,0.08);
}
.why-us-yellow .approach-num { color: rgba(0,0,0,0.5); }
.why-us-yellow .approach-step h3 { color: var(--black); }
.why-us-yellow .approach-step p { color: rgba(0,0,0,0.65); }

/* ═══════════════════════════════════════════════════════
   VISUAL ENHANCEMENTS — Graphics, Motion & Depth
   ═══════════════════════════════════════════════════════ */

/* ─── DOT GRID BACKGROUND (dark sections) ─── */
.sub-section-dark {
    position: relative;
    overflow: hidden;
}
.sub-section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(202,255,3,0.035) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}
.sub-section-dark > .container {
    position: relative;
    z-index: 1;
}

/* ─── ANIMATED HEADING ACCENT LINE ─── */
.sub-section-top h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}
.sub-section-top h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--lime);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.revealed .sub-section-top h2::after,
.sub-section-top.revealed h2::after,
[data-reveal].revealed .sub-section-top h2::after {
    transform: scaleX(1);
}
/* Yellow section override */
.why-us-yellow .sub-section-top h2::after,
.sub-cta-yellow .sub-section-top h2::after {
    background: var(--black);
}

/* ─── ENHANCED FEATURE CARD – Glow + Shimmer ─── */
.feature-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at var(--glow-x, 50%) var(--glow-y, 50%),
        rgba(202,255,3,0.07) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}
.feature-card:hover::after {
    opacity: 1;
}
.feature-card:hover {
    box-shadow: 0 8px 40px rgba(202,255,3,0.04), 0 0 0 1px rgba(202,255,3,0.08);
}

/* Feature icon hover animation */
.feature-icon {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s,
                background 0.4s,
                box-shadow 0.4s;
}
.feature-card:hover .feature-icon {
    transform: scale(1.12) rotate(-6deg);
    border-color: var(--lime);
    background: rgba(202,255,3,0.12);
    box-shadow: 0 0 20px rgba(202,255,3,0.1);
}

/* ─── APPROACH STEP – Left accent + glow number ─── */
.approach-step {
    transition: border-color 0.4s var(--ease-out),
                border-left-color 0.4s var(--ease-out),
                transform 0.4s var(--ease-out),
                box-shadow 0.4s;
    border-left: 3px solid transparent;
}
.approach-step:hover {
    border-left-color: var(--lime);
    transform: translateX(6px);
    box-shadow: -4px 0 24px rgba(202,255,3,0.04);
}
.approach-num {
    transition: text-shadow 0.4s, transform 0.3s;
}
.approach-step:hover .approach-num {
    text-shadow: 0 0 16px rgba(202,255,3,0.5);
}

/* ─── USECASE CARD – Lift + glow ─── */
.usecase-card {
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.5s;
}
.usecase-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--lime), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(202,255,3,0.05);
}
.usecase-card:hover::after {
    transform: scaleX(1);
}

/* ─── RELATED LINK – Arrow slide + glow ─── */
.related-link svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.related-link:hover svg {
    transform: translateX(6px);
}
.related-link:hover {
    box-shadow: 0 4px 20px rgba(202,255,3,0.05);
}

/* ─── STAT VALUE HOVER GLOW ─── */
.stat-val {
    transition: text-shadow 0.4s;
}
.stat-item:hover .stat-val {
    text-shadow: 0 0 24px rgba(202,255,3,0.35);
}

/* ─── FAQ HOVER STATE ─── */
.sub-faq-item summary {
    transition: background 0.3s;
}
.sub-faq-item summary:hover {
    background: rgba(202,255,3,0.02);
}

/* ─── FLOATING DECORATIVE SHAPES (injected by JS) ─── */
.deco-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.deco-shape--circle {
    border-radius: 50%;
    border: 1.5px solid var(--lime);
    opacity: 0.04;
}
.deco-shape--cross {
    opacity: 0.035;
}
.deco-shape--cross::before,
.deco-shape--cross::after {
    content: '';
    position: absolute;
    background: var(--lime);
    border-radius: 1px;
}
.deco-shape--cross::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}
.deco-shape--cross::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.deco-shape--diamond {
    border: 1.5px solid var(--lime);
    opacity: 0.035;
}
.deco-shape--ring {
    border-radius: 50%;
    border: 2px solid var(--lime);
    opacity: 0.03;
}
.deco-shape--dots {
    opacity: 0.04;
    background-image:
        radial-gradient(var(--lime) 1.5px, transparent 1.5px),
        radial-gradient(var(--lime) 1.5px, transparent 1.5px);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
}
.deco-shape--arc {
    border: 2px solid var(--lime);
    border-radius: 50%;
    opacity: 0.03;
    clip-path: inset(0 0 50% 50%);
}

/* Float animations */
@keyframes decoFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(3deg); }
    66% { transform: translateY(-5px) rotate(-2deg); }
}
@keyframes decoFloat2 {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-14px) rotate(50deg); }
}
@keyframes decoFloat3 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}
@keyframes decoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ─── GRADIENT GLOW LINES (between sections, injected by JS) ─── */
.glow-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(202,255,3,0.12) 30%, rgba(202,255,3,0.2) 50%, rgba(202,255,3,0.12) 70%, transparent 95%);
    position: relative;
    overflow: visible;
}
.glow-line::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 30%;
    right: 30%;
    height: 9px;
    background: radial-gradient(ellipse at center, rgba(202,255,3,0.06), transparent);
    pointer-events: none;
}

/* ─── SECTION CORNER ACCENTS ─── */
.sub-section {
    overflow: hidden;
}

/* ─── HERO BADGE SHIMMER ─── */
@keyframes badgeShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.sub-badge {
    background-image: linear-gradient(
        110deg,
        rgba(202,255,3,0.04) 0%,
        rgba(202,255,3,0.04) 40%,
        rgba(202,255,3,0.12) 50%,
        rgba(202,255,3,0.04) 60%,
        rgba(202,255,3,0.04) 100%
    );
    background-size: 200% 100%;
    animation: badgeShimmer 4s ease-in-out infinite;
}

/* ─── STAGGERED REVEAL DELAYS (set by JS) ─── */
[data-reveal][data-stagger] {
    transition-delay: var(--stagger-delay, 0s);
}

/* ─── COUNTER ANIMATION FLASH ─── */
@keyframes counterPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.stat-val.counted {
    animation: counterPop 0.3s ease-out;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stats-row-yellow { grid-template-columns: repeat(2, 1fr); }
    .sub-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .sub-hero-visual { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .sub-hero { padding: 120px 20px 60px; min-height: auto; }
    .sub-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .sub-hero-visual { max-width: 320px; }
    .sub-hero-visual svg { animation: none; }
    .sub-section { padding: 60px 0; }
    .container { padding: 0 20px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stats-row-yellow { grid-template-columns: repeat(2, 1fr); transform: none; }
    .features-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .sub-hero-actions { flex-direction: column; }
    .sub-hero-actions a { text-align: center; justify-content: center; }
    .sub-cta-yellow { margin: 0 16px; padding: 60px 24px; }
    .why-us-yellow { margin: 0 16px; padding: 60px 24px; }
    .highlight-strip { padding: 20px 24px; gap: 20px; }
    /* Visual enhancements — reduce on mobile */
    .deco-shape { display: none; }
    .glow-line::after { display: none; }
    .approach-step:hover { transform: none; }
    .sub-section-top h2::after { width: 36px; }
}
