/* ============================================================
   SERVICE HUB CSS — SpringHive
   Shared styles for all 4 service hub pages.
   Pillar color controlled via --pillar-color CSS variable.
   ============================================================ */

/* ── Breadcrumb ── */
.sh-breadcrumb-nav {
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
    padding: calc(75px + 0.6rem) 2rem 0.6rem 2rem; /* 75px clears the fixed navbar */
}
.sh-breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}
.sh-breadcrumb-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.sh-breadcrumb-list a:hover { color: var(--pillar-color); }
.sh-breadcrumb-list li:last-child { color: var(--text-main); }
.sh-breadcrumb-sep { color: var(--border-color); margin: 0 0.1rem; }

/* ── Shared Utilities ── */
.sh-text-pillar { color: var(--pillar-color); }
.sh-eyebrow-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--pillar-color);
    margin-right: 0.4rem;
    vertical-align: middle;
    flex-shrink: 0;
}
.sh-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}
.sh-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}
.sh-section:last-of-type { border-bottom: none; }
.sh-section-head {
    text-align: center;
    margin-bottom: 4rem;
}
.sh-section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

/* ── Hero ── */
.sh-hero {
    padding: 7rem 2rem 5rem;
    background: var(--bg-main);
    overflow: hidden;
    position: relative;
}
.sh-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: var(--pillar-color-glow);
    filter: blur(120px);
    pointer-events: none;
}
.sh-hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.sh-eyebrow {
    display: flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pillar-color);
    margin-bottom: 1.5rem;
}
.sh-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
    transition: color 0.2s;
}
.sh-breadcrumb:hover { color: var(--pillar-color); }
.sh-hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.08;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    margin-bottom: 1.25rem;
}
.sh-highlight {
    color: var(--pillar-color);
    position: relative;
}
.sh-hero-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2rem;
}
.sh-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.sh-hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}
.sh-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--text-main);
    line-height: 1;
}
.sh-stat-plus { color: var(--pillar-color); }
.sh-stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.3rem;
    font-family: var(--font-mono);
}
.sh-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* ── Browser Mockup Visual ── */
.sh-hero-visual {
    position: relative;
}
.sh-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, var(--pillar-color-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.sh-browser {
    position: relative;
    z-index: 1;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
    transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sh-browser:hover { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.sh-browser-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}
.sh-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.sh-dot-r { background: #ff5f57; }
.sh-dot-y { background: #febc2e; }
.sh-dot-g { background: #28c840; }
.sh-browser-url {
    flex: 1;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    max-width: 200px;
    margin: 0 auto;
}
.sh-browser-screen {
    padding: 1.2rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
/* Mock website elements inside browser */
.sh-mock-nav {
    height: 28px;
    background: var(--bg-card);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}
.sh-mock-hero {
    background: linear-gradient(135deg, var(--pillar-color-dim), var(--bg-card));
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border: 1px solid var(--pillar-color-dim);
}
.sh-mock-headline {
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--pillar-color) 0%, var(--pillar-color-glow) 100%);
    width: 85%;
}
.sh-mock-headline--short { width: 55%; opacity: 0.6; }
.sh-mock-sub { height: 9px; background: var(--border-color); border-radius: 4px; width: 70%; }
.sh-mock-btns { display: flex; gap: 0.5rem; margin-top: 0.4rem; }
.sh-mock-btn {
    height: 22px; width: 80px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background: transparent;
}
.sh-mock-btn--fill { background: var(--pillar-color); border-color: var(--pillar-color); }
.sh-mock-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
.sh-mock-card {
    height: 56px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.sh-mock-card--accent {
    background: var(--pillar-color-dim);
    border-color: var(--pillar-color);
}

/* Floating badges */
.sh-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 2;
    white-space: nowrap;
}
.sh-badge i { color: var(--pillar-color); }
.sh-badge--tl { top: -16px; left: -16px; animation: float 4s ease-in-out infinite; }
.sh-badge--br { bottom: -16px; right: -16px; animation: float 4s ease-in-out infinite 2s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── Trust Bar ── */
.sh-trust-bar {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    background: var(--bg-main);
}
.sh-trust-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.sh-trust-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.sh-trust-locs {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.sh-trust-locs span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-main);
}
.sh-trust-locs i { color: var(--pillar-color); }
.sh-trust-sep { color: var(--border-color); }

/* ── Services Grid ── */
.sh-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.sh-service-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.sh-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pillar-color-dim);
    opacity: 0;
    transition: opacity 0.3s;
}
.sh-service-card:hover {
    border-color: var(--pillar-color);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.sh-service-card:hover::before { opacity: 1; }
.sh-service-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--pillar-color-dim);
    border: 1px solid var(--pillar-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pillar-color);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.sh-service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.sh-service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    position: relative;
    z-index: 1;
    flex: 1;
}
.sh-service-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pillar-color);
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* ── Why Section ── */
.sh-why { background: var(--bg-main); }
.sh-why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}
.sh-why-left { position: sticky; top: 100px; }
.sh-why-right { display: flex; flex-direction: column; gap: 0; }
/* Why cards: borderless row style, no box */
.sh-why-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    padding: 1.5rem 0;
    transition: border-color 0.25s;
}
.sh-why-card:last-child { border-bottom: none; }
.sh-why-card:hover { border-bottom-color: var(--pillar-color); }
.sh-why-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--pillar-color-dim);
    border: 1px solid var(--pillar-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pillar-color);
    flex-shrink: 0;
}
.sh-why-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.sh-why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── Process ── */
.sh-process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}
.sh-step {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
}
.sh-step-num {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--pillar-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
    transition: opacity 0.3s;
}
.sh-step:hover .sh-step-num { opacity: 1; }
.sh-step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.sh-step-content p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.sh-step-connector {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pillar-color), transparent);
    flex-shrink: 0;
    margin-top: 1.5rem;
}

/* ── Pricing Teaser ── */
.sh-pricing-teaser { background: var(--bg-main); }
.sh-pricing-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem;
}
.sh-pricing-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.sh-pricing-text p { color: var(--text-muted); line-height: 1.7; }
.sh-pricing-cards { display: flex; flex-direction: column; gap: 1rem; }
.sh-price-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
    transition: border-color 0.3s;
}
.sh-price-pill:hover { border-color: var(--pillar-color); }
.sh-price-pill--featured { border-color: var(--pillar-color); background: var(--pillar-color-dim); }
.sh-price-name { font-weight: 600; font-size: 0.9rem; flex: 1; }
.sh-price-from { font-size: 0.72rem; color: var(--text-muted); }
.sh-price-amount { font-size: 1.5rem; font-weight: 800; font-family: 'Bricolage Grotesque', sans-serif; }
.sh-price-cycle { font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-mono); }

/* ── FAQ ── */
.sh-faq { background: var(--bg-main); border-top: 1px solid var(--border-color); }
.sh-faq-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 6rem;
    align-items: start;
}
.sh-faq-left { position: sticky; top: 100px; }
.sh-faq-left h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 0.5rem; }
.sh-faq-list { display: flex; flex-direction: column; }

/* ── Related Services (Internal Linking) ── */
.sh-related { background: var(--bg-main); }
.sh-related-heading { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 3rem; }
.sh-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.sh-related-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    text-decoration: none;
    color: var(--text-main);
    transition: border-color 0.3s, transform 0.3s;
}
.sh-related-card:hover {
    border-color: var(--rc, var(--pillar-color));
    transform: translateY(-3px);
}
.sh-related-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--rc, var(--pillar-color)) 15%, transparent);
    border: 1px solid var(--rc, var(--pillar-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rc, var(--pillar-color));
    flex-shrink: 0;
}
.sh-related-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.sh-related-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.sh-related-card p a { color: var(--rc, var(--pillar-color)); text-decoration: underline; text-underline-offset: 3px; }
.sh-location-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}
.sh-loc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-family: var(--font-mono);
    transition: border-color 0.2s, color 0.2s;
}
.sh-loc-link:hover { border-color: var(--pillar-color); color: var(--pillar-color); }
.sh-loc-link i { color: var(--pillar-color); }

/* ── CTA ── */
.sh-cta {
    position: relative;
    padding: 7rem 2rem;
    text-align: center;
    overflow: hidden;
    background: var(--bg-main);
}
.sh-cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, var(--pillar-color-glow) 0%, transparent 70%);
    pointer-events: none;
}
/* Center all content inside the CTA section */
.sh-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.sh-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--pillar-color);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    color: var(--pillar-color);
    margin-bottom: 2rem;
}
.sh-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    text-align: center;
    max-width: 700px;
}
.sh-cta p {
    color: var(--text-muted);
    font-size: 1.05rem;
    text-align: center;
    max-width: 520px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .sh-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .sh-hero-visual { display: none; } /* hide browser on tablet — content priority */
    .sh-services-grid { grid-template-columns: 1fr 1fr; }
    .sh-why-inner { grid-template-columns: 1fr; gap: 3rem; }
    .sh-why-left { position: relative; top: auto; }
    .sh-process-steps { flex-direction: column; align-items: center; gap: 2rem; }
    .sh-step-connector { display: none; }
    .sh-pricing-inner { grid-template-columns: 1fr; gap: 3rem; padding: 2.5rem; }
    .sh-faq-inner { grid-template-columns: 1fr; gap: 2rem; }
    .sh-faq-left { position: relative; top: auto; }
    .sh-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .sh-hero { padding: 6rem 1.25rem 4rem; }
    .sh-section { padding: 4rem 0; }
    .sh-container { padding: 0 1.25rem; }
    .sh-services-grid { grid-template-columns: 1fr; }
    .sh-hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .sh-stat-divider { display: none; }
    .sh-breadcrumb-nav { padding: 0.65rem 1.25rem; }
}

/* ============================================================
   CENTERED HERO VARIANT (Web Design page)
   ============================================================ */

.sh-hero--centered {
    padding: 3rem 2rem 5rem; /* Reduced top padding since breadcrumb clears navbar */
    text-align: center;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

/* Ambient glow behind headline */
.sh-hero--centered::before {
    content: '';
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse at center,
        rgba(124, 90, 245, 0.13) 0%,
        rgba(212, 77, 240, 0.06) 50%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.sh-hero-center {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

/* ── Pill Badge ── */
.sh-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 2.25rem;
    font-family: var(--font-mono);
}

.sh-badge-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(46, 204, 113, 0.05); }
}

/* ── Massive Headline ── */
.sh-hero--centered h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.04;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* ── Gradient Text ── */
.sh-grad-text {
    background: linear-gradient(135deg, #7c5af5 0%, #d44df0 45%, #ff7a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero Sub Text (centered) ── */
.sh-hero--centered .sh-hero-sub {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-muted);
}

/* ── CTA Buttons Row ── */
.sh-hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.sh-cta-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--text-main);
    color: var(--bg-main);
    border: 2px solid var(--text-main);
    border-radius: 100px;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}

.sh-cta-dark:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.sh-cta-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-color);
    border-radius: 100px;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
    white-space: nowrap;
}

.sh-cta-light:hover {
    border-color: var(--text-muted);
    background: var(--bg-alt);
    transform: translateY(-2px);
}

/* ── Stats Bar (centered) ── */
.sh-hero--centered .sh-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
    padding: 1.5rem 3rem;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    background: var(--bg-alt);
    justify-content: center;
}

.sh-hero--centered .sh-stat {
    text-align: center;
}

/* ============================================================
   BIG SERVICE CARDS SECTION
   ============================================================ */

.sh-big-cards-section {
    padding: 5rem 0;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.sh-big-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.sh-big-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    padding: 1.75rem;
    min-height: 300px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sh-big-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.25);
}

/* Card 1 — Violet */
.sh-big-card--v1 {
    background: linear-gradient(145deg, #6d3ff5 0%, #9b44f0 100%);
}

/* Card 2 — Purple → Magenta */
.sh-big-card--v2 {
    background: linear-gradient(145deg, #a030e8 0%, #e040d0 100%);
}

/* Card 3 — Magenta → Orange */
.sh-big-card--v3 {
    background: linear-gradient(145deg, #e040d0 0%, #ff7a3d 100%);
}

/* Card 4 — Neutral (light / dark aware) */
.sh-big-card--v4 {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

/* Card top row: label + arrow */
.sh-big-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: auto;
}

.sh-big-card-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.75;
    font-family: var(--font-mono);
}

.sh-big-card--v4 .sh-big-card-label {
    color: var(--text-muted);
}

.sh-big-card-arrow {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.6;
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.sh-big-card:hover .sh-big-card-arrow {
    opacity: 1;
    transform: translate(3px, -3px);
}

.sh-big-card--v4 .sh-big-card-arrow {
    color: var(--pillar-color);
}

/* Big bold headline on each card */
.sh-big-card-headline {
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    line-height: 1.0;
    margin: 1.5rem 0 1rem;
    letter-spacing: -0.02em;
}

.sh-big-card--v4 .sh-big-card-headline {
    color: var(--text-main);
}

/* Description text */
.sh-big-card-desc {
    font-size: 0.87rem;
    line-height: 1.65;
    opacity: 0.85;
    margin-top: auto;
}

.sh-big-card--v4 .sh-big-card-desc {
    color: var(--text-muted);
    opacity: 1;
}

/* Screen-reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .sh-big-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sh-hero--centered h1 {
        font-size: clamp(2.8rem, 6vw, 4.5rem);
    }
}

@media (max-width: 600px) {
    .sh-hero--centered {
        padding: 7rem 1.25rem 4rem;
    }
    .sh-big-cards-grid {
        grid-template-columns: 1fr;
    }
    .sh-big-cards-section {
        padding: 3rem 0;
    }
    .sh-hero--centered .sh-hero-stats {
        border-radius: 20px;
        gap: 1.5rem;
        padding: 1.25rem 1.5rem;
        flex-wrap: wrap;
        width: 100%;
    }
    .sh-hero--centered .sh-stat-divider { display: none; }
}

/* ============================================================
   PREMIUM PROCESS SECTION — Editorial Timeline
   Top-studio quality: dark bg, ghosted numbers, left-aligned
   ============================================================ */

.proc-section {
    background: #0a0a0f;
    position: relative;
    overflow: hidden;
}

/* ── Section Header ── */
.proc-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 2rem 5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.proc-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-mono);
    margin-bottom: 1.75rem;
}

.proc-eyebrow .sh-eyebrow-dot {
    background: var(--pillar-color);
}

.proc-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.06;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

.proc-title-grad {
    background: linear-gradient(135deg, #7c5af5 0%, #d44df0 55%, #ff7a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proc-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 480px;
}

/* ── Timeline Rows ── */
.proc-rows {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 7rem;
}

.proc-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0 4rem;
    align-items: start;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    transition: background 0.3s;
}

.proc-row::before {
    content: '';
    position: absolute;
    left: -2rem;
    right: -2rem;
    top: 0;
    bottom: 0;
    background: rgba(124, 90, 245, 0.04);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 12px;
}

.proc-row:hover::before { opacity: 1; }

.proc-row--last {
    border-bottom: none;
}

/* ── Step Number (ghosted watermark) ── */
.proc-row-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    /* Outlined / stroke style */
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.08);
    text-stroke: 1.5px rgba(255,255,255,0.08);
    user-select: none;
    position: relative;
    top: -0.5rem;
    transition: -webkit-text-stroke 0.3s, color 0.3s;
}

.proc-row:hover .proc-row-num {
    -webkit-text-stroke: 1.5px rgba(124, 90, 245, 0.35);
    text-stroke: 1.5px rgba(124, 90, 245, 0.35);
}

/* ── Row Body ── */
.proc-row-body {
    padding-top: 0.5rem;
}

/* ── Meta tags ── */
.proc-row-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.1rem;
}

.proc-tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 0.3rem 0.85rem;
}

.proc-tag-phase {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--pillar-color);
    background: rgba(124, 90, 245, 0.1);
    border: 1px solid rgba(124, 90, 245, 0.25);
    border-radius: 100px;
    padding: 0.3rem 0.85rem;
}

/* ── Step Title ── */
.proc-row-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.9rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ── Step Description ── */
.proc-row-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    max-width: 560px;
    margin-bottom: 1.75rem;
}

/* ── Deliverables Pill List ── */
.proc-deliverables {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.proc-deliverables li {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    letter-spacing: 0.04em;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.proc-row:hover .proc-deliverables li {
    color: rgba(255,255,255,0.75);
    border-color: rgba(124, 90, 245, 0.3);
    background: rgba(124, 90, 245, 0.07);
}

/* ── Step connector line (right side decoration) ── */
.proc-row-step-line {
    display: none; /* purely decorative, handled by border-bottom */
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .proc-header { padding: 5rem 1.25rem 3rem; }
    .proc-rows { padding: 0 1.25rem 5rem; }
    .proc-row {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 3rem 0;
    }
    .proc-row-num {
        font-size: 4.5rem;
        -webkit-text-stroke: 1px rgba(255,255,255,0.1);
        top: 0;
        margin-bottom: 0.75rem;
    }
    .proc-row-title { font-size: 1.4rem; }
    .proc-title { font-size: clamp(2rem, 6vw, 3rem); }
}

@media (max-width: 480px) {
    .proc-row-num { font-size: 3.5rem; }
    .proc-deliverables { gap: 0.4rem; }
}

/* ============================================================
   DESIGN CONSISTENCY FIXES
   Remove card-box from pricing, fix scroll-reveal ghost boxes,
   unify all section borders to flat style
   ============================================================ */

/* ── Pricing: remove the floating rounded card box ── */
.sh-pricing-inner {
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ── CTA: cleanup duplicate override (rules already above) ── */

/* ── Scroll-reveal ghost fix ──
   Elements start invisible and animate in automatically,
   so they don't linger as ghost boxes if JS is slow. ── */
.sh-big-card.scroll-reveal,
.sh-why-card.scroll-reveal,
.sh-why-left.scroll-reveal,
.sh-pricing-inner.scroll-reveal,
.sh-faq-left.scroll-reveal,
.proc-row.scroll-reveal,
.sh-cta.scroll-reveal {
    animation: srv-reveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sh-big-card.scroll-reveal          { animation-delay: 0.05s; }
.sh-big-card.scroll-reveal.delay-1  { animation-delay: 0.12s; }
.sh-big-card.scroll-reveal.delay-2  { animation-delay: 0.20s; }
.sh-big-card.scroll-reveal.delay-3  { animation-delay: 0.28s; }
.proc-row.scroll-reveal             { animation-delay: 0.08s; }
.proc-row.scroll-reveal.delay-1     { animation-delay: 0.18s; }
.proc-row.scroll-reveal.delay-2     { animation-delay: 0.28s; }
.proc-row.scroll-reveal.delay-3     { animation-delay: 0.38s; }
.sh-pricing-inner.scroll-reveal     { animation-delay: 0.10s; }
.sh-cta.scroll-reveal               { animation-delay: 0.05s; }
.sh-why-left.scroll-reveal          { animation-delay: 0.05s; }
.sh-why-card.scroll-reveal          { animation-delay: 0.08s; }
.sh-why-card.scroll-reveal.delay-1  { animation-delay: 0.16s; }
.sh-why-card.scroll-reveal.delay-2  { animation-delay: 0.24s; }
.sh-why-card.scroll-reveal.delay-3  { animation-delay: 0.32s; }

@keyframes srv-reveal {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* If IntersectionObserver fires, let .visible take over ─── */
.scroll-reveal.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}

/* ============================================================
   PROC2 — Premium Process Section (Light / AAA Studio)
   White bg · 4-col connected nodes · editorial typography
   ============================================================ */

.proc2 {
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.proc2-wrap {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 6rem 2rem;
}

/* ── Header ── */
.proc2-hdr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 5rem;
}

.proc2-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.proc2-hdr-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.proc2-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 460px;
    margin-top: 1.2rem;
}

/* Right side: large decorative step count */
.proc2-hdr-right {
    text-align: right;
    flex-shrink: 0;
}

.proc2-count-big {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--pillar-color);
    opacity: 0.12;
}

.proc2-count-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0.25rem;
}

/* ── Steps Grid ── */
.proc2-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Horizontal connecting track line */
.proc2-track {
    position: absolute;
    top: 21px;          /* vertically centered on 44px node */
    left: 22px;         /* start at center of first node */
    right: 22px;        /* end at center of last node */
    height: 1px;
    background: var(--border-color);
    z-index: 0;
    pointer-events: none;
}

/* ── Single Step ── */
.proc2-step {
    padding-right: 2.5rem;
    position: relative;
    z-index: 1;
}
.proc2-step:last-child { padding-right: 0; }

/* Node (circle) */
.proc2-node-wrap {
    margin-bottom: 1.75rem;
}

.proc2-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    position: relative;
    transition: border-color 0.3s;
}

/* Inner filled dot — appears on hover */
.proc2-node::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: var(--pillar-color);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}

.proc2-step:hover .proc2-node {
    border-color: var(--pillar-color);
}
.proc2-step:hover .proc2-node::after {
    opacity: 1;
    transform: scale(1);
}

/* Large faded step number */
.proc2-step-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--pillar-color);
    opacity: 0.1;
    margin-bottom: 0.6rem;
    transition: opacity 0.3s;
    user-select: none;
}
.proc2-step:hover .proc2-step-num { opacity: 0.25; }

/* Time tag */
.proc2-time-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pillar-color);
    margin-bottom: 0.75rem;
}

/* Step title */
.proc2-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

/* Step description */
.proc2-step-desc {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* Deliverable chips */
.proc2-chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0;
    margin: 0;
}

.proc2-chips li {
    font-family: var(--font-mono);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 0.28rem 0.75rem;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.proc2-step:hover .proc2-chips li {
    color: var(--pillar-color);
    background: var(--pillar-color-dim);
    border-color: var(--pillar-color);
}

/* ── Scroll-reveal for proc2 steps ── */
.proc2-step.scroll-reveal            { animation: srv-reveal 0.7s cubic-bezier(0.16,1,0.3,1) both; }
.proc2-step.scroll-reveal            { animation-delay: 0.05s; }
.proc2-step.scroll-reveal.delay-1   { animation-delay: 0.15s; }
.proc2-step.scroll-reveal.delay-2   { animation-delay: 0.25s; }
.proc2-step.scroll-reveal.delay-3   { animation-delay: 0.35s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .proc2-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem 3rem;
    }
    .proc2-track { display: none; }
    .proc2-step { padding-right: 0; }
}

@media (max-width: 600px) {
    .proc2-steps { grid-template-columns: 1fr; gap: 3rem; }
    .proc2-hdr { flex-direction: column; align-items: flex-start; }
    .proc2-hdr-right { display: none; }
    .proc2-wrap { padding: 4rem 1.25rem; }
    .proc2-hdr { padding-bottom: 3rem; margin-bottom: 3rem; }
}

/* ============================================================
   REL2 — Premium Related Services (AAA Studio Row Layout)
   No card boxes · horizontal strips · color accent bars
   ============================================================ */

.rel2-section {
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
}

.rel2-wrap {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 6rem 2rem;
}

/* ── Header ── */
.rel2-hdr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.rel2-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.rel2-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-main);
}

.rel2-sub {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 320px;
    flex-shrink: 0;
}

/* ── Service Rows ── */
.rel2-list {
    display: flex;
    flex-direction: column;
}

.rel2-row {
    position: relative;
    display: grid;
    grid-template-columns: 3rem 2.5rem 1fr auto;
    align-items: center;
    gap: 1.75rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: background 0.25s;
}

/* Hover: subtle tint wash across the row */
.rel2-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-alt);
    opacity: 0;
    transition: opacity 0.25s;
}
.rel2-row:hover::before { opacity: 1; }

/* Left accent bar (colored) */
.rel2-row-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transform: scaleY(0.3);
    transition: opacity 0.3s, transform 0.3s;
}
.rel2-row:hover .rel2-row-accent {
    opacity: 1;
    transform: scaleY(1);
}

/* Step number */
.rel2-row-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    opacity: 0.5;
    position: relative;
    z-index: 1;
    user-select: none;
    padding-left: 1rem;
}

/* Icon */
.rel2-row-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rc, var(--pillar-color));
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background 0.25s, border-color 0.25s;
}
.rel2-row:hover .rel2-row-icon {
    background: color-mix(in srgb, var(--rc, var(--pillar-color)) 12%, transparent);
    border-color: var(--rc, var(--pillar-color));
}

/* Body */
.rel2-row-body {
    position: relative;
    z-index: 1;
}

.rel2-row-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.3rem;
    transition: color 0.2s;
}
.rel2-row:hover .rel2-row-title { color: var(--pillar-color); }

.rel2-row-desc {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

/* CTA (right side) */
.rel2-row-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    padding-right: 0.5rem;
}

.rel2-row-cta span:first-child {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s, transform 0.25s, color 0.25s;
}

.rel2-row:hover .rel2-row-cta span:first-child {
    opacity: 1;
    transform: translateX(0);
    color: var(--pillar-color);
}

.rel2-arrow {
    font-size: 1.2rem;
    color: var(--border-color);
    transition: color 0.25s, transform 0.25s;
    display: block;
}
.rel2-row:hover .rel2-arrow {
    color: var(--pillar-color);
    transform: translate(2px, -2px);
}

/* ── Location bar ── */
.rel2-locations {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    flex-wrap: wrap;
}

.rel2-loc-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.rel2-loc-sep {
    color: var(--border-color);
}

.rel2-loc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.rel2-loc-link:hover { color: var(--pillar-color); }
.rel2-loc-link i { flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .rel2-hdr { flex-direction: column; align-items: flex-start; }
    .rel2-sub { max-width: 100%; }
    .rel2-row {
        grid-template-columns: auto 2.5rem 1fr;
        grid-template-rows: auto auto;
    }
    .rel2-row-accent { display: none; }
    .rel2-row-cta { display: none; }
    .rel2-wrap { padding: 4rem 1.25rem; }
}
