/**
 * SEO-Flow Theme Stylesheet
 * Modern SaaS design with clean layout and subtle animations
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #fafafa;
    --color-text: #1a1a1a;
    --color-text-secondary: #666666;
    --color-primary: #2dd4bf;
    --color-primary-dark: #14b8a6;
    --color-border: #e5e7eb;
    --color-card-bg: #ffffff;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius: 8px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --ai-bg: #f7f8fb;
    --ai-bg-white: #ffffff;
    --ai-text: #0b1020;
    --ai-muted: #667085;
    --ai-primary: #4f46e5;
    --ai-violet: #7c3aed;
    --ai-cyan: #06b6d4;
    --ai-mint: #2dd4bf;
    --ai-dark: #0b1020;
    --ai-dark-2: #0f172a;
    --ai-dark-card: #111827;
    --ai-border: rgba(15, 23, 42, 0.08);
    --ai-border-dark: rgba(255, 255, 255, 0.1);
    --ai-radius-xl: 28px;
    --ai-radius-lg: 20px;
    --ai-shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.1);
    --ai-shadow-dashboard: 0 32px 90px rgba(15, 23, 42, 0.3);
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* AI PIPELINE landing v2 */
.page-template-page-landing .site-header {
    display: none;
}

body.page-template-page-landing {
    overflow-x: hidden;
}

.ai-pipeline-page {
    position: relative;
    background:
        radial-gradient(circle at 8% 12%, rgba(124, 58, 237, 0.08), transparent 24%),
        radial-gradient(circle at 76% 18%, rgba(6, 182, 212, 0.12), transparent 18%),
        linear-gradient(180deg, #fbfcff 0%, #f7f8fb 100%);
    overflow: hidden;
}

.ai-pipeline-page::before,
.ai-pipeline-page::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(20px);
}

.ai-pipeline-page::before {
    width: 440px;
    height: 440px;
    left: -180px;
    top: 420px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
}

.ai-pipeline-page::after {
    width: 520px;
    height: 520px;
    right: -240px;
    top: 120px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.12), transparent 70%);
}

.ai-pipeline-header,
.ai-pipeline-hero,
.ai-pipeline-stats,
.ai-pipeline-process {
    position: relative;
    z-index: 1;
}

.ai-pipeline-header .container,
.ai-pipeline-hero .container,
.ai-pipeline-stats .container,
.ai-pipeline-process .container {
    max-width: 1240px;
}

.ai-pipeline-header {
    padding: 24px 0 16px;
}

.ai-pipeline-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.ai-pipeline-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ai-text);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.ai-pipeline-header__brand span span {
    color: var(--ai-primary);
}

.ai-pipeline-header__logo {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.ai-pipeline-header__brand-image {
    display: block;
    width: auto;
    height: 52px;
}

.ai-pipeline-header__brand-text {
    display: inline-block;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.ai-pipeline-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
    min-width: 0;
}

.ai-pipeline-header__nav a {
    color: var(--ai-text);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.ai-pipeline-header__nav a:hover {
    color: var(--ai-primary);
}

.ai-pipeline-header__actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ai-pipeline-header__cta {
    min-width: 150px;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    box-shadow: 0 16px 32px rgba(79, 70, 229, 0.2);
}

.ai-pipeline-header__cta:hover {
    background: linear-gradient(135deg, #4338ca 0%, #5b61f0 100%);
    box-shadow: 0 18px 34px rgba(79, 70, 229, 0.24);
}

.ai-pipeline-hero {
    padding: 20px 0 28px;
}

.ai-pipeline-hero__container {
    position: relative;
}

.ai-pipeline-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.49fr) minmax(0, 0.51fr);
    align-items: center;
    gap: 36px;
}

.ai-pipeline-hero__content {
    max-width: 600px;
    min-width: 0;
}

.ai-pipeline-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(79, 70, 229, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ai-primary);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(148, 163, 184, 0.12);
}

.ai-pipeline-hero__badge-icon {
    color: var(--ai-violet);
    font-size: 15px;
}

.ai-pipeline-hero__title {
    margin-bottom: 14px;
    color: var(--ai-text);
    font-size: clamp(56px, 8vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.ai-pipeline-gradient-text {
    background: linear-gradient(135deg, var(--ai-primary) 0%, #6b66f1 35%, var(--ai-violet) 68%, var(--ai-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ai-pipeline-hero__subtitle {
    max-width: 540px;
    margin-bottom: 18px;
    color: #495267;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.ai-pipeline-hero__description {
    max-width: 560px;
    margin-bottom: 28px;
    color: var(--ai-muted);
    font-size: 20px;
    line-height: 1.62;
}

.ai-pipeline-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.ai-pipeline-button {
    min-height: 50px;
    padding: 14px 28px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 600;
}

.ai-pipeline-button--primary {
    background: linear-gradient(135deg, var(--ai-primary) 0%, #6366f1 45%, var(--ai-cyan) 100%);
    box-shadow: 0 18px 38px rgba(79, 70, 229, 0.28);
}

.ai-pipeline-button--primary:hover {
    box-shadow: 0 22px 44px rgba(79, 70, 229, 0.32);
}

.ai-pipeline-button--secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--ai-primary);
    border: 1px solid rgba(79, 70, 229, 0.18);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.ai-pipeline-button--secondary:hover {
    background: #fff;
    color: var(--ai-violet);
    border-color: rgba(124, 58, 237, 0.24);
}

.ai-pipeline-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ai-pipeline-badge-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ai-text);
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.ai-pipeline-badge-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    color: var(--ai-primary);
    font-size: 16px;
}

.ai-pipeline-hero__visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.ai-pipeline-hero__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.ai-pipeline-hero__glow--mint {
    width: 280px;
    height: 280px;
    left: -110px;
    bottom: 26px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.26), transparent 68%);
}

.ai-pipeline-hero__glow--violet {
    width: 340px;
    height: 340px;
    right: -80px;
    top: 30px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.18), transparent 70%);
}

.ai-pipeline-dashboard {
    position: relative;
    display: grid;
    width: 100%;
    max-width: 646px;
    max-height: 660px;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--ai-border-dark);
    border-radius: var(--ai-radius-xl);
    background:
        linear-gradient(180deg, rgba(16, 24, 40, 0.98) 0%, rgba(11, 16, 32, 0.99) 100%);
    color: #eef2ff;
    box-shadow: var(--ai-shadow-dashboard);
    overflow: hidden;
    margin-left: auto;
}

.ai-pipeline-dashboard__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ai-pipeline-dashboard__product {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}

.ai-pipeline-dashboard__product-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ai-primary), var(--ai-cyan));
    box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.14);
}

.ai-pipeline-dashboard__profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-pipeline-dashboard__profile-date {
    color: #94a3b8;
    font-size: 11px;
}

.ai-pipeline-dashboard__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #374151, #1f2937);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 700;
}

.ai-pipeline-dashboard__layout {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.ai-pipeline-dashboard__sidebar {
    display: grid;
    gap: 6px;
    align-content: start;
    padding: 12px 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-pipeline-dashboard__sidebar-item {
    min-width: 0;
    padding: 10px 11px;
    border-radius: 12px;
    color: #93a4bd;
    font-size: 12px;
    line-height: 1.2;
    word-break: normal;
}

.ai-pipeline-dashboard__sidebar-item.is-active {
    background: rgba(255, 255, 255, 0.07);
    color: #f8fafc;
}

.ai-pipeline-dashboard__main {
    display: grid;
    gap: 12px;
}

.ai-pipeline-dashboard__headline h2 {
    color: #f8fafc;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
}

.ai-pipeline-dashboard__metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.ai-pipeline-dashboard__metric,
.ai-pipeline-dashboard__panel {
    min-width: 0;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-pipeline-dashboard__metric-label {
    display: block;
    min-width: 0;
    min-height: 30px;
    margin-bottom: 10px;
    color: #94a3b8;
    font-size: 11px;
    line-height: 1.35;
    word-break: normal;
    overflow-wrap: normal;
}

.ai-pipeline-dashboard__metric strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.ai-pipeline-dashboard__metric-delta {
    color: #34d399;
    font-size: 11px;
    font-weight: 600;
}

.ai-pipeline-dashboard__insights,
.ai-pipeline-dashboard__lists {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.92fr);
    gap: 14px;
}

.ai-pipeline-dashboard__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: #f8fafc;
    font-size: 13px;
    font-weight: 600;
}

.ai-pipeline-dashboard__panel--status {
    min-width: 0;
}

.ai-pipeline-dashboard__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #93a4bd;
    font-size: 10px;
}

.ai-pipeline-dashboard__legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ai-pipeline-dashboard__legend i,
.ai-pipeline-dashboard__status-marker {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.is-violet {
    background: #8b5cf6;
}

.is-cyan {
    background: #22d3ee;
}

.is-indigo {
    background: #6366f1;
}

.is-orange {
    background: #fb923c;
}

.ai-pipeline-chart {
    width: 100%;
    height: 138px;
}

.ai-pipeline-chart line {
    stroke: rgba(148, 163, 184, 0.12);
    stroke-width: 1;
}

.ai-pipeline-chart__line {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ai-pipeline-chart__line--violet {
    stroke: #8b5cf6;
}

.ai-pipeline-chart__line--cyan {
    stroke: #22d3ee;
}

.ai-pipeline-dashboard__status-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
}

.ai-pipeline-dashboard__donut {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background:
        conic-gradient(#8b5cf6 0 60%, #6366f1 60% 85%, #fb923c 85% 94%, #22d3ee 94% 100%);
    margin: 0 auto;
}

.ai-pipeline-dashboard__donut::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    background: #141c2d;
}

.ai-pipeline-dashboard__donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.ai-pipeline-dashboard__donut-center span {
    color: #94a3b8;
    font-size: 11px;
}

.ai-pipeline-dashboard__donut-center strong {
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
}

.ai-pipeline-dashboard__status-list {
    display: grid;
    gap: 8px;
    list-style: none;
}

.ai-pipeline-dashboard__status-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 12px;
    line-height: 1.35;
    word-break: normal;
}

.ai-pipeline-dashboard__status-marker {
    flex-shrink: 0;
}

.ai-pipeline-dashboard__status-label {
    min-width: 0;
    color: #dbe4f0;
    overflow-wrap: normal;
    word-break: normal;
}

.ai-pipeline-dashboard__status-list strong {
    color: #f8fafc;
}

.ai-pipeline-dashboard__list {
    display: grid;
    gap: 8px;
    list-style: none;
}

.ai-pipeline-dashboard__list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    color: #dbe4f0;
    font-size: 12px;
    line-height: 1.35;
}

.ai-pipeline-dashboard__list li span {
    min-width: 0;
    word-break: normal;
    overflow-wrap: normal;
}

.ai-pipeline-dashboard__list li em {
    color: #9ddcc9;
    font-size: 10px;
    font-style: normal;
    white-space: nowrap;
}

.ai-pipeline-dashboard__list--tasks li em {
    color: #94a3b8;
}

.ai-pipeline-stats {
    padding: 20px 0 36px;
}

.ai-pipeline-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--ai-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--ai-shadow-soft);
}

.ai-pipeline-stats__card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-areas:
        'icon value'
        'icon text';
    column-gap: 16px;
    row-gap: 4px;
    align-items: start;
    min-width: 0;
    padding: 18px 18px 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
}

.ai-pipeline-stats__card + .ai-pipeline-stats__card {
    border-left: none;
}

.ai-pipeline-stats__icon {
    grid-area: icon;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.08), rgba(6, 182, 212, 0.06));
    color: var(--ai-primary);
    font-size: 25px;
}

.ai-pipeline-stats__card strong {
    grid-area: value;
    display: block;
    margin-bottom: 0;
    color: var(--ai-text);
    font-size: clamp(34px, 3.8vw, 44px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.ai-pipeline-stats__card p {
    grid-area: text;
    min-width: 0;
    color: var(--ai-muted);
    font-size: 15px;
    line-height: 1.45;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.ai-pipeline-process {
    position: relative;
    padding: 86px 0 94px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(99, 102, 241, 0.18), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(34, 211, 238, 0.12), transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #0b1020 100%);
}

.ai-pipeline-process::before,
.ai-pipeline-process::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(18px);
}

.ai-pipeline-process::before {
    width: 320px;
    height: 320px;
    left: -120px;
    top: 96px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.22), transparent 70%);
}

.ai-pipeline-process::after {
    width: 360px;
    height: 360px;
    right: -140px;
    bottom: 24px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.18), transparent 72%);
}

.ai-pipeline-process .container {
    position: relative;
    z-index: 1;
}

.ai-pipeline-process__intro {
    max-width: 860px;
    margin: 0 auto 44px;
    text-align: center;
}

.ai-pipeline-process__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(129, 140, 248, 0.24);
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.12);
    color: #c7d2fe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ai-pipeline-process__title {
    margin-bottom: 14px;
    text-align: center;
    color: #f8fafc;
    font-size: clamp(36px, 4.8vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.ai-pipeline-process__subtitle {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.7;
}

.ai-pipeline-process__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.ai-pipeline-process__grid::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0), rgba(99, 102, 241, 0.45), rgba(34, 211, 238, 0.28), rgba(45, 212, 191, 0.45), rgba(99, 102, 241, 0));
}

.ai-pipeline-process__card {
    position: relative;
    min-width: 0;
    padding: 24px 22px 22px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(11, 16, 32, 0.96) 100%);
    box-shadow: 0 24px 48px rgba(2, 6, 23, 0.3);
}

.ai-pipeline-process__card::before {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.72), rgba(34, 211, 238, 0.4), rgba(45, 212, 191, 0.62));
}

.ai-pipeline-process__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border: 1px solid rgba(129, 140, 248, 0.24);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(6, 182, 212, 0.12));
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.ai-pipeline-process__card h3 {
    margin-bottom: 12px;
    color: #f8fafc;
    font-size: 20px;
    line-height: 1.28;
}

.ai-pipeline-process__card p {
    color: #a8b3c9;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 1439px) {
    .ai-pipeline-header .container,
    .ai-pipeline-hero .container,
    .ai-pipeline-stats .container,
    .ai-pipeline-process .container {
        max-width: 1200px;
    }

    .ai-pipeline-dashboard {
        max-width: 620px;
    }

    .ai-pipeline-process__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ai-pipeline-process__grid::before {
        display: none;
    }
}

@media (max-width: 1200px) {
    .ai-pipeline-dashboard__metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .ai-pipeline-header__inner {
        flex-wrap: wrap;
    }

    .ai-pipeline-header__nav {
        order: 3;
        flex: 0 0 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .ai-pipeline-hero__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ai-pipeline-hero__content {
        max-width: none;
    }

    .ai-pipeline-hero__visual {
        justify-content: flex-start;
    }

    .ai-pipeline-dashboard {
        max-width: none;
        max-height: none;
    }

    .ai-pipeline-dashboard__layout {
        grid-template-columns: 1fr;
    }

    .ai-pipeline-dashboard__sidebar {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ai-pipeline-dashboard__insights,
    .ai-pipeline-dashboard__lists {
        grid-template-columns: 1fr;
    }

    .ai-pipeline-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ai-pipeline-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .ai-pipeline-stats__card + .ai-pipeline-stats__card {
        border-left: none;
    }
}

@media (max-width: 768px) {
    .ai-pipeline-header {
        padding-top: 20px;
    }

    .ai-pipeline-header__nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 14px;
    }

    .ai-pipeline-header__nav a {
        font-size: 14px;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .ai-pipeline-header__actions {
        width: 100%;
    }

    .ai-pipeline-header__cta {
        width: 100%;
    }

    .ai-pipeline-hero {
        padding-top: 12px;
    }

    .ai-pipeline-hero__subtitle {
        font-size: 22px;
    }

    .ai-pipeline-hero__description {
        font-size: 18px;
    }

    .ai-pipeline-hero__actions .btn {
        width: 100%;
    }

    .ai-pipeline-badges {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .ai-pipeline-badge-card {
        width: 100%;
        min-width: 0;
        justify-content: center;
        font-size: 14px;
    }

    .ai-pipeline-dashboard {
        padding: 16px;
    }

    .ai-pipeline-dashboard__headline h2 {
        font-size: 28px;
    }

    .ai-pipeline-dashboard__sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ai-pipeline-dashboard__metrics,
    .ai-pipeline-process__grid {
        grid-template-columns: 1fr;
    }

    .ai-pipeline-stats__grid {
        grid-template-columns: 1fr;
    }

    .ai-pipeline-process {
        padding: 72px 0 76px;
    }

    .ai-pipeline-process__intro {
        margin-bottom: 32px;
    }

    .ai-pipeline-process__subtitle {
        font-size: 16px;
    }

    .ai-pipeline-stats__card {
        grid-template-columns: 52px minmax(0, 1fr);
        padding: 16px 14px;
    }

    .ai-pipeline-stats__icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ai-pipeline-header__brand {
        font-size: 16px;
    }

    .ai-pipeline-header__brand-image {
        height: 42px;
    }

    .ai-pipeline-header__brand-text {
        font-size: 24px;
    }

    .ai-pipeline-header__nav,
    .ai-pipeline-badges {
        grid-template-columns: 1fr;
    }

    .ai-pipeline-process__card {
        padding: 20px 18px 18px;
    }

    .ai-pipeline-process__step {
        margin-bottom: 18px;
    }

    .ai-pipeline-hero__badge {
        font-size: 13px;
    }

    .ai-pipeline-hero__title {
        font-size: 40px;
    }

    .ai-pipeline-dashboard__status-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Typography */
.heading-xl {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.heading-l {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.heading-m {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

.body {
    font-size: 18px;
    line-height: 1.6;
}

.caption {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .heading-xl {
        font-size: 36px;
    }
    
    .heading-l {
        font-size: 32px;
    }
    
    .heading-m {
        font-size: 24px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-ghost:hover {
    background-color: var(--color-card-bg);
    border-color: var(--color-primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.site-header {
    background-color: white;
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding .site-logo {
    height: 40px;
    width: auto;
}

.site-branding .site-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

.main-navigation .nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.main-navigation .nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.main-navigation .nav-menu a:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    padding: 110px 0 96px;
    background:
        radial-gradient(circle at top left, rgba(45, 212, 191, 0.16), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(15, 23, 42, 0.08), transparent 24%),
        linear-gradient(180deg, #f7fafc 0%, #f5f7fb 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 88%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 660px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 22px;
    border: 1px solid rgba(20, 184, 166, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 32px rgba(148, 163, 184, 0.12);
}

.hero-kicker::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2dd4bf, #0f766e);
    box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.12);
}

.hero-section .heading-xl {
    font-size: clamp(52px, 8vw, 82px);
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    max-width: 620px;
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 28px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(203, 213, 225, 0.9);
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(148, 163, 184, 0.12);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-flow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #0f172a;
}

.hero-flow__step {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(203, 213, 225, 0.85);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(148, 163, 184, 0.1);
}

.hero-flow__arrow {
    color: #0f766e;
    font-weight: 700;
    font-size: 18px;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pipeline-dashboard {
    width: min(100%, 520px);
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(45, 212, 191, 0.2), transparent 28%),
        linear-gradient(180deg, #0f172a 0%, #111827 100%);
    color: #e5eef8;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 28px 80px rgba(15, 23, 42, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pipeline-dashboard__header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.pipeline-dashboard__eyebrow {
    margin-bottom: 8px;
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pipeline-dashboard__title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #f8fafc;
}

.pipeline-dashboard__status {
    flex-shrink: 0;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.14);
    color: #99f6e4;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.pipeline-dashboard__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.pipeline-metric {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.pipeline-metric__value {
    display: block;
    margin-bottom: 6px;
    color: #f8fafc;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.pipeline-metric__label {
    display: block;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.4;
}

.pipeline-timeline {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.pipeline-timeline__item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.pipeline-timeline__item strong {
    display: block;
    margin-bottom: 4px;
    color: #f8fafc;
    font-size: 15px;
}

.pipeline-timeline__item p {
    color: #9fb0c6;
    font-size: 14px;
    line-height: 1.5;
}

.pipeline-timeline__dot {
    width: 12px;
    height: 12px;
    margin-top: 4px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.45);
    box-shadow: 0 0 0 6px rgba(148, 163, 184, 0.08);
}

.pipeline-timeline__dot--done {
    background: #34d399;
    box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.14);
}

.pipeline-timeline__dot--active {
    background: #38bdf8;
    box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.14);
}

.pipeline-dashboard__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pipeline-dashboard__signal {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.1);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-section {
        padding: 88px 0 72px;
    }

    .hero-text {
        max-width: none;
    }

    .pipeline-dashboard {
        width: 100%;
        max-width: 680px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 78px 0 60px;
    }

    .hero-kicker {
        margin-bottom: 18px;
        padding: 9px 14px;
        font-size: 13px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-badges {
        gap: 10px;
    }

    .hero-badge {
        padding: 9px 12px;
        font-size: 13px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-flow {
        gap: 8px;
    }

    .hero-flow__step {
        width: 100%;
        justify-content: center;
    }

    .hero-flow__arrow {
        display: none;
    }

    .pipeline-dashboard {
        padding: 22px;
        border-radius: 24px;
    }

    .pipeline-dashboard__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pipeline-dashboard__title {
        font-size: 24px;
    }

    .pipeline-dashboard__metrics {
        grid-template-columns: 1fr;
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* Process Grid (How It Works) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.process-card {
    background-color: var(--color-card-bg);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    margin-bottom: 16px;
}

/* Audience and Benefits Grids */
.audience-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.audience-card,
.benefit-card {
    background-color: var(--color-card-bg);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover,
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.audience-icon,
.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--color-card-bg);
    padding: 40px;
    border-radius: var(--radius);
    border: 2px solid var(--color-border);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.plan-description {
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.plan-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 24px;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--color-text-secondary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-section .heading-l {
    color: white;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--color-primary);
}

.cta-section .btn-primary:hover {
    background-color: #f0f9ff;
}

/* Footer */
.site-footer {
    background-color: var(--color-text);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 16px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: var(--color-primary);
}

.footer-menu {
    list-style: none;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Registration Page */
.registration-page {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.registration-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-border);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle,
.progress-step.completed .step-circle {
    background-color: var(--color-primary);
    color: white;
}

.step-label {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.progress-step.active .step-label {
    color: var(--color-text);
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background-color: var(--color-border);
    margin: 0 8px;
}

/* Form */
.registration-form {
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.required {
    color: #ef4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: var(--font-sans);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.plan-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-option {
    display: block;
    position: relative;
    cursor: pointer;
}

.plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.plan-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.plan-option input[type="radio"]:checked + .plan-option-content {
    border-color: var(--color-primary);
    background-color: #f0fdfa;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
}

.form-errors {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

/* Dashboard Placeholder */
.dashboard-placeholder {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.success-message {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
}

.next-steps {
    text-align: left;
    margin-bottom: 48px;
}

.steps-list {
    list-style: none;
    margin-top: 24px;
}

.steps-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.steps-list li:last-child {
    border-bottom: none;
}

.steps-list .step-number {
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    margin-bottom: 4px;
}

.step-content p {
    color: var(--color-text-secondary);
    font-size: 14px;
}

.contact-info {
    background-color: #f0fdfa;
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.contact-info a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .registration-container,
    .success-message {
        padding: 32px 24px;
    }
    
    .progress-bar {
        margin-bottom: 32px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}



.screens-slider-section {
    padding: 60px 0 40px;
    background: #f9fafb;
}

.screens-slider-section .section-title {
    text-align: center;
    margin-bottom: 8px;
}

.screens-subtitle {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.5;
}

/* Контейнер слайдера */
.screens-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto 16px;
}

/* Кнопки-стрелки */
.screens-arrow {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: #e5e7eb;
    color: #111827;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s ease, transform 0.15s ease;
}

.screens-arrow:hover {
    background: #d1d5db;
    transform: translateY(-1px);
}

.screens-arrow:focus {
    outline: 2px solid #2dd4bf;
    outline-offset: 2px;
}

/* Вьюпорт и трек */
.screens-track-wrapper {
    overflow: hidden;
    flex: 1;
}

.screens-track {
    display: flex;
    transition: transform 0.35s ease;
}

/* Отдельный слайд */
.screens-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

.screens-slide img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    background: #fff;
}

/* Точки навигации */
.screens-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.screens-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s ease, transform 0.15s ease, width 0.15s ease;
}

.screens-dot.is-active {
    background: #2dd4bf;
    width: 22px;
    transform: translateY(-1px);
}

/* Модалка для полного просмотра */
.screens-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.screens-modal.is-open {
    display: block;
}

.screens-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
}

.screens-modal-body {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.screens-modal-body img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.4);
}

.screens-modal-close {
    position: absolute;
    top: 160px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: #f9fafb;
    color: #111827;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
}

.screens-modal-close:hover {
    background: #e5e7eb;
}

/* Блокировка скролла когда открыта модалка */
body.screens-modal-open {
    overflow: hidden;
}

/* Адаптив */
@media (max-width: 768px) {
    .screens-slider {
        gap: 8px;
    }

    .screens-arrow {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .screens-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
}

	/* Чтобы можно было позиционировать лоадер внутри модалки */
.screens-modal-body {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

/* Оверлей загрузки поверх картинки */
.screens-modal-loader {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: radial-gradient(circle at center, rgba(15,23,42,0.35), rgba(15,23,42,0.7));
    z-index: 10000;
}

.screens-modal-loader.is-visible {
    display: flex;
}

/* Круглый спиннер */
.screens-spinner {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 4px solid rgba(255,255,255,0.25);
    border-top-color: #2dd4bf;
    animation: screens-spin 0.9s linear infinite;
    margin-bottom: 12px;
}

.screens-loader-text {
    color: #f9fafb;
    font-size: 15px;
    text-align: center;
    max-width: 260px;
}

/* Анимация вращения */
@keyframes screens-spin {
    to {
        transform: rotate(360deg);
    }
}
.screens-slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 14px;
}

/* AI PIPELINE landing restyle v1 */
.ai-pipeline-section-intro {
    max-width: 760px;
    margin-bottom: 34px;
}

.ai-pipeline-section-intro--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ai-pipeline-section-intro--dark .ai-pipeline-section-intro__title {
    color: #f8fafc;
}

.ai-pipeline-section-intro--dark .ai-pipeline-section-intro__subtitle {
    color: #9fb0ca;
}

.ai-pipeline-section-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(79, 70, 229, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--ai-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 14px 32px rgba(148, 163, 184, 0.12);
}

.ai-pipeline-section-intro--dark .ai-pipeline-section-intro__eyebrow,
.ai-pipeline-final-cta .ai-pipeline-section-intro__eyebrow {
    border-color: rgba(99, 102, 241, 0.24);
    background: rgba(79, 70, 229, 0.12);
    color: #c7d2fe;
    box-shadow: none;
}

.ai-pipeline-section-intro__title {
    margin-bottom: 14px;
    color: var(--ai-text);
    font-size: clamp(34px, 4.6vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.ai-pipeline-section-intro__subtitle {
    color: var(--ai-muted);
    font-size: 18px;
    line-height: 1.72;
}

.ai-pipeline-surface-card {
    min-width: 0;
    border: 1px solid var(--ai-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.08);
}

.ai-pipeline-card-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.1), rgba(45, 212, 191, 0.08));
    overflow: hidden;
}

.ai-pipeline-card-icon::before,
.ai-pipeline-card-icon::after,
.ai-pipeline-card-icon__core {
    content: '';
    position: absolute;
    border-radius: 999px;
}

.ai-pipeline-card-icon::before {
    width: 28px;
    height: 2px;
    background: rgba(79, 70, 229, 0.5);
}

.ai-pipeline-card-icon::after {
    width: 10px;
    height: 10px;
    background: var(--ai-primary);
    left: 12px;
}

.ai-pipeline-card-icon__core {
    width: 12px;
    height: 12px;
    right: 12px;
    background: var(--ai-cyan);
    box-shadow: -10px 10px 0 0 rgba(45, 212, 191, 0.9);
}

.ai-pipeline-audience,
.ai-pipeline-deliverables,
.ai-pipeline-showcase,
.ai-pipeline-benefits,
.ai-pipeline-pricing,
.ai-pipeline-faq {
    position: relative;
    z-index: 1;
    padding: 88px 0;
}

.ai-pipeline-audience::before,
.ai-pipeline-benefits::before,
.ai-pipeline-faq::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 18%, rgba(79, 70, 229, 0.06), transparent 26%),
        radial-gradient(circle at 88% 74%, rgba(45, 212, 191, 0.08), transparent 24%);
}

.ai-pipeline-audience .container,
.ai-pipeline-deliverables .container,
.ai-pipeline-showcase .container,
.ai-pipeline-benefits .container,
.ai-pipeline-pricing .container,
.ai-pipeline-faq .container,
.ai-pipeline-final-cta .container,
.ai-pipeline-site-footer .container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
}

.ai-pipeline-audience__grid,
.ai-pipeline-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ai-pipeline-audience__card,
.ai-pipeline-benefits__card {
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.ai-pipeline-audience__label,
.ai-pipeline-benefits__index,
.ai-pipeline-deliverables__index {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--ai-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ai-pipeline-audience__card h3,
.ai-pipeline-deliverables__card h3,
.ai-pipeline-benefits__card h3,
.ai-pipeline-showcase-card h3,
.ai-pipeline-pricing__card h3 {
    margin-bottom: 12px;
    color: var(--ai-text);
    font-size: 24px;
    line-height: 1.24;
}

.ai-pipeline-audience__card p,
.ai-pipeline-deliverables__card p,
.ai-pipeline-benefits__card p,
.ai-pipeline-pricing__summary {
    min-width: 0;
    color: var(--ai-muted);
    font-size: 16px;
    line-height: 1.72;
    word-break: normal;
    overflow-wrap: normal;
}

.ai-pipeline-deliverables {
    padding-top: 18px;
}

.ai-pipeline-deliverables__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: start;
}

.ai-pipeline-deliverables__flow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.ai-pipeline-deliverables__flow span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(79, 70, 229, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #495267;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 14px 28px rgba(148, 163, 184, 0.08);
}

.ai-pipeline-deliverables__preview {
    margin-top: 22px;
    padding: 22px;
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.08), transparent 34%),
        rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.ai-pipeline-deliverables__preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.ai-pipeline-deliverables__preview-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--ai-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ai-pipeline-deliverables__preview-head strong {
    color: var(--ai-text);
    font-size: 16px;
    line-height: 1.3;
}

.ai-pipeline-deliverables__preview-list {
    display: grid;
    gap: 10px;
    margin: 0;
    list-style: none;
}

.ai-pipeline-deliverables__preview-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.ai-pipeline-deliverables__preview-list li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(6, 182, 212, 0.08));
    color: var(--ai-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.ai-pipeline-deliverables__preview-list li em {
    min-width: 0;
    color: #495267;
    font-size: 14px;
    font-style: normal;
    line-height: 1.5;
}

.ai-pipeline-deliverables__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ai-pipeline-deliverables__card {
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.ai-pipeline-showcase {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 16%, rgba(124, 58, 237, 0.16), transparent 24%),
        radial-gradient(circle at 86% 82%, rgba(34, 211, 238, 0.12), transparent 26%),
        linear-gradient(180deg, #10182d 0%, #0b1020 100%);
}

.ai-pipeline-showcase__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    grid-template-areas:
        'article plan'
        'article report';
    gap: 20px;
}

.ai-pipeline-showcase-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(11, 16, 32, 0.96));
    box-shadow: 0 26px 60px rgba(2, 6, 23, 0.3);
    color: #dbe4f0;
}

.ai-pipeline-showcase-card--article {
    grid-area: article;
}

.ai-pipeline-showcase-card--plan {
    grid-area: plan;
}

.ai-pipeline-showcase-card--report {
    grid-area: report;
}

.ai-pipeline-showcase-card__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.ai-pipeline-showcase-card__eyebrow {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ai-pipeline-showcase-card__status {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.ai-pipeline-showcase-card__status.is-success {
    background: rgba(45, 212, 191, 0.12);
    color: #8bf3d6;
}

.ai-pipeline-showcase-card__status.is-processing {
    background: rgba(99, 102, 241, 0.14);
    color: #c7d2fe;
}

.ai-pipeline-showcase-card__status.is-accent {
    background: rgba(6, 182, 212, 0.14);
    color: #99f6ff;
}

.ai-pipeline-showcase-card h3 {
    color: #f8fafc;
}

.ai-pipeline-showcase-card__lead {
    color: #9fb0ca;
    font-size: 16px;
    line-height: 1.7;
}

.ai-pipeline-showcase-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 20px 0;
}

.ai-pipeline-showcase-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #c7d2fe;
    font-size: 14px;
}

.ai-pipeline-showcase-card__score,
.ai-pipeline-showcase-card__report-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ai-pipeline-showcase-card__score div,
.ai-pipeline-showcase-card__report-grid div {
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-pipeline-showcase-card small {
    display: block;
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 12px;
}

.ai-pipeline-showcase-card strong {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.ai-pipeline-showcase-card__stats {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    list-style: none;
}

.ai-pipeline-showcase-card__stats li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    font-size: 15px;
}

.ai-pipeline-showcase-card__stats li strong {
    font-size: 20px;
}

.ai-pipeline-benefits__card {
    padding: 28px;
}

.ai-pipeline-benefits__card:nth-child(2n) .ai-pipeline-benefits__index {
    background: rgba(6, 182, 212, 0.1);
    color: #0f7d92;
}

.ai-pipeline-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ai-pipeline-pricing__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--ai-border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.08);
}

.ai-pipeline-pricing__card.is-featured {
    border-color: rgba(79, 70, 229, 0.28);
    background:
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.1), transparent 34%),
        rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 70px rgba(79, 70, 229, 0.16);
    transform: translateY(-6px);
}

.ai-pipeline-pricing__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
}

.ai-pipeline-pricing__name {
    color: var(--ai-text);
    font-size: 22px;
    font-weight: 700;
}

.ai-pipeline-pricing__badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--ai-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ai-pipeline-pricing__volume {
    margin-bottom: 14px;
    color: var(--ai-text);
    font-size: clamp(30px, 3.4vw, 40px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.ai-pipeline-pricing__summary {
    margin-bottom: 22px;
}

.ai-pipeline-pricing__list {
    display: grid;
    gap: 12px;
    margin: 0 0 26px;
    list-style: none;
}

.ai-pipeline-pricing__list li {
    position: relative;
    padding-left: 22px;
    color: #495267;
    font-size: 15px;
    line-height: 1.6;
}

.ai-pipeline-pricing__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ai-primary), var(--ai-cyan));
}

.ai-pipeline-pricing__card .btn {
    margin-top: auto;
    width: 100%;
}

.ai-pipeline-faq {
    padding-top: 72px;
}

.ai-pipeline-faq__accordion {
    max-width: 980px;
}

.ai-pipeline-faq__item {
    margin-bottom: 14px;
    border: 1px solid var(--ai-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.ai-pipeline-faq__question {
    padding: 22px 26px;
    color: var(--ai-text);
    font-size: 18px;
}

.ai-pipeline-faq__question:hover {
    color: var(--ai-primary);
}

.ai-pipeline-faq__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.08);
    color: var(--ai-primary);
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.ai-pipeline-faq .faq-question.active .ai-pipeline-faq__icon {
    transform: rotate(45deg);
    background: rgba(79, 70, 229, 0.14);
}

.ai-pipeline-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.ai-pipeline-faq__answer.active {
    max-height: 460px;
}

.ai-pipeline-faq__answer p {
    padding: 0 26px 24px;
    color: var(--ai-muted);
    font-size: 16px;
    line-height: 1.74;
}

.ai-pipeline-final-cta {
    position: relative;
    z-index: 1;
    padding: 34px 0 96px;
}

.ai-pipeline-final-cta__panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 26%, rgba(99, 102, 241, 0.24), transparent 30%),
        radial-gradient(circle at 88% 76%, rgba(34, 211, 238, 0.18), transparent 28%),
        linear-gradient(180deg, #0f172a 0%, #0b1020 100%);
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.24);
}

.ai-pipeline-final-cta__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    pointer-events: none;
}

.ai-pipeline-final-cta__glow--violet {
    width: 280px;
    height: 280px;
    left: -120px;
    top: -120px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.22), transparent 70%);
}

.ai-pipeline-final-cta__glow--mint {
    width: 300px;
    height: 300px;
    right: -120px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.16), transparent 72%);
}

.ai-pipeline-final-cta__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.ai-pipeline-final-cta__content .heading-l {
    margin-bottom: 14px;
    color: #f8fafc;
    font-size: clamp(34px, 4.6vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.ai-pipeline-final-cta__content p {
    color: #a8b3c9;
    font-size: 18px;
    line-height: 1.72;
}

.ai-pipeline-final-cta__actions {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    min-width: 260px;
}

.ai-pipeline-final-cta__actions .ai-pipeline-button--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.ai-pipeline-final-cta__actions .ai-pipeline-button--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

.site-footer.ai-pipeline-site-footer {
    position: relative;
    overflow: hidden;
    padding: 0 0 28px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background:
        radial-gradient(circle at 12% 18%, rgba(99, 102, 241, 0.08), transparent 20%),
        radial-gradient(circle at 90% 82%, rgba(34, 211, 238, 0.08), transparent 22%),
        linear-gradient(180deg, #f7f8fb 0%, #eef2f8 100%);
    color: var(--ai-text);
}

.ai-pipeline-site-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    padding: 42px 0 30px;
}

.ai-pipeline-site-footer__brand {
    max-width: 640px;
}

.ai-pipeline-site-footer__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--ai-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ai-pipeline-site-footer__brand h3 {
    margin-bottom: 12px;
    color: var(--ai-text);
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.ai-pipeline-site-footer__brand p {
    color: #495267;
    font-size: 17px;
    line-height: 1.7;
}

.ai-pipeline-site-footer__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    min-width: 0;
}

.ai-pipeline-site-footer__primary,
.ai-pipeline-site-footer__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.ai-pipeline-site-footer__primary {
    background: linear-gradient(135deg, var(--ai-primary), #6366f1);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(79, 70, 229, 0.2);
}

.ai-pipeline-site-footer__secondary {
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.86);
    color: var(--ai-text);
}

.ai-pipeline-site-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.ai-pipeline-site-footer .footer-column {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.ai-pipeline-site-footer .footer-column h4 {
    margin-bottom: 14px;
    color: var(--ai-text);
    font-size: 18px;
}

.ai-pipeline-site-footer .footer-column p,
.ai-pipeline-site-footer .footer-menu li {
    color: #566176;
    font-size: 15px;
    line-height: 1.65;
}

.ai-pipeline-site-footer .footer-menu {
    display: grid;
    gap: 10px;
    margin: 0;
    list-style: none;
}

.ai-pipeline-site-footer .footer-menu a,
.ai-pipeline-site-footer .footer-contact-link {
    color: var(--ai-text);
}

.ai-pipeline-site-footer .footer-menu a:hover,
.ai-pipeline-site-footer .footer-contact-link:hover,
.ai-pipeline-site-footer__secondary:hover {
    color: var(--ai-primary);
}

.ai-pipeline-site-footer__list li {
    list-style: none;
}

.ai-pipeline-site-footer .footer-contact-link {
    margin-top: 14px;
    font-weight: 600;
}

.ai-pipeline-site-footer .footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.ai-pipeline-site-footer .footer-bottom p,
.ai-pipeline-site-footer .footer-links a {
    color: #6b7280;
}

.ai-pipeline-site-footer .footer-links a:hover {
    color: var(--ai-primary);
}

@media (max-width: 1439px) {
    .ai-pipeline-showcase__grid {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            'article'
            'plan'
            'report';
    }
}

@media (max-width: 1200px) {
    .ai-pipeline-audience__grid,
    .ai-pipeline-benefits__grid,
    .ai-pipeline-pricing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ai-pipeline-deliverables__layout {
        grid-template-columns: 1fr;
    }

    .ai-pipeline-final-cta__panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .ai-pipeline-audience,
    .ai-pipeline-deliverables,
    .ai-pipeline-showcase,
    .ai-pipeline-benefits,
    .ai-pipeline-pricing,
    .ai-pipeline-faq {
        padding: 72px 0;
    }

    .ai-pipeline-showcase-card__score,
    .ai-pipeline-showcase-card__report-grid {
        grid-template-columns: 1fr;
    }

    .ai-pipeline-site-footer__top,
    .ai-pipeline-site-footer .footer-content {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ai-pipeline-site-footer__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .ai-pipeline-section-intro__subtitle,
    .ai-pipeline-final-cta__content p {
        font-size: 16px;
    }

    .ai-pipeline-audience__grid,
    .ai-pipeline-benefits__grid,
    .ai-pipeline-pricing__grid,
    .ai-pipeline-deliverables__grid {
        grid-template-columns: 1fr;
    }

    .ai-pipeline-showcase-card,
    .ai-pipeline-audience__card,
    .ai-pipeline-deliverables__card,
    .ai-pipeline-benefits__card,
    .ai-pipeline-pricing__card {
        padding: 22px;
    }

    .ai-pipeline-showcase-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .ai-pipeline-final-cta {
        padding-top: 18px;
        padding-bottom: 76px;
    }

    .ai-pipeline-final-cta__panel {
        padding: 28px 20px;
    }

    .ai-pipeline-final-cta__actions {
        min-width: 0;
    }

    .ai-pipeline-final-cta__actions .btn {
        width: 100%;
    }

    .ai-pipeline-faq__question {
        padding: 20px;
        align-items: flex-start;
        gap: 14px;
        font-size: 17px;
    }

    .ai-pipeline-faq__answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }

    .ai-pipeline-site-footer__top {
        padding-top: 34px;
    }

    .ai-pipeline-site-footer__brand h3 {
        font-size: 28px;
    }

    .ai-pipeline-site-footer__actions {
        width: 100%;
    }

    .ai-pipeline-site-footer__primary,
    .ai-pipeline-site-footer__secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ai-pipeline-audience,
    .ai-pipeline-deliverables,
    .ai-pipeline-showcase,
    .ai-pipeline-benefits,
    .ai-pipeline-pricing,
    .ai-pipeline-faq {
        padding: 64px 0;
    }

    .ai-pipeline-section-intro__title,
    .ai-pipeline-final-cta__content .heading-l {
        font-size: 30px;
    }

    .ai-pipeline-deliverables__flow span {
        width: 100%;
        justify-content: center;
    }

    .ai-pipeline-deliverables__preview-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ai-pipeline-showcase-card__stats li {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}
