/* ===== Scout Page ===== */

.scout-page {
    min-height: 100vh;
    background: #f8fafc;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 2rem 0;
    overflow-x: clip;
    font-family: 'Inter', system-ui, sans-serif;
}

/* ── Glow blobs ── */
.sp-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}

.sp-glow--tl {
    top: -100px;
    left: -120px;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(0,168,150,0.08) 0%, transparent 65%);
}

.sp-glow--br {
    bottom: -80px;
    right: -100px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(0,168,150,0.06) 0%, transparent 65%);
}

/* ── Hero wrapper (anchors watermark) ── */
.sp-hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Watermark ── */
.sp-watermark {
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 16vw, 200px);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,0.06);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

/* ── Header ── */
.sp-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.sp-tag {
    display: inline-block;
    border: 1px solid rgba(0,168,150,0.4);
    color: #00A896;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    background: rgba(0,168,150,0.06);
}

.sp-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.sp-sub {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 560px;
}

/* ── Video Frame ── */
.sp-video-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin-top: 3.5rem;
    padding: 0 1rem;
}

.sp-video-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.04),
        0 24px 64px rgba(0,0,0,0.10);
    background: #0f172a;
}

.sp-video-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #e2e8f0;
}

.sp-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-video-cta {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.sp-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 5px 20px 5px 5px;
    background: linear-gradient(180deg, #00bfac 0%, #00A896 50%, #009688 100%);
    color: #ffffff;
    font-family: inherit;
    text-decoration: none;
    border-radius: 999px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.25) inset,
        0 -1px 0 rgba(0,0,0,0.15) inset,
        0 4px 0 #006d63,
        0 6px 16px rgba(0,168,150,0.45);
    transition: transform 0.12s, box-shadow 0.12s;
    white-space: nowrap;
    position: relative;
    top: 0;
}

.sp-video-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.25) inset,
        0 -1px 0 rgba(0,0,0,0.15) inset,
        0 6px 0 #006d63,
        0 10px 24px rgba(0,168,150,0.5);
}

.sp-video-btn:active {
    transform: translateY(3px);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.2) inset,
        0 -1px 0 rgba(0,0,0,0.1) inset,
        0 1px 0 #006d63,
        0 2px 8px rgba(0,168,150,0.3);
}

.sp-video-btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(180deg, #009688 0%, #006d63 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 14px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.15) inset,
        0 2px 4px rgba(0,0,0,0.2);
}

.sp-video-btn-icon svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
}

.sp-video-btn-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* ══════════════════════
   HOW IT WORKS
══════════════════════ */
.sp-how {
    position: relative;
    z-index: 2;
    width: calc(100% + 4rem);
    margin: 0 -2rem;
    background: #ffffff;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.sp-how-inner {
    width: 100%;
    max-width: 1200px;
}

.sp-how-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.sp-how-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.sp-how-sub {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.65;
}

.sp-how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sp-how-step {
    position: sticky;
    top: 100px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    padding: 48px 56px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: center;
    box-shadow: 0 12px 40px rgba(15,23,42,0.10);
    margin-bottom: 24px;
}

.sp-how-step:last-child {
    margin-bottom: 0;
}

.sp-how-step--alt {
    grid-template-columns: 1.3fr 1fr;
}

.sp-how-step--alt .sp-how-text { order: 2; }
.sp-how-step--alt .sp-how-img  { order: 1; }

.sp-how-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sp-how-badge {
    display: inline-block;
    align-self: flex-start;
    background: #00A896;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,168,150,0.3);
}

.sp-how-step-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sp-how-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-how-list li {
    position: relative;
    padding-left: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.sp-how-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00A896;
}

.sp-how-img {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #0f172a;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.04),
        0 20px 48px rgba(15,23,42,0.10);
    aspect-ratio: 16 / 10;
}

.sp-how-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 860px) {
    .sp-how { padding: 4rem 1.5rem; }
    .sp-how-steps { gap: 0; }
    .sp-how-step,
    .sp-how-step--alt {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 24px;
        border-radius: 18px;
        top: 80px;
        margin-bottom: 16px;
    }
    .sp-how-step--alt .sp-how-text { order: 1; }
    .sp-how-step--alt .sp-how-img  { order: 2; }
    .sp-how-header { margin-bottom: 3rem; }
}

/* ══════════════════════
   PAIN POINTS SECTION
══════════════════════ */
.sp-pain {
    position: relative;
    z-index: 2;
    width: calc(100% + 4rem);
    margin: 0 -2rem;
    background: #f8fafc;
    padding: 5rem 2rem;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sp-pain-chips {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sp-pain-chip {
    position: absolute;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 999px;
    white-space: nowrap;
    animation: sp-float 6s ease-in-out infinite;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 8px 20px rgba(15,23,42,0.10),
        0 24px 48px rgba(15,23,42,0.06);
}

.sp-pain-chip--tl { top: 14%; left: 18%;  transform: rotate(-6deg); animation-delay: 0s; }
.sp-pain-chip--tr { top: 16%; right: 16%; transform: rotate(5deg);  animation-delay: 1s; }
.sp-pain-chip--ml { top: 46%; left: 12%;  transform: rotate(-3deg); animation-delay: 2s; }
.sp-pain-chip--mr { top: 46%; right: 12%; transform: rotate(4deg);  animation-delay: 3s; }
.sp-pain-chip--bl { bottom: 14%; left: 19%; transform: rotate(2deg);  animation-delay: 4s; }
.sp-pain-chip--br { bottom: 14%; right: 18%; transform: rotate(-4deg); animation-delay: 5s; }

@keyframes sp-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -8px; }
}

.sp-pain-center {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sp-pain-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.sp-pain-better {
    font-size: 1rem;
    font-weight: 600;
    color: #00A896;
    letter-spacing: 0.01em;
    margin-top: 8px;
}

.sp-pain-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(180deg, #00bfac 0%, #00A896 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0,168,150,0.35);
    transition: transform 0.15s, box-shadow 0.2s;
    margin-top: 8px;
}

.sp-pain-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,168,150,0.5);
}

@media (max-width: 860px) {
    .sp-pain { padding: 4rem 1.25rem; min-height: 0; flex-direction: column; gap: 28px; }
    .sp-pain-chips {
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .sp-pain-chip {
        position: static;
        transform: none !important;
        animation: none;
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}

/* ══════════════════════
   CHAOS → CLARITY SECTION
══════════════════════ */
.sp-shift {
    position: relative;
    z-index: 2;
    width: calc(100% + 4rem);
    margin: 6rem -2rem 0;
    background: #ffffff;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.sp-shift-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sp-shift-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sp-shift-heading {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
}

.sp-shift-chaos {
    color: #f97316;
    font-style: italic;
}

.sp-shift-clarity {
    color: #00A896;
}

.sp-shift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    width: 100%;
}

.sp-shift-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 36px 32px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.sp-shift-card--after {
    background: linear-gradient(160deg, #ecfdf7 0%, #ffffff 100%);
    border-color: rgba(0,168,150,0.25);
    box-shadow: 0 8px 32px rgba(0,168,150,0.08);
}

.sp-shift-card:hover {
    transform: translateY(-3px);
}

.sp-shift-card-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.sp-shift-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #cbd5e1;
    letter-spacing: -0.02em;
    line-height: 1;
}

.sp-shift-card--after .sp-shift-num {
    color: rgba(0,168,150,0.4);
}

.sp-shift-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sp-shift-card--after .sp-shift-card-title {
    color: #00A896;
}

.sp-shift-card-sub {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 2px;
}

.sp-shift-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sp-shift-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #475569;
}

.sp-shift-card--after .sp-shift-list li {
    color: #1e3a32;
    font-weight: 500;
}

.sp-shift-mark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-top: 1px;
}

.sp-shift-mark--bad {
    color: #cbd5e1;
}

.sp-shift-mark--good {
    background: #00A896;
    color: #ffffff;
    border-radius: 50%;
}

.sp-shift-mark--good svg {
    width: 12px;
    height: 12px;
}

@media (max-width: 860px) {
    .sp-shift-grid { grid-template-columns: 1fr; gap: 32px; }
    .sp-shift { padding: 4rem 1.5rem; }
}

@media (max-width: 600px) {
    .scout-page { padding: 5rem 1.25rem 3rem; }
    .sp-title { font-size: 2rem; }
    .sp-watermark { font-size: 18vw; top: -1%; }
    .sp-video-frame { border-radius: 16px; }
    .sp-video-cta { bottom: 16px; }
    .sp-video-btn { padding: 4px 16px 4px 4px; }
    .sp-video-btn-icon { width: 32px; height: 32px; margin-right: 10px; }
    .sp-video-btn-icon svg { width: 14px; height: 14px; }
    .sp-video-btn-text { font-size: 0.78rem; }

    .sp-shift { margin: 4rem -1.25rem 0; width: calc(100% + 2.5rem); padding: 4rem 1.25rem; }
    .sp-shift-card { padding: 28px 22px; border-radius: 18px; }
    .sp-shift-heading { font-size: 2rem; }
}

/* ══════════════════════
   "MORE" FEATURE GRID
══════════════════════ */
.sp-more {
    position: relative;
    z-index: 2;
    width: calc(100% + 4rem);
    margin: 0 -2rem;
    background: #ffffff;
    padding: 6rem 2rem;
    color: #0f172a;
    display: flex;
    justify-content: center;
}

.sp-more-inner {
    width: 100%;
    max-width: 1200px;
}

.sp-more-header {
    margin-bottom: 4rem;
}

.sp-more-eyebrow {
    display: inline-block;
    color: #00A896;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
}

.sp-more-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.sp-more-sub {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 560px;
}

.sp-more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sp-more-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 26px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.sp-more-card:hover {
    border-color: rgba(0,168,150,0.35);
    background: #f0fdf9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,168,150,0.1);
}

.sp-more-icon {
    color: #00A896;
    width: 36px;
    height: 36px;
    margin-bottom: 24px;
}

.sp-more-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sp-more-card-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.sp-more-card-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #64748b;
}

@media (max-width: 1100px) {
    .sp-more-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .sp-more { padding: 4rem 1.5rem; }
    .sp-more-header { margin-bottom: 2.5rem; }
    .sp-more-grid { grid-template-columns: 1fr; gap: 16px; }
    .sp-more-card { padding: 24px 22px 26px; }
}

/* ══════════════════════
   USE CASES
══════════════════════ */
.sp-cases {
    position: relative;
    z-index: 2;
    width: calc(100% + 4rem);
    margin: 0 -2rem;
    background: #f8fafc;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.sp-cases-inner {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sp-cases-header {
    max-width: 720px;
    margin-bottom: 3rem;
}

.sp-cases-eyebrow {
    display: inline-block;
    color: #00A896;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
}

.sp-cases-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.sp-cases-accent {
    color: #00A896;
}

.sp-cases-sub {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.sp-cases-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sp-cases-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sp-cases-tab svg {
    width: 16px;
    height: 16px;
}

.sp-cases-tab:hover {
    border-color: rgba(0,168,150,0.35);
    color: #00A896;
}

.sp-cases-tab--active {
    background: linear-gradient(180deg, #00bfac 0%, #00A896 100%);
    color: #ffffff;
    border-color: #00A896;
    box-shadow: 0 6px 18px rgba(0,168,150,0.35);
}

.sp-cases-tab--active:hover { color: #ffffff; }

.sp-cases-pane {
    display: none;
    text-align: left;
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 44px;
    box-shadow: 0 4px 20px rgba(15,23,42,0.05);
}

.sp-cases-pane--active { display: block; }

.sp-cases-pane-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.sp-cases-pane-text {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 20px;
}

.sp-cases-pane-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-cases-pane-list li {
    position: relative;
    padding-left: 26px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #475569;
}

.sp-cases-pane-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0,168,150,0.12);
    box-shadow: inset 0 0 0 2px #00A896;
}

@media (max-width: 860px) {
    .sp-cases { padding: 4rem 1.5rem; }
    .sp-cases-tabs { gap: 8px; }
    .sp-cases-tab { font-size: 0.82rem; padding: 10px 16px; }
    .sp-cases-pane { padding: 28px 22px; border-radius: 16px; }
}

/* ══════════════════════
   EARLY-ACCESS CTA
══════════════════════ */
.sp-cta {
    position: relative;
    z-index: 2;
    width: calc(100% + 4rem);
    margin: 0 -2rem;
    background: #ffffff;
    padding: 4rem 2rem 5rem;
    display: flex;
    justify-content: center;
}

.sp-cta-card {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: linear-gradient(160deg, #062a26 0%, #0f3933 55%, #0a2521 100%);
    border-radius: 24px;
    padding: 36px 56px;
    text-align: center;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(0,0,0,0.06),
        0 28px 60px rgba(0,168,150,0.18);
    border: 1px solid rgba(0,168,150,0.25);
}

.sp-cta-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 320px;
    background: radial-gradient(ellipse, rgba(0,191,172,0.35) 0%, transparent 65%);
    pointer-events: none;
}

.sp-cta-tag {
    position: relative;
    display: inline-block;
    border: 1px solid rgba(0,191,172,0.45);
    color: #5eead4;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(0,191,172,0.08);
    margin-bottom: 12px;
}

.sp-cta-title {
    position: relative;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.sp-cta-sub {
    position: relative;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto 20px;
}

.sp-cta-form {
    position: relative;
    display: flex;
    gap: 8px;
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 6px 6px 6px 22px;
    transition: border-color 0.2s;
}

.sp-cta-form:focus-within {
    border-color: rgba(0,191,172,0.6);
    box-shadow: 0 0 0 4px rgba(0,168,150,0.12);
}

.sp-cta-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    min-width: 0;
}

.sp-cta-input::placeholder { color: rgba(255,255,255,0.45); }

.sp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #00bfac 0%, #00A896 100%);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0,168,150,0.4);
    white-space: nowrap;
}

.sp-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0,168,150,0.55);
}

.sp-cta-btn svg { width: 16px; height: 16px; }

.sp-cta-msg {
    position: absolute;
    left: 50%;
    bottom: -36px;
    transform: translateX(-50%);
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.25s;
    white-space: nowrap;
    pointer-events: none;
}

.sp-cta-msg.show { opacity: 1; }

.sp-cta-success { color: #5eead4; }
.sp-cta-error   { color: #fca5a5; }

.sp-cta-note {
    position: relative;
    margin-top: 18px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    .sp-cta { padding: 4rem 1.25rem 5rem; width: calc(100% + 2.5rem); margin: 0 -1.25rem; }
    .sp-cta-card { padding: 40px 24px; border-radius: 22px; }
    .sp-cta-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 10px;
    }
    .sp-cta-form:focus-within { box-shadow: none; }
    .sp-cta-input {
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 999px;
        padding: 14px 20px;
    }
    .sp-cta-btn { justify-content: center; padding: 14px 20px; }
}
