/* =============================================
   HOME PAGE — PUBLIC LANDING
   Used by: Views/Home/Index.cshtml
   ============================================= */

/* ── Keyframes ────────────────────────────────────────────────────── */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: .3; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

@keyframes float-alt {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-8px) rotate(4deg); }
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33%       { transform: translateY(-8px) rotate(.5deg); }
    66%       { transform: translateY(-4px) rotate(-.3deg); }
}

@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.55); }
    70%  { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

@keyframes shimmer-text {
    0%   { background-position: -300% center; }
    100% { background-position: 300% center; }
}

@keyframes gradient-flow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes dot-grid-move {
    0%   { background-position: 0 0; }
    100% { background-position: 48px 48px; }
}

@keyframes orb-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(28px, -18px) scale(1.04); }
    70%       { transform: translate(-16px, 12px) scale(.97); }
}

@keyframes orb-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    35%       { transform: translate(-22px, 18px) scale(1.06); }
    70%       { transform: translate(18px, -12px) scale(.94); }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes count-pop {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.1); }
}

@keyframes slide-in-badge {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Scroll Reveal ────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1),
                transform .7s cubic-bezier(.22, 1, .36, 1);
}

.reveal.reveal-left  { transform: translateX(-36px); }
.reveal.reveal-right { transform: translateX(36px); }
.reveal.reveal-scale { transform: scale(.92); }

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .34s; }
.reveal-delay-4 { transition-delay: .46s; }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero-section {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0f172a;
    padding: 5rem 0 4rem;
}

/* Animated dot-grid overlay */
.hero-dot-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,.065) 1px, transparent 1px);
    background-size: 32px 32px;
    animation: dot-grid-move 20s linear infinite;
    opacity: 1;
}

.hero-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.glow-1 {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13,148,136,.35) 0%, transparent 68%);
    animation: orb-drift-1 14s ease-in-out infinite;
}

.glow-2 {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,70,229,.28) 0%, transparent 68%);
    animation: orb-drift-2 18s ease-in-out infinite;
}

.glow-3 {
    position: absolute;
    top: 40%;
    left: 38%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,.14) 0%, transparent 68%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(13,148,136,.15);
    border: 1px solid rgba(13,148,136,.35);
    color: #5eead4;
    padding: .35rem 1rem;
    border-radius: 2rem;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
    animation: blink 1.5s ease-in-out infinite, pulse-ring 2.2s ease infinite;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -.5px;
}

.text-grad {
    background: linear-gradient(90deg, #0d9488, #06b6d4, #818cf8, #0d9488);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-text 5s linear infinite;
}

.hero-desc {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 1.5rem;
}

/* Tech badges row */
.hero-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.75rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .8rem;
    border-radius: .55rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: #94a3b8;
    font-size: .74rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    transition: all .22s;
}

.tech-badge i { font-size: .68rem; }

.tech-badge:hover {
    background: rgba(255,255,255,.11);
    border-color: rgba(255,255,255,.22);
    color: #e2e8f0;
    transform: translateY(-1px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2.5rem;
}

/* Primary CTA button — animated gradient */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: .875rem;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 50%, #4f46e5 100%);
    background-size: 200% 200%;
    box-shadow: 0 8px 24px rgba(13,148,136,.42);
    transition: transform .28s, box-shadow .28s;
    font-family: inherit;
    border: none;
    animation: gradient-flow 5s ease infinite;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 36px rgba(13,148,136,.58);
    color: #fff;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: .875rem;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    color: #e2e8f0;
    border: 1.5px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(8px);
    transition: all .25s;
    font-family: inherit;
}

.btn-hero-outline:hover {
    border-color: rgba(255,255,255,.42);
    color: #fff;
    background: rgba(255,255,255,.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.hero-nums {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,.08);
}

.hero-num .hn-val {
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-num .hn-lbl {
    font-size: .75rem;
    color: #64748b;
    margin-top: .2rem;
}

/* ── Hero Visual & Glass Card ─────────────────────────────────────── */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    animation: float-card 6s ease-in-out infinite;
}

.hero-glass-card {
    margin-top: 1.5rem;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 1.5rem;
    padding: 1.75rem;
    width: 100%;
    max-width: 380px;
    box-shadow:
        0 24px 64px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.12);
}

.hgc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 1.25rem;
}

.hgc-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-ring 2.2s ease infinite;
    flex-shrink: 0;
}

.hgc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .875rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    margin-bottom: .75rem;
    transition: all .25s;
}

.hgc-item:last-child { margin-bottom: 0; }

.hgc-item:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.13);
    transform: translateX(-3px);
}

.hgc-icon {
    width: 44px;
    height: 44px;
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: transform .25s;
}

.hgc-item:hover .hgc-icon { transform: scale(1.12) rotate(-4deg); }

.hgc-icon.purple { background: rgba(139,92,246,.22); color: #a78bfa; }
.hgc-icon.cyan   { background: rgba(6,182,212,.22);  color: #22d3ee; }
.hgc-icon.green  { background: rgba(16,185,129,.22); color: #34d399; }
.hgc-icon.amber  { background: rgba(245,158,11,.22); color: #fbbf24; }

.hgc-val { font-size: .95rem; font-weight: 700; color: #f1f5f9; }
.hgc-nm  { font-size: .75rem; color: #64748b; }

/* Floating badge above card */
.hero-float-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: #fff;
    padding: .4rem 1.15rem;
    border-radius: 2rem;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(16,185,129,.5);
    animation: slide-in-badge .6s .2s both;
    z-index: 3;
}

/* Floating icon bubbles */
.hero-bubble {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    z-index: 4;
    pointer-events: none;
}

.hero-bubble-1 {
    background: rgba(139,92,246,.28);
    color: #a78bfa;
    border: 1px solid rgba(139,92,246,.45);
    top: 18%;
    right: -18px;
    animation: float 4s ease-in-out infinite;
}

.hero-bubble-2 {
    background: rgba(6,182,212,.28);
    color: #22d3ee;
    border: 1px solid rgba(6,182,212,.45);
    bottom: 22%;
    left: -18px;
    animation: float-alt 5.5s ease-in-out infinite;
}

.hero-bubble-3 {
    background: rgba(245,158,11,.28);
    color: #fbbf24;
    border: 1px solid rgba(245,158,11,.45);
    bottom: 8%;
    right: 14%;
    animation: float 3.8s ease-in-out infinite .6s;
}

.hero-live-icon { font-size: .55rem; }

/* ── Stats Bar ────────────────────────────────────────────────────── */
.stats-bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    position: relative;
}

/* Rainbow accent line at top */
.stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0d9488, #06b6d4, #4f46e5, #7c3aed, #e11d48);
    background-size: 200% auto;
    animation: gradient-flow 4s ease infinite;
}

.stats-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.85rem 1.5rem;
    border-left: 1px solid #e2e8f0;
    transition: background .2s;
    cursor: default;
}

.stats-bar-item:last-child { border-left: none; }
.stats-bar-item:hover { background: #f8fafc; }

.stats-bar-item:hover .stats-bar-icon {
    transform: scale(1.12) rotate(6deg);
}

.stats-bar-icon {
    width: 52px;
    height: 52px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform .28s cubic-bezier(.22,1,.36,1);
}

.sbi-purple { background: #ede9fe; color: #7c3aed; }
.sbi-cyan   { background: #cffafe; color: #0891b2; }
.sbi-green  { background: #d1fae5; color: #059669; }
.sbi-amber  { background: #fef3c7; color: #d97706; }

.stats-bar-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.stats-bar-num.counting {
    animation: count-pop .35s ease;
}

.stats-bar-lbl {
    font-size: .75rem;
    color: #64748b;
    margin-top: .2rem;
}

/* ── Sections ─────────────────────────────────────────────────────── */
.pub-section       { padding: 5rem 0; }
.pub-section-gray  { background: #f8fafc; }
.pub-section-white { background: #fff; }
.pub-section-dark  { background: #0f172a; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .32rem .95rem;
    border-radius: 2rem;
    background: linear-gradient(135deg, #eff6ff, #f0fdf4);
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .4px;
    margin-bottom: .875rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .875rem;
    line-height: 1.3;
}

.section-subtitle {
    color: #64748b;
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Feature Cards ────────────────────────────────────────────────── */
.feature-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all .32s cubic-bezier(.22,1,.36,1);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient wash on hover */
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(13,148,136,.04), rgba(79,70,229,.05));
    border-radius: 1.25rem;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 24px 56px rgba(0,0,0,.11),
        0 0 0 1.5px rgba(13,148,136,.25);
    border-color: transparent;
}

.feature-card:hover::after { opacity: 1; }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}

.feature-card:hover .feature-icon { transform: scale(1.14) rotate(-4deg); }

.fi-purple { background: #ede9fe; color: #7c3aed; }
.fi-cyan   { background: #cffafe; color: #0891b2; }
.fi-green  { background: #d1fae5; color: #059669; }
.fi-amber  { background: #fef3c7; color: #d97706; }
.fi-rose   { background: #ffe4e6; color: #e11d48; }
.fi-violet { background: #f3e8ff; color: #9333ea; }

.feature-card:hover .fi-purple { box-shadow: 0 8px 22px rgba(124,58,237,.3); }
.feature-card:hover .fi-cyan   { box-shadow: 0 8px 22px rgba(8,145,178,.3); }
.feature-card:hover .fi-green  { box-shadow: 0 8px 22px rgba(5,150,105,.3); }
.feature-card:hover .fi-amber  { box-shadow: 0 8px 22px rgba(217,119,6,.3); }
.feature-card:hover .fi-rose   { box-shadow: 0 8px 22px rgba(225,29,72,.3); }
.feature-card:hover .fi-violet { box-shadow: 0 8px 22px rgba(147,51,234,.3); }

.feature-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .6rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #64748b;
    font-size: .9rem;
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ── Steps ────────────────────────────────────────────────────────── */
/* Wrapper for the connector line */
.steps-wrapper {
    position: relative;
}

/* Horizontal connector line between steps (desktop only) */
.steps-connector {
    display: none;
}

@media (min-width: 768px) {
    .steps-connector {
        display: block;
        position: absolute;
        top: 50px;           /* vertical center of .step-num */
        left: calc(16.66% + 40px);
        right: calc(16.66% + 40px);
        height: 2px;
        background: linear-gradient(90deg, #0d9488 0%, #06b6d4 50%, #4f46e5 100%);
        opacity: .22;
        pointer-events: none;
        z-index: 0;
    }
}

.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all .32s cubic-bezier(.22,1,.36,1);
    position: relative;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(0,0,0,.1);
    border-color: rgba(13,148,136,.3);
}

.step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d9488, #4f46e5);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(13,148,136,.38);
    transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
    position: relative;
    z-index: 1;
}

.step-card:hover .step-num {
    transform: scale(1.1);
    box-shadow: 0 14px 34px rgba(13,148,136,.55);
}

/* Small chip below the step number */
.step-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .28rem .75rem;
    border-radius: .5rem;
    background: #f1f5f9;
    color: #64748b;
    font-size: .72rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: background .2s, color .2s;
}

.step-card:hover .step-chip {
    background: #e0f2fe;
    color: #0369a1;
}

.step-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .625rem;
}

.step-card p {
    color: #64748b;
    font-size: .875rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Testimonials ─────────────────────────────────────────────────── */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

/* Subtle coloured radial wash */
.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(13,148,136,.09) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 40%, rgba(79,70,229,.09) 0%, transparent 55%);
    pointer-events: none;
}

.testimonial-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .3s cubic-bezier(.22,1,.36,1);
}

/* Giant decorative quote mark */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    right: 1.5rem;
    font-size: 6.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: rgba(13,148,136,.18);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.testimonial-card:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.18);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.testimonial-stars {
    display: flex;
    gap: .15rem;
    color: #fbbf24;
    font-size: .9rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    color: #cbd5e1;
    font-size: .93rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    position: relative;
    z-index: 1;
}

.ta-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d9488, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(13,148,136,.32);
}

.ta-name {
    font-weight: 700;
    color: #f1f5f9;
    font-size: .9rem;
}

.ta-role {
    font-size: .75rem;
    color: #64748b;
    margin-top: .12rem;
}

/* ── CTA Section ──────────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #0f766e 0%, #1e40af 50%, #312e81 100%);
    background-size: 200% 200%;
    animation: gradient-flow 7s ease infinite;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,.055);
    animation: spin-slow 22s linear infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    animation: spin-slow 28s linear infinite reverse;
}

/* Extra floating orbs */
.cta-orb-1 {
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    top: 12%; left: 8%;
    animation: float 7s ease-in-out infinite;
    pointer-events: none;
}

.cta-orb-2 {
    position: absolute;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    bottom: 14%; right: 12%;
    animation: float-alt 5.5s ease-in-out infinite .8s;
    pointer-events: none;
}

.cta-orb-3 {
    position: absolute;
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    top: 30%; right: 25%;
    animation: float 4s ease-in-out infinite .4s;
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-text {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.cta-section .btn-hero-primary,
.cta-section .btn-hero-outline {
    position: relative;
    z-index: 1;
}

/* ── Testimonial dark section label variant ───────────────────────── */
.section-label-dark {
    background: rgba(13,148,136,.15);
    border-color: rgba(13,148,136,.3);
    color: #5eead4;
}

.section-title-light { color: #f1f5f9; }

/* ── Public Footer ────────────────────────────────────────────────── */
.public-footer {
    background: #0f172a;
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 4rem 0 0;
    color: #94a3b8;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-brand-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d9488, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
}

.footer-desc {
    font-size: .85rem;
    line-height: 1.7;
    color: #64748b;
}

.footer-col-title {
    font-size: .8rem;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: .4px;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li { margin-bottom: .6rem; }

.footer-list a {
    color: #64748b;
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s;
}

.footer-list a:hover { color: #5eead4; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,.07);
    font-size: .8rem;
    color: #475569;
}
