/*
 * GoTop Service — organic-seo add-on CSS.
 * Scope: only loaded when data-service-slug="organic-seo".
 * All selectors are prefixed under `.gtp-service[data-service-slug="organic-seo"]`
 * or under `.gtp-svc-seomock`/`.gtp-svc-mock--{search|rank|result}` — classes that
 * exist only on this page. Nothing here leaks to other service pages.
 */

/* ============================================================
 * SECTION SPACING NORMALIZATION (round E)
 * A consistent vertical rhythm across the page: 80px top/bottom
 * on desktop, 56px on mobile. Individual sections may override
 * later in this file if they need more space (e.g. hero).
 * ============================================================ */
.gtp-service[data-service-slug="organic-seo"] > section {
    padding-top: 72px;
    padding-bottom: 80px;
}
@media (max-width: 720px) {
    .gtp-service[data-service-slug="organic-seo"] > section {
        padding-top: 52px;
        padding-bottom: 60px;
    }
}

/* ============================================================
 * HERO VISUAL — SERP mockup (.gtp-svc-seomock)
 * ============================================================ */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-seomock {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    padding: 22px 22px 24px;
    border-radius: var(--gtp-svc-radius-l);
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(94, 234, 255, 0.06), transparent 60%),
        var(--gtp-svc-surface2);
    border: 1px solid var(--gtp-svc-border);
    box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.5);
    isolation: isolate;
    contain: layout paint;
}

/* Chips row — engines / signals shown above the SERP */
.gtp-svc-seomock__chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 14px;
    padding: 0;
}
.gtp-svc-seomock__chips li {
    font-family: var(--gtp-svc-fmono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--gtp-svc-text-dim);
    background: rgba(94, 234, 255, 0.05);
    border: 1px solid rgba(94, 234, 255, 0.14);
    padding: 4px 9px;
    border-radius: 999px;
}

/* Card frame */
.gtp-svc-seomock__card {
    position: relative;
    padding: 14px 16px 18px;
    border-radius: var(--gtp-svc-radius);
    background: rgba(4, 10, 19, 0.72);
    border: 1px solid rgba(94, 234, 255, 0.14);
    z-index: 1;
}
.gtp-svc-seomock__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}
.gtp-svc-seomock__dots {
    display: inline-flex;
    gap: 5px;
}
.gtp-svc-seomock__dots span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(220, 230, 245, 0.16);
}
.gtp-svc-seomock__dots span:first-child { background: rgba(94, 234, 255, 0.28); }
.gtp-svc-seomock__tag {
    font-family: var(--gtp-svc-fmono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gtp-svc-text-soft);
    text-transform: uppercase;
}

/* Query line */
.gtp-svc-seomock__query {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(94, 234, 255, 0.05);
    border: 1px solid rgba(94, 234, 255, 0.18);
    margin-bottom: 14px;
    direction: rtl;
}
.gtp-svc-seomock__q-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    color: var(--gtp-svc-cyan);
    flex-shrink: 0;
}
.gtp-svc-seomock__q-icon svg { width: 100%; height: 100%; }
.gtp-svc-seomock__q-text {
    font-size: 13px;
    color: var(--gtp-svc-text);
    line-height: 1.3;
}

/* Result list */
.gtp-svc-seomock__results {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gtp-svc-seomock__result {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    direction: rtl;
}
.gtp-svc-seomock__url {
    font-family: var(--gtp-svc-fmono);
    font-size: 11px;
    color: rgba(220, 230, 245, 0.42);
    letter-spacing: 0.02em;
}
.gtp-svc-seomock__title-line {
    display: block;
    height: 10px;
    width: 82%;
    border-radius: 4px;
    background: rgba(220, 230, 245, 0.12);
}
.gtp-svc-seomock__desc-line {
    display: block;
    height: 6px;
    width: 100%;
    border-radius: 3px;
    background: rgba(220, 230, 245, 0.06);
}
.gtp-svc-seomock__desc-line--short { width: 64%; }

/* Featured / brand result */
.gtp-svc-seomock__result--featured {
    background:
        linear-gradient(180deg, rgba(94, 234, 255, 0.12) 0%, rgba(94, 234, 255, 0.05) 100%);
    border-color: rgba(94, 234, 255, 0.45);
    box-shadow: 0 0 0 1px rgba(94, 234, 255, 0.08), 0 12px 32px -18px rgba(94, 234, 255, 0.35);
}
.gtp-svc-seomock__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 9px 3px 8px;
    border-radius: 999px;
    background: rgba(94, 234, 255, 0.14);
    border: 1px solid rgba(94, 234, 255, 0.5);
    color: var(--gtp-svc-cyan);
    font-family: var(--gtp-svc-fmono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    width: max-content;
    margin-bottom: 4px;
}
.gtp-svc-seomock__badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gtp-svc-cyan);
    box-shadow: 0 0 8px rgba(94, 234, 255, 0.7);
}
.gtp-svc-seomock__brand-url {
    font-family: var(--gtp-svc-fmono);
    font-size: 11px;
    color: rgba(220, 230, 245, 0.6);
}
.gtp-svc-seomock__brand-title {
    font-family: var(--gtp-svc-fhead);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.35;
    color: var(--gtp-svc-cyan2);
}
.gtp-svc-seomock__brand-desc {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--gtp-svc-text-dim);
}

/* Ambient glows behind the card */
.gtp-svc-seomock__glow {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}
.gtp-svc-seomock__glow--a {
    top: -40px;
    inset-inline-end: -30px;
    width: 220px;
    height: 220px;
    background: rgba(94, 234, 255, 0.16);
}
.gtp-svc-seomock__glow--b {
    bottom: -60px;
    inset-inline-start: -40px;
    width: 260px;
    height: 260px;
    background: rgba(124, 92, 255, 0.12);
}

@media (max-width: 640px) {
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-seomock { padding: 18px 16px 20px; }
    .gtp-svc-seomock__brand-title { font-size: 14px; }
    .gtp-svc-seomock__q-text { font-size: 12.5px; }
    .gtp-svc-seomock__glow { filter: blur(36px); }
}
/* On very small viewports (≤380px, e.g. iPhone SE / 360px devices) the
 * decorative glow--b (which is offset -40px inline-start) extends past the
 * viewport and creates a 10-22px horizontal scroll. Constrain it here — no
 * visual change to the SERP mock itself, only the ambient glow is smaller. */
@media (max-width: 380px) {
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-seomock__glow--b {
        width: 180px;
        height: 180px;
        inset-inline-start: -8px;
        bottom: -30px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-seomock__glow--a {
        width: 160px;
        height: 160px;
        inset-inline-end: -10px;
        top: -20px;
    }
}

/* ============================================================
 * FLOW MOCKUPS — search / rank / result
 * (Used inside .gtp-svc-flow__mock)
 * ============================================================ */

/* Search bar */
.gtp-svc-mock--search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.gtp-svc-mock__searchbar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(94, 234, 255, 0.05);
    border: 1px solid rgba(94, 234, 255, 0.22);
    border-radius: 999px;
    width: 100%;
    max-width: 300px;
    direction: rtl;
}
.gtp-svc-mock__searchicon {
    width: 14px;
    height: 14px;
    color: var(--gtp-svc-cyan);
    flex-shrink: 0;
}
.gtp-svc-mock__searchtext {
    flex: 1;
    font-size: 13px;
    color: var(--gtp-svc-text);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gtp-svc-mock--search .gtp-svc-mock__caret {
    width: 2px;
    height: 14px;
    background: var(--gtp-svc-cyan);
    flex-shrink: 0;
    opacity: 0.9;
}

/* SERP ranking rows */
.gtp-svc-mock--rank {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.gtp-svc-mock__rank-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    direction: rtl;
}
.gtp-svc-mock__rank-pos {
    font-family: var(--gtp-svc-fmono);
    font-size: 11px;
    font-weight: 700;
    color: rgba(220, 230, 245, 0.4);
    min-width: 22px;
    letter-spacing: 0.04em;
}
.gtp-svc-mock__rank-line {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: rgba(220, 230, 245, 0.1);
}
.gtp-svc-mock__rank-row--brand {
    background: rgba(94, 234, 255, 0.09);
    border-color: rgba(94, 234, 255, 0.45);
    box-shadow: 0 0 0 1px rgba(94, 234, 255, 0.06);
}
.gtp-svc-mock__rank-row--brand .gtp-svc-mock__rank-pos { color: var(--gtp-svc-cyan); }
.gtp-svc-mock__rank-brand {
    font-family: var(--gtp-svc-fmono);
    font-size: 12px;
    font-weight: 700;
    color: var(--gtp-svc-cyan2);
    letter-spacing: 0.02em;
}

/* Growth line + label */
.gtp-svc-mock--result {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
    width: 100%;
    direction: rtl;
}
.gtp-svc-mock__growth {
    width: 100%;
    max-width: 130px;
    height: auto;
    color: var(--gtp-svc-cyan);
    flex-shrink: 0;
}
.gtp-svc-mock__growth-label {
    font-family: var(--gtp-svc-fmono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gtp-svc-cyan);
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .gtp-svc-mock__searchbar { max-width: 100%; }
    .gtp-svc-mock__growth { max-width: 100px; }
}

/* ============================================================
 * POLISH ROUND — added 2026-07-02:
 *  Typewriter caret + reserved width in the SERP query line,
 *  featured result reveal + subtle pulse, reveal-on-scroll for
 *  section heads / flow cards / method items / KPIs / related cards,
 *  hover-lift on interactive cards, tighter mobile spacing.
 *  All animation-hidden states are gated by `.gtp-organic-motion`
 *  which JS adds to <main>. Without JS or without the class, nothing
 *  is hidden — no invisible content, no CLS.
 * ============================================================ */

/* Query line — reserve dimensions so typewriter doesn't shift layout.
 * The visible caret is a pseudo-element on the text itself, so it always
 * sits immediately after the last typed character (RTL-correct). */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-seomock__query {
    min-height: 40px;
    align-items: center;
}
/* Wrapper stretches to fill the row so the search icon stays anchored. */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-seomock__q-slot {
    flex: 1;
    min-width: 0;
    min-height: 1.3em;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-seomock__q-text {
    display: inline;
    font-size: 13px;
    color: var(--gtp-svc-text);
    line-height: 1.3;
}
/* Caret glued to the end of the typed text. inline-block + vertical-align
 * keep it on the baseline without changing the row height. */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-seomock__q-text::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-inline-start: 3px;
    vertical-align: -2px;
    background: var(--gtp-svc-cyan);
    animation: gtpOrganicCaret 1.05s steps(2, end) infinite;
}
@keyframes gtpOrganicCaret {
    0%, 45%   { opacity: 0.95; }
    50%, 100% { opacity: 0; }
}

/* Featured SERP result — reveal + subtle pulse when JS lights it. */
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-seomock__result--featured {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .7s cubic-bezier(0.16, 0.84, 0.30, 1),
                transform .7s cubic-bezier(0.16, 0.84, 0.30, 1),
                box-shadow .7s ease;
}
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-seomock__result--featured.is-organic-lit {
    opacity: 1;
    transform: translateY(0);
    animation: gtpOrganicPulse 4.6s ease-in-out 1s infinite;
}
@keyframes gtpOrganicPulse {
    0%, 100% {
        box-shadow: 0 0 0 1px rgba(94, 234, 255, 0.08),
                    0 12px 32px -18px rgba(94, 234, 255, 0.35);
    }
    50% {
        box-shadow: 0 0 0 1px rgba(94, 234, 255, 0.22),
                    0 16px 40px -14px rgba(94, 234, 255, 0.5);
    }
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-seomock__badge-dot {
    animation: gtpOrganicDot 2.6s ease-in-out infinite;
}
@keyframes gtpOrganicDot {
    0%, 100% { box-shadow: 0 0 6px rgba(94, 234, 255, 0.55); }
    50%      { box-shadow: 0 0 14px rgba(94, 234, 255, 0.9); }
}

/* Reveal-on-scroll (hidden ONLY when .gtp-organic-motion is present) */
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-section-head,
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-flow__step,
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-ba__col,
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-what__item,
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-kpi,
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-card__title {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .55s cubic-bezier(0.16, 0.84, 0.30, 1),
                transform .55s cubic-bezier(0.16, 0.84, 0.30, 1);
    will-change: opacity, transform;
}
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .is-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger between siblings (flow / what / kpi). Pure CSS via nth-child. */
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-flow__step:nth-child(1)  { transition-delay: 0ms; }
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-flow__step:nth-child(2)  { transition-delay: 90ms; }
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-flow__step:nth-child(3)  { transition-delay: 180ms; }

.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-what__item:nth-child(1)  { transition-delay: 0ms; }
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-what__item:nth-child(2)  { transition-delay: 80ms; }
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-what__item:nth-child(3)  { transition-delay: 160ms; }
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-what__item:nth-child(4)  { transition-delay: 240ms; }

.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-kpi:nth-child(1)         { transition-delay: 0ms; }
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-kpi:nth-child(2)         { transition-delay: 80ms; }
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-kpi:nth-child(3)         { transition-delay: 160ms; }
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-kpi:nth-child(4)         { transition-delay: 240ms; }

.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-ba__col--before { transition-delay: 0ms; }
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-ba__col--after  { transition-delay: 120ms; }

/* Hover-lift on related service cards (desktop only, respects touch). */
@media (hover: hover) and (pointer: fine) {
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-card__title,
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-what__item {
        transition-property: opacity, transform, box-shadow, border-color;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-what__item {
        transform-origin: center;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-what__item:hover {
        transform: translateY(-2px);
    }
}

/* Timeline connector between numbered method steps (visual differentiation
   from AIO) — subtle vertical line linking the numbers.
   Scoped to this page only. */
@media (min-width: 720px) {
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-what__list {
        position: relative;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-what__list::before {
        content: "";
        position: absolute;
        top: 34px;
        bottom: 34px;
        inset-inline-end: 26px;
        width: 1px;
        background: linear-gradient(180deg,
            rgba(94, 234, 255, 0) 0%,
            rgba(94, 234, 255, 0.35) 15%,
            rgba(94, 234, 255, 0.35) 85%,
            rgba(94, 234, 255, 0) 100%);
        pointer-events: none;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-what__n {
        position: relative;
        z-index: 1;
    }
}

/* Slightly tighter mobile spacing in seomock (fixes wrapping edge cases). */
@media (max-width: 420px) {
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-seomock__brand-desc {
        font-size: 12px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-seomock__q-text {
        font-size: 12.5px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-seomock__badge {
        font-size: 10px;
    }
}

/* ============================================================
 * SEARCH JOURNEY MAP — REAL DIFFERENTIATION PASS (2026-07-02)
 * Horizontal 4-station timeline on desktop, vertical on mobile.
 * SVG line draws in on scroll (stroke-dasharray). Pure compositor
 * animations — no layout thrash.
 * ============================================================ */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey {
    padding: 72px 0 88px;
    position: relative;
    overflow-x: clip;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__map {
    position: relative;
    margin-top: 44px;
    padding: 40px 8px 20px;
}
/* Faint background glow behind the journey to differentiate from the flow cards. */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__map::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 90% at 50% 40%, rgba(94, 234, 255, 0.05), transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__line {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px; /* aligns with the dot row */
    width: 100%;
    height: 8px;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

/* Desktop-only "light sweep" — a glowing spot travels the journey line
 * right→left (RTL start→end), timed to the dot pulse cycle (5.6s). */
@media (min-width: 721px) {
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__map::after {
        content: "";
        position: absolute;
        top: 74px;
        right: 4%;
        width: 60px;
        height: 12px;
        border-radius: 8px;
        background: radial-gradient(closest-side, rgba(94,234,255,0.85), transparent 72%);
        filter: blur(2px);
        pointer-events: none;
        z-index: 2;
        animation: gtpJourneySweep 5.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        opacity: 0;
    }
    @keyframes gtpJourneySweep {
        0%   { right: 4%;         opacity: 0; }
        8%   { opacity: 1; }
        92%  { opacity: 1; }
        100% { right: calc(96% - 60px); opacity: 0; }
    }
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__line-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.4s cubic-bezier(0.16, 0.84, 0.30, 1);
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__map.is-drawn .gtp-svc-journey__line-path {
    stroke-dashoffset: 0;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__stations {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__station {
    position: relative;
    text-align: center;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gtp-svc-cyan);
    box-shadow:
        0 0 0 4px rgba(4, 10, 19, 1),
        0 0 0 5px rgba(94, 234, 255, 0.3),
        0 0 14px rgba(94, 234, 255, 0.55);
    position: relative;
    z-index: 3;
    margin-top: 0;
    /* Traveling pulse — a subtle "signal" that walks through the 4 dots
     * every 5.6s. Each dot gets its own animation-delay so the pulse
     * ripples 01 → 02 → 03 → 04. Compositor-only (box-shadow), no CLS. */
    animation: gtpJourneyPulse 5.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__station:nth-child(1) .gtp-svc-journey__dot { animation-delay: 0s; }
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__station:nth-child(2) .gtp-svc-journey__dot { animation-delay: 0.35s; }
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__station:nth-child(3) .gtp-svc-journey__dot { animation-delay: 0.7s; }
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__station:nth-child(4) .gtp-svc-journey__dot { animation-delay: 1.05s; }
@keyframes gtpJourneyPulse {
    0%, 8%, 22%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 0 4px rgba(4, 10, 19, 1),
            0 0 0 5px rgba(94, 234, 255, 0.30),
            0 0 14px rgba(94, 234, 255, 0.55);
    }
    15% {
        transform: scale(1.25);
        box-shadow:
            0 0 0 4px rgba(4, 10, 19, 1),
            0 0 0 6px rgba(94, 234, 255, 0.55),
            0 0 22px rgba(94, 234, 255, 0.95);
    }
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__n {
    font-family: var(--gtp-svc-fmono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gtp-svc-cyan);
    margin-top: 12px;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__title {
    margin: 4px 0 4px;
    font-family: var(--gtp-svc-fhead);
    font-weight: 700;
    font-size: clamp(18px, 1.4vw, 22px);
    color: var(--gtp-svc-text);
    line-height: 1.3;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--gtp-svc-text-dim);
    max-width: 220px;
    margin-inline: auto;
}
/* The "pick" station is where the win happens — subtle highlight. */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__station--pick .gtp-svc-journey__dot {
    background: var(--gtp-svc-cyan2);
    box-shadow:
        0 0 0 4px rgba(4, 10, 19, 1),
        0 0 0 5px rgba(94, 234, 255, 0.5),
        0 0 18px rgba(94, 234, 255, 0.75);
    transform: scale(1.15);
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__station--pick .gtp-svc-journey__title {
    color: var(--gtp-svc-cyan2);
}
/* Convert station — slightly larger dot to emphasize the final conversion. */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__station--convert .gtp-svc-journey__dot {
    background: var(--gtp-svc-cyan);
    box-shadow:
        0 0 0 4px rgba(4, 10, 19, 1),
        0 0 0 6px rgba(94, 234, 255, 0.35),
        0 0 16px rgba(94, 234, 255, 0.6);
}

@media (max-width: 720px) {
    /* Mobile RTL layout — spine + dots explicitly on the RIGHT edge.
     * We use physical `right:` values because the page is guaranteed RTL,
     * and `inset-inline-end` maps to LEFT in RTL (opposite of what we want). */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey { padding: 56px 0 68px; }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__map {
        padding: 20px 0;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__line {
        display: none;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__stations {
        grid-template-columns: 1fr;
        gap: 22px;
        position: relative;
        padding-right: 28px;
        padding-left: 4px;
    }
    /* Vertical spine on the RIGHT (RTL start visually). */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__stations::before {
        content: "";
        position: absolute;
        right: 6px;
        left: auto;
        top: 10px;
        bottom: 10px;
        width: 1px;
        background: linear-gradient(180deg,
            rgba(94, 234, 255, 0),
            rgba(94, 234, 255, 0.55) 12%,
            rgba(94, 234, 255, 0.55) 88%,
            rgba(94, 234, 255, 0)
        );
        pointer-events: none;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__station {
        display: block;
        text-align: right;
        position: relative;
        padding: 0;
    }
    /* Dot on the RIGHT spine (physically). */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__dot {
        position: absolute;
        right: -22px;
        left: auto;
        top: 6px;
        margin: 0;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__n {
        display: block;
        margin: 0 0 4px;
        text-align: right;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__title {
        text-align: right;
        margin-bottom: 4px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__text {
        text-align: right;
        margin-inline: 0;
        max-width: 100%;
    }
}

/* ============================================================
 * ORGANIC SEO SYSTEM BOARD — 3-row engine (2026-07-02, v2)
 * Row 1 : 5 pillars (inputs)
 * Wires : converging SVG lines drawing in on scroll
 * Row 2 : Hub card (engine)
 * Wires : diverging SVG lines drawing in
 * Row 3 : 3 result chips (outputs)
 * Reads left-to-right/top-to-bottom as a clear system diagram.
 * ============================================================ */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system {
    padding: 72px 0 88px;
    position: relative;
    overflow-x: clip;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__board {
    position: relative;
    display: grid;
    /* Row 2 (auto) is a new inline row for the authority/backlinks note.
       Wire → hub → results all shift down by 1 row. */
    grid-template-rows: auto auto 60px auto 60px auto;
    gap: 0;
    align-items: center;
    padding: 28px 0 20px;
    isolation: isolate;
}
/* Ambient board glow */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__board::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 60% at 50% 50%, rgba(94, 234, 255, 0.05), transparent 68%);
    pointer-events: none;
    z-index: 0;
}

/* Row skeletons */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__strip {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__strip--pillars {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-row: 1;
    grid-column: 1 / -1;
}
/* Authority + link-building note under the pillar strip. Sits on its own
   grid row so the wire → hub → results flow underneath keeps its geometry. */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__note {
    grid-row: 2;
    grid-column: 1 / -1;
    margin: 8px auto 0;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-self: center;
    gap: 10px;
    font-family: var(--gtp-svc-fmono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: rgba(94, 234, 255, 0.9);
    background: rgba(94, 234, 255, 0.05);
    border: 1px dashed rgba(94, 234, 255, 0.32);
    border-radius: 999px;
    text-align: center;
    max-width: 720px;
    line-height: 1.4;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__note-dot {
    width: 7px; height: 7px;
    border-radius: 999px;
    background: var(--gtp-svc-cyan);
    box-shadow: 0 0 6px var(--gtp-svc-cyan);
    flex-shrink: 0;
    animation: gtpOrganicNoteDot 2.4s ease-in-out infinite;
}
@keyframes gtpOrganicNoteDot {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.3); }
}
/* Desktop: single-line pill copy shown; mobile mini-card hidden. */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__note-desktop { display: inline; }
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__note-mobile  { display: none; }
@media (max-width: 720px) {
    /* Mobile refinement: convert the pill into a compact mini-card that
       reads as a natural extension of the pillar cards above — same dark
       surface, cyan border, radius, and title/hint typography. */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__note {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: start;
        justify-self: center;
        margin: 14px auto 22px;
        padding: 14px 16px;
        gap: 12px;
        max-width: calc(100% - 24px);
        border-radius: 14px;
        background: rgba(10, 18, 32, 0.7);
        border: 1px solid rgba(94, 234, 255, 0.28);
        text-align: start;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__note-dot {
        margin-top: 7px;
    }
    /* Swap copy variants on mobile: hide the pill line, show the card body. */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__note-desktop { display: none; }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__note-mobile {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__note-title {
        font-family: var(--gtp-svc-fhead);
        font-size: 14px;
        font-weight: 700;
        color: var(--gtp-svc-text);
        line-height: 1.2;
        letter-spacing: 0;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__note-hint {
        font-family: var(--gtp-svc-fbody);
        font-size: 11.5px;
        font-weight: 500;
        color: var(--gtp-svc-text-dim);
        line-height: 1.55;
        letter-spacing: 0.01em;
    }
}
@media (prefers-reduced-motion: reduce) {
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__note-dot {
        animation: none !important;
    }
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__strip--hub {
    justify-content: center;
    grid-row: 4;
    grid-column: 1 / -1;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__strip--results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    grid-row: 6;
    grid-column: 1 / -1;
}

/* Wires (static converging paths — desktop only, hidden on mobile below) */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__wire {
    width: 100%;
    height: 60px;
    z-index: 1;
    pointer-events: none;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__wire--up   { grid-row: 3; grid-column: 1 / -1; }
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__wire--down { grid-row: 5; grid-column: 1 / -1; }

/* Data flow tracks — vertical line + animated particles that overlay the
 * wires (desktop) or stand alone (mobile). Pure CSS animation, no JS. */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__flow {
    position: relative;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    pointer-events: none;
    z-index: 3;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__flow--up   { grid-row: 3; grid-column: 1 / -1; }
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__flow--down { grid-row: 5; grid-column: 1 / -1; }
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__flow-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(94,234,255,0),
        rgba(94,234,255,0.35) 15%,
        rgba(94,234,255,0.35) 85%,
        rgba(94,234,255,0));
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__flow-particle {
    position: absolute;
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
    width: 3px;
    height: 10px;
    border-radius: 2px;
    background: linear-gradient(180deg,
        rgba(94,234,255,0),
        rgba(94,234,255,0.95),
        rgba(94,234,255,0));
    box-shadow: 0 0 8px rgba(94,234,255,0.7);
    animation: gtpSystemFlow 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation-delay: calc(var(--i, 0) * 0.8s);
    opacity: 0;
}
@keyframes gtpSystemFlow {
    0%   { top: -10px;             opacity: 0; }
    12%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { top: calc(100% + 4px);  opacity: 0; }
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__wire path {
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    transition: stroke-dashoffset 1.4s cubic-bezier(0.16, 0.84, 0.30, 1);
}
.gtp-service[data-service-slug="organic-seo"] [data-organic-system].is-drawn .gtp-svc-system__wire path {
    stroke-dashoffset: 0;
}
/* Stagger the 5 up-wires and 3 down-wires */
.gtp-service[data-service-slug="organic-seo"] [data-organic-system].is-drawn .gtp-svc-system__wire--up path:nth-child(1) { transition-delay: 0ms; }
.gtp-service[data-service-slug="organic-seo"] [data-organic-system].is-drawn .gtp-svc-system__wire--up path:nth-child(2) { transition-delay: 80ms; }
.gtp-service[data-service-slug="organic-seo"] [data-organic-system].is-drawn .gtp-svc-system__wire--up path:nth-child(3) { transition-delay: 160ms; }
.gtp-service[data-service-slug="organic-seo"] [data-organic-system].is-drawn .gtp-svc-system__wire--up path:nth-child(4) { transition-delay: 240ms; }
.gtp-service[data-service-slug="organic-seo"] [data-organic-system].is-drawn .gtp-svc-system__wire--up path:nth-child(5) { transition-delay: 320ms; }

/* Pillar card */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 12px;
    border-radius: var(--gtp-svc-radius);
    background: rgba(10, 18, 32, 0.72);
    border: 1px solid rgba(94, 234, 255, 0.18);
    min-width: 0;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__pillar:hover {
    transform: translateY(-3px);
    border-color: rgba(94, 234, 255, 0.45);
    box-shadow: 0 14px 30px -18px rgba(94, 234, 255, 0.45);
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(94, 234, 255, 0.09);
    color: var(--gtp-svc-cyan);
    margin-bottom: 2px;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__pillar-icon svg { width: 20px; height: 20px; }
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__pillar-title {
    font-family: var(--gtp-svc-fhead);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--gtp-svc-text);
    line-height: 1.3;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__pillar-hint {
    font-family: var(--gtp-svc-fmono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--gtp-svc-text-dim);
}

/* Hub */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__hub {
    position: relative;
    padding: 28px 40px;
    border-radius: var(--gtp-svc-radius-l);
    background:
        radial-gradient(60% 100% at 50% 40%, rgba(94, 234, 255, 0.16), transparent 68%),
        var(--gtp-svc-surface2);
    border: 1px solid rgba(94, 234, 255, 0.4);
    text-align: center;
    box-shadow:
        0 30px 80px -40px rgba(94, 234, 255, 0.5),
        inset 0 0 40px rgba(94, 234, 255, 0.05);
    min-width: 220px;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__hub-label {
    display: block;
    font-family: var(--gtp-svc-fhead);
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 28px);
    color: var(--gtp-svc-cyan2);
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__hub-sub {
    display: block;
    font-family: var(--gtp-svc-fmono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gtp-svc-text-dim);
    text-transform: uppercase;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__hub-pulse {
    position: absolute;
    inset: -12px;
    border-radius: inherit;
    border: 1px solid rgba(94, 234, 255, 0.22);
    animation: gtpSystemPulse 4.2s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}
@keyframes gtpSystemPulse {
    0%, 100% { transform: scale(1);    opacity: 0.9;  }
    50%      { transform: scale(1.05); opacity: 0.55; }
}

/* Result chip */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__result {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 18px 14px;
    border-radius: var(--gtp-svc-radius);
    background: rgba(10, 18, 32, 0.72);
    border: 1px solid rgba(94, 234, 255, 0.22);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__result:hover {
    transform: translateY(-3px);
    border-color: rgba(94, 234, 255, 0.55);
    box-shadow: 0 14px 30px -18px rgba(94, 234, 255, 0.5);
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(94, 234, 255, 0.11);
    color: var(--gtp-svc-cyan2);
    margin-bottom: 4px;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__result-icon svg { width: 22px; height: 22px; }
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__result-title {
    font-family: var(--gtp-svc-fhead);
    font-weight: 800;
    font-size: 17px;
    color: var(--gtp-svc-cyan2);
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__result-sub {
    font-size: 12.5px;
    color: var(--gtp-svc-text-dim);
    line-height: 1.5;
}

/* Motion-gated hidden states for the new elements */
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-journey__station,
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-system__pillar,
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-system__result,
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-system__hub {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .6s cubic-bezier(0.16, 0.84, 0.30, 1),
                transform .6s cubic-bezier(0.16, 0.84, 0.30, 1);
    will-change: opacity, transform;
}
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-journey__station.is-in,
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-system__pillar.is-in,
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-system__result.is-in,
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-system__hub.is-in {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger journey stations */
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-journey__station:nth-child(1) { transition-delay: 0ms; }
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-journey__station:nth-child(2) { transition-delay: 120ms; }
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-journey__station:nth-child(3) { transition-delay: 240ms; }
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-journey__station:nth-child(4) { transition-delay: 360ms; }
/* Stagger pillars/results via --i */
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-system__pillar,
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-system__result {
    transition-delay: calc(var(--i, 0) * 80ms);
}

/* Mobile: rebuild as a clean vertical flow with explicit group labels.
 * Reads top-to-bottom: "רכיבי המערכת" → 5 pillars → arrow → "האתר" hub → arrow
 * → "התוצאות" → 3 result chips. Static positioning, no absolute overlaps. */
@media (max-width: 720px) {
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system { padding: 56px 0 68px; }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__board {
        display: block;
        padding: 20px 0 4px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__board::before,
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__board::after {
        display: none !important;
        content: none !important;
    }
    /* Wires (static converging paths) don't work in single-column mobile — hide. */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__wire { display: none; }
    /* Flow tracks: on mobile they carry the entire connection visual (no wires
     * to overlay). Show as block-level, 40px tall between groups. Slightly
     * increased positive bottom margin on --down so the falling particles
     * finish clear of the "התוצאות" label instead of grazing it. */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__flow {
        height: 42px;
        margin: -14px auto -14px;
        width: 100%;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__flow--down {
        margin-bottom: 8px;
    }
    /* Belt-and-suspenders: label sits above particles in stacking order,
     * so if any pixel of a particle grazes the label position it's hidden
     * behind the text — no visible collision. */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__strip--results::before {
        position: relative;
        z-index: 5;
    }

    /* --- Pillars group: 2+2+1 with 5th centered --- */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__strip--pillars {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin: 0 0 30px;
    }
    /* Group label (via ::before, spans both columns) */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__strip--pillars::before {
        content: "רכיבי המערכת";
        grid-column: 1 / -1;
        font-family: var(--gtp-svc-fmono);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.16em;
        color: var(--gtp-svc-cyan);
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 10px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__pillar {
        padding: 14px 10px;
    }
    /* Center the 5th pillar (last-child) — span both columns, half-width, centered */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__pillar:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 5px);
        max-width: 50%;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__pillar-title { font-size: 13.5px; }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__pillar-hint  { font-size: 10.5px; }

    /* --- Hub group --- */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__strip--hub {
        display: flex;
        justify-content: center;
        margin: 0 auto 30px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__hub {
        padding: 24px 26px;
        min-width: 0;
        max-width: 320px;
        margin: 0 auto;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__hub-pulse {
        inset: -10px;
        /* Slightly stronger pulse on mobile so hub reads as the center. */
        animation-duration: 3.6s;
    }

    /* --- Results group --- */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__strip--results {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 0;
    }
    /* Group label */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__strip--results::before {
        content: "התוצאות";
        grid-column: 1 / -1;
        font-family: var(--gtp-svc-fmono);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.16em;
        color: var(--gtp-svc-cyan);
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 10px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__result { padding: 14px 8px; }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__result-icon { width: 36px; height: 36px; }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__result-icon svg { width: 18px; height: 18px; }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__result-title { font-size: 14.5px; }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__result-sub   { font-size: 11px; }
}

/* ============================================================
 * WHAT WE DO — 4-block grid (organic-seo only, v3 clean)
 * 2×2 on desktop, single-column on mobile. Large clean cards
 * with big number badge, icon, title, text. No fragile spine.
 * ============================================================ */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-what--fourblock .gtp-svc-method {
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-what--fourblock .gtp-svc-method__step {
    position: relative;
    padding: 28px 26px 26px;
    border-radius: var(--gtp-svc-radius);
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(94, 234, 255, 0.05), transparent 60%),
        var(--gtp-svc-surface2);
    border: 1px solid rgba(94, 234, 255, 0.18);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    row-gap: 6px;
    min-width: 0;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-what--fourblock .gtp-svc-method__step:hover {
    transform: translateY(-3px);
    border-color: rgba(94, 234, 255, 0.42);
    box-shadow: 0 20px 40px -22px rgba(94, 234, 255, 0.4);
}
/* Override base .gtp-svc-method__n (which is 38x38) — proper 52x52 badge
 * with number centered, no overflow. Everything !important to defeat base. */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-what--fourblock .gtp-svc-method__n {
    grid-row: 1;
    grid-column: 1;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    border-radius: 14px !important;
    border: 1px solid rgba(94, 234, 255, 0.42) !important;
    background: rgba(94, 234, 255, 0.08) !important;
    font-family: var(--gtp-svc-fmono) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    line-height: 1 !important;
    color: var(--gtp-svc-cyan) !important;
    align-self: start;
    box-sizing: border-box !important;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-what--fourblock .gtp-svc-method__icon {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(94, 234, 255, 0.08);
    color: var(--gtp-svc-cyan);
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-what--fourblock .gtp-svc-method__icon svg { width: 22px; height: 22px; }
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-what--fourblock .gtp-svc-method__title {
    grid-row: 2;
    grid-column: 1 / -1;
    margin: 10px 0 0;
    font-family: var(--gtp-svc-fhead);
    font-weight: 800;
    font-size: clamp(19px, 1.6vw, 22px);
    color: var(--gtp-svc-text);
    line-height: 1.28;
    letter-spacing: -0.01em;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-what--fourblock .gtp-svc-method__text {
    grid-row: 3;
    grid-column: 1 / -1;
    margin: 6px 0 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--gtp-svc-text-dim);
}

/* Motion-gated reveal */
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-method__step {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .55s cubic-bezier(0.16, 0.84, 0.30, 1),
                transform .55s cubic-bezier(0.16, 0.84, 0.30, 1);
    transition-delay: calc(var(--i, 0) * 100ms);
    will-change: opacity, transform;
}
.gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-method__step.is-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 720px) {
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-what--fourblock .gtp-svc-method {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 24px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-what--fourblock .gtp-svc-method__step {
        padding: 22px 20px 20px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-what--fourblock .gtp-svc-method__title {
        font-size: 18px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-what--fourblock .gtp-svc-method__text {
        font-size: 14.5px;
    }
}

/* ============================================================
 * AUTHOR QUOTE — Oren, dark glass card
 * ============================================================ */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote {
    padding: 64px 0 40px;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote__card {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 36px 34px;
    border-radius: var(--gtp-svc-radius-l);
    background:
        radial-gradient(60% 100% at 100% 0%, rgba(94, 234, 255, 0.08), transparent 60%),
        var(--gtp-svc-surface2);
    border: 1px solid rgba(94, 234, 255, 0.22);
    box-shadow: 0 30px 80px -50px rgba(94, 234, 255, 0.4);
    isolation: isolate;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote__mark {
    position: absolute;
    top: 6px;
    inset-inline-end: 22px;
    font-family: var(--gtp-svc-fhead);
    font-size: 110px;
    line-height: 1;
    color: rgba(94, 234, 255, 0.14);
    pointer-events: none;
    user-select: none;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote__text {
    margin: 0 0 24px;
    padding: 0;
    font-family: var(--gtp-svc-fhead);
    font-weight: 500;
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.55;
    color: var(--gtp-svc-text);
    letter-spacing: -0.005em;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote__avatar {
    display: inline-flex;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(94, 234, 255, 0.06);
    border: 1px solid rgba(94, 234, 255, 0.28);
    box-shadow: 0 0 0 3px rgba(94, 234, 255, 0.08);
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote__id {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote__name {
    font-family: var(--gtp-svc-fhead);
    font-weight: 800;
    font-size: 15.5px;
    color: var(--gtp-svc-text);
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote__role {
    font-family: var(--gtp-svc-fmono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gtp-svc-text-dim);
}

@media (max-width: 720px) {
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote { padding: 48px 0 24px; }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote__card {
        padding: 30px 22px 26px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote__mark {
        font-size: 76px;
        top: 2px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote__text {
        font-size: 16.5px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-quote__avatar {
        width: 52px; height: 52px;
    }
}

/* ============================================================
 * CLIENTS — logo strip on dark theme, monochrome + hover brighten
 * ============================================================ */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-clients {
    padding: 72px 0 84px;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-clients__grid {
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
/* Bigger logos yet: logos dominate the card, minimal chrome. */
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-clients__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border-radius: var(--gtp-svc-radius);
    background: rgba(10, 18, 32, 0.55);
    border: 1px solid rgba(94, 234, 255, 0.14);
    min-height: 132px;
    transition: border-color .35s ease, background .35s ease, transform .35s ease, box-shadow .35s ease;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-clients__item:hover {
    border-color: rgba(94, 234, 255, 0.5);
    background: rgba(94, 234, 255, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -18px rgba(94, 234, 255, 0.45);
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-clients__logo {
    display: block;
    max-width: 100%;
    max-height: 108px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* SVG filter — tints any color logo to solid cyan (#5EEAFF) via
     * feFlood+feComposite. Preserves alpha, so PNG edges stay clean.
     * Non-supporting browsers fall back to the grayscale chain. */
    filter: grayscale(1) brightness(1.5) contrast(0.9);        /* fallback */
    filter: url(#gtpClientsCyan);                              /* preferred */
    opacity: 0.95;
    transition: filter .35s ease, opacity .35s ease, transform .35s ease;
    will-change: filter, opacity;
}
.gtp-service[data-service-slug="organic-seo"] .gtp-svc-clients__item:hover .gtp-svc-clients__logo {
    filter: grayscale(0) brightness(1.05);                     /* fallback */
    filter: url(#gtpClientsCyanBright);                        /* preferred */
    opacity: 1;
}

@media (max-width: 1024px) {
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-clients__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 720px) {
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-clients { padding: 56px 0 68px; }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-clients__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 24px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-clients__item {
        padding: 8px 8px;
        min-height: 108px;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-clients__logo {
        max-height: 84px;
    }
}

/* Respect prefers-reduced-motion: kill all custom animations/transitions,
   show hidden states immediately, disable caret blink and pulse. */
@media (prefers-reduced-motion: reduce) {
    .gtp-service[data-service-slug="organic-seo"],
    .gtp-service[data-service-slug="organic-seo"] * {
        animation: none !important;
        transition: none !important;
    }
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-section-head,
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-flow__step,
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-ba__col,
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-what__item,
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-kpi,
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-card__title,
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-seomock__result--featured,
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-journey__station,
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-system__pillar,
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-system__result,
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-system__hub,
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-method__step,
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-quote__card,
    .gtp-service[data-service-slug="organic-seo"].gtp-organic-motion .gtp-svc-clients__item {
        opacity: 1 !important;
        transform: none !important;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-seomock__q-text::after {
        opacity: 0 !important;
    }
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__line-path,
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__wire path {
        stroke-dashoffset: 0 !important;
    }
    /* Kill journey traveling pulse under reduced motion. */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__dot {
        animation: none !important;
        transform: none !important;
    }
    /* Kill journey light sweep. */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-journey__map::after {
        animation: none !important;
        opacity: 0 !important;
    }
    /* Hide flow particles entirely under reduced motion — the line stays visible. */
    .gtp-service[data-service-slug="organic-seo"] .gtp-svc-system__flow-particle {
        animation: none !important;
        opacity: 0 !important;
    }
}
