/* ==========================================================================
   Sections — about, process, projects, clients
   ========================================================================== */

/* About */
.about {
    background: var(--bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4.5rem;
    align-items: start;
}

.about-image-wrap {
    position: sticky;
    top: 6rem;
}

.profile-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 500;
}

.profile-badge .icon {
    color: var(--accent);
}

.about-positioning {
    margin-top: 1.25rem;
    padding: 1.4rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.6;
    font-weight: 500;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.pillar {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

.pillar:first-child {
    padding-top: 0;
    border-top: none;
}

.pillar h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.pillar p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.005em;
}

/* Process — From messy operations to structured systems
   Visual flow: Map → Design → Build  */
.process {
    background: var(--bg);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.process-intro {
    font-size: 1.35rem;
    color: var(--text);
    line-height: 1.5;
    font-weight: 500;
    max-width: 720px;
    margin-bottom: 3rem;
    letter-spacing: -0.005em;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
    position: relative;
    align-items: stretch;
}

/* Connector lines on desktop */
.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg,
        color-mix(in srgb, var(--accent-2) 50%, transparent) 0%,
        color-mix(in srgb, var(--accent) 50%, transparent) 100%);
    opacity: 0.35;
    z-index: 0;
}

.process-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
    box-shadow: var(--shadow);
}

/* Big numbering */
.process-step-num {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.03em;
    opacity: 0.85;
}

.process-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}

.process-step.problem .process-step-icon {
    background: color-mix(in srgb, var(--accent-2) 15%, transparent);
    color: var(--accent-2);
    border-color: color-mix(in srgb, var(--accent-2) 30%, transparent);
}

.process-step h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.95rem;
    letter-spacing: -0.01em;
}

.process-step ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.process-step li {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.55;
    padding-left: 1.4rem;
    position: relative;
}

.process-step li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.7;
}

.process-step.problem li::before {
    background: var(--accent-2);
}

/* Featured Projects */
.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.featured-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--card-accent, var(--gradient));
    transition: height 0.4s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 25%, var(--border));
    box-shadow: var(--shadow);
}

.featured-card:hover::before {
    height: 100%;
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.featured-org {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.featured-name {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-top: 0.4rem;
}

.featured-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.5rem;
}

.tech-badge {
    background: transparent;
    color: var(--text-muted);
    padding: 0.35rem 0.75rem;
    border-radius: 7px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

.featured-link {
    margin-top: auto;
    color: var(--accent);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding-top: 1rem;
}

.featured-link::after {
    content: '→';
    transition: transform 0.25s ease;
}

.featured-link:hover::after {
    transform: translateX(4px);
}

.featured-body {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.featured-block h5 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.featured-block p {
    color: var(--text);
    line-height: 1.65;
    font-size: 1.08rem;
}

.featured-block.impact {
    padding: 1rem 1.25rem;
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    margin-top: 0.25rem;
}

.featured-block.impact h5 {
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.featured-block.impact p {
    color: var(--text);
    font-size: 1.05rem;
}

.featured-block.impact strong {
    color: var(--text);
    font-weight: 700;
}

/* Impact metric badges */
.impact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.impact-badge {
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
    padding: 0.4rem 0.85rem;
    border-radius: 7px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}

/* Other projects */
.other-projects {
    margin-top: 4rem;
}

.other-projects h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.other-projects h3::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--accent);
}

.other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1rem;
}

.other-card {
    padding: 1.5rem 1.6rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.25s ease;
}

.other-card:hover {
    border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
    transform: translateY(-2px);
}

.other-card-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.other-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Clients */
.clients {
    background: var(--bg-alt);
}

.client-category {
    margin-bottom: 2.5rem;
}

.client-category-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client-category-count {
    color: var(--accent);
    font-weight: 700;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 1.25rem;
}

.client-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.85rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.client-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--accent) 25%, var(--border));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.light-mode .client-card:hover {
    box-shadow: 0 12px 30px rgba(20, 25, 60, 0.08);
}

.client-monogram {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--gradient-soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.client-info {
    min-width: 0;
    flex: 1;
}

.client-industry {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.55rem;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.55rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.client-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.clients-more {
    margin-top: 2.5rem;
    padding: 1.85rem;
    text-align: center;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.clients-more p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 760px;
    margin: 0;
}

.clients-more strong {
    color: var(--text);
    font-weight: 600;
}

.clients-extra {
    margin-top: 1.5rem;
    animation: revealClients 0.4s ease;
}

.clients-extra[hidden] {
    display: none;
}


/* ==========================================================================
   Founded platforms — own EdTech products
   ========================================================================== */

.founded {
    background: var(--bg);
    position: relative;
}

.founded::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255, 77, 141, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.founded > .container {
    position: relative;
    z-index: 1;
}

.founded-intro {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.6;
    max-width: 760px;
    margin-bottom: 3rem;
    font-weight: 500;
}

.founded-intro strong {
    color: var(--accent);
    font-weight: 700;
}

.founded-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.founded-card {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.founded-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, var(--gradient));
    opacity: 0.85;
}

.founded-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 35%, var(--border-strong));
    box-shadow: var(--shadow);
}

.founded-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.founded-mark {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.founded-meta {
    min-width: 0;
}

.founded-role {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.founded-domain {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.2;
    word-break: break-word;
}

.founded-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.founded-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.35rem;
}

.founded-tag {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 0.35rem 0.75rem;
    border-radius: 7px;
    font-size: 0.82rem;
    font-weight: 600;
}

.founded-link {
    margin-top: auto;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
    opacity: 0.85;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.founded-link::after {
    content: '↗';
    transition: transform 0.25s ease;
}

.founded-link:hover {
    color: var(--accent);
    opacity: 1;
}

.founded-link:hover::after {
    transform: translate(2px, -2px);
}

@media (max-width: 760px) {
    .founded-grid {
        grid-template-columns: 1fr;
    }

    .founded-domain {
        font-size: 1.25rem;
    }
}


/* Client outcome line — qualitative result */
.client-outcome {
    margin-top: 0.75rem;
    padding-top: 0.7rem;
    border-top: 1px dashed var(--border);
    font-size: 0.92rem;
    color: var(--accent);
    font-weight: 600;
    line-height: 1.45;
}

.client-outcome::before {
    content: '↳ ';
    opacity: 0.7;
}

/* Founded section — closing reframe note */
.founded-note {
    margin-top: 2.25rem;
    padding: 1.4rem 1.6rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.founded-note strong {
    color: var(--text);
    font-weight: 600;
}

/* Process — deliverables list inside step */
.process-deliverables {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border);
}

.process-deliverables-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.process-deliverables-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.process-deliverables-tags span {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
}

.process-step.problem .process-deliverables-tags span {
    background: color-mix(in srgb, var(--accent-2) 12%, transparent);
    color: var(--accent-2);
}

/* ==========================================================================
   Services page — positioning hero, outcomes, results, final CTA
   (scoped classes used only by /services/ and /en/services/)
   ========================================================================== */

/* Section rhythm & contrast — alternate surfaces so the long mobile scroll
   reads as distinct blocks instead of one black ribbon. */
.svc-hero {
    background: var(--bg);
    padding-top: 9rem;
    position: relative;
    overflow: hidden;
}

.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 15% 10%, rgba(0, 212, 255, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 85% 30%, rgba(255, 77, 141, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.light-mode .svc-hero::before {
    background:
        radial-gradient(ellipse 55% 45% at 15% 10%, rgba(0, 143, 179, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 85% 30%, rgba(214, 54, 114, 0.08) 0%, transparent 60%);
}

.svc-hero > .container {
    position: relative;
    z-index: 1;
}

.services-section {
    background: var(--bg-alt);
}

.outcomes {
    background: var(--bg);
}

.process {
    background: var(--bg-alt);
}

.results {
    background: var(--bg);
}

.svc-cta {
    background: var(--bg-alt);
}

/* Hero copy */
.svc-hero-title {
    font-size: clamp(2.1rem, 5.2vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--text);
    max-width: 17ch;
    margin-bottom: 1.4rem;
}

.svc-hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 640px;
    margin-bottom: 2rem;
}

.svc-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}

/* Audience chips */
.svc-audience {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 3rem;
}

.svc-audience-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-soft);
    margin-right: 0.25rem;
}

.svc-audience span:not(.svc-audience-label) {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Before -> After snapshot */
.svc-snapshot {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: stretch;
    max-width: 760px;
}

.svc-snapshot-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.6rem;
}

.svc-snapshot-card.before {
    border-left: 3px solid var(--accent-2);
}

.svc-snapshot-card.after {
    border-left: 3px solid var(--accent);
    background: var(--accent-soft);
    border-color: color-mix(in srgb, var(--accent) 22%, var(--border));
}

.svc-snapshot-label {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.85rem;
}

.svc-snapshot-card.before .svc-snapshot-label {
    color: var(--accent-2);
}

.svc-snapshot-card.after .svc-snapshot-label {
    color: var(--accent);
}

.svc-snapshot-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.svc-snapshot-card li {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.5;
    padding-left: 1.3rem;
    position: relative;
}

.svc-snapshot-card.before li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--accent-2);
    font-weight: 700;
}

.svc-snapshot-card.after li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.svc-snapshot-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    opacity: 0.7;
}

/* Outcomes — example systems */
.outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.outcome-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.85rem 1.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
    box-shadow: var(--shadow);
}

.outcome-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-soft);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}

.outcome-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.outcome-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Process step — adoption note inside step 03 */
.process-step-note {
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text);
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
}

.process-step.problem .process-step-note {
    background: color-mix(in srgb, var(--accent-2) 12%, transparent);
    border-left-color: var(--accent-2);
}

/* Results — what changes after */
.results-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 2rem;
    max-width: 880px;
    margin-bottom: 2.5rem;
}

.results-list li {
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.5;
    padding-left: 1.9rem;
    position: relative;
}

.results-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.4rem;
    height: 1.4rem;
    color: var(--accent);
    font-weight: 700;
}

.results-tech {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 820px;
    padding: 1.3rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.results-tech strong {
    color: var(--text);
    font-weight: 600;
}

/* Final CTA panel */
.svc-cta-panel {
    background:
        radial-gradient(ellipse 70% 60% at 25% 15%, rgba(0, 212, 255, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 55% at 80% 85%, rgba(255, 77, 141, 0.15) 0%, transparent 60%),
        var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: clamp(2.25rem, 5vw, 4rem);
    text-align: center;
}

.svc-cta-panel h2 {
    font-size: clamp(1.7rem, 3.6vw, 2.6rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--text);
    max-width: 22ch;
    margin: 0 auto 1.1rem;
}

.svc-cta-panel p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.svc-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
}

/* ----- Tablet ----- */
@media (max-width: 900px) {
    .outcome-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ----- Mobile: bigger, calmer, more breathing room ----- */
@media (max-width: 640px) {
    .svc-hero {
        padding-top: 7.5rem;
    }

    .svc-hero-sub {
        font-size: 1.12rem;
    }

    .svc-hero-cta .btn {
        flex: 1 1 100%;
        justify-content: center;
    }

    .svc-snapshot {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .svc-snapshot-arrow {
        transform: rotate(90deg);
        padding: 0.2rem 0;
    }

    .outcome-grid {
        grid-template-columns: 1fr;
    }

    .results-list {
        grid-template-columns: 1fr;
    }

    /* Larger, less cramped card copy on phones */
    .service-card {
        padding: 1.6rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-pain {
        font-size: 1.05rem;
    }

    .service-target {
        font-size: 1rem;
    }

    .service-stack {
        font-size: 0.8rem;
    }

    .process-step {
        padding: 2rem 1.6rem 1.75rem;
    }

    .process-step li {
        font-size: 1.02rem;
    }

    .svc-cta-actions .btn {
        flex: 1 1 100%;
        justify-content: center;
    }
}
