/* style-marketing.css
   Marketing/auth-only rules extracted from style.css (LM14).
   Loaded via the extra_css block on marketing/auth pages only, so
   logged-in app pages (dashboard, alpha_ai, etc.) no longer parse them.
   Depends on :root vars + keyframes that remain in the always-loaded
   style.css (marketing pages load both). Do not add app-page classes here. */



.btn-cta-premium {
    padding: 16px 40px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: none; /* F7: was uppercase; canonical CTAs are not force-cased */
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px var(--primary-glow);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-cta-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--primary-glow);
    background: var(--primary-hover);
    color: white;
}

@media (max-width: 768px) {
    .btn-cta-premium {
        padding: 12px 24px;
        font-size: 0.9rem;
        border-radius: var(--radius-sm);
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.4) 0%, rgba(10, 14, 39, 0.6) 50%, rgba(10, 14, 39, 0.85) 100%);
    pointer-events: none;
}

.hero-content-wrapper {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: calc(100vh - 80px);
}

.hero-content-centered {
    max-width: 900px;
    width: 100%;
    text-align: center;
    transform: translateY(-48px);
}

/* Hero Content */
.hero-main {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: clamp(24px, 5vh, 48px);
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Outline variant (F7): transparent fill, visible token-tinted border. */
.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: rgba(59, 130, 246, 0.5);
}
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 101, 242, 0.2), transparent);
    /* Shine sweep: translateX is compositor-only vs animating left. Rest sits at left:-100%;
       +200% of own width lands the same edges as the old left:100% target. */
    transform: translateX(0);
    transition: transform 0.5s;
}

.btn-secondary:hover::before {
    transform: translateX(200%);
}

.btn-secondary:hover {
    background: rgba(13, 101, 242, 0.15);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(13, 101, 242, 0.3);
    border-color: var(--primary-hover);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   Section 3: Process Flow (MODERNIZED V2)
   ============================================ */
.process-section-v2 {
    padding: 120px 20px;
    background: linear-gradient(180deg, #0f1419 0%, #0a0e27 50%, #050816 100%);
    position: relative;
    overflow: hidden;
}

.process-bg-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.process-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: none; /* static blue glow — floating disabled (de-slop) */
}

.process-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 101, 242, 0.15), transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.process-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 101, 242, 0.1), transparent);
    bottom: -200px;
    right: -100px;
    animation-delay: 10s;
}

.process-header {
    margin-bottom: 100px;
}

.process-timeline-v2 {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step-v2 {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
    position: relative;
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-v2:nth-child(odd) {
    animation-delay: 0.1s;
}

.process-step-v2:nth-child(even) {
    animation-delay: 0.2s;
}

.step-connector {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.connector-line {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, rgba(13, 101, 242, 0.5), rgba(13, 101, 242, 0.1));
}

.process-step-v2.last-step .connector-line {
    display: none;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 101, 242, 0.2), rgba(13, 101, 242, 0.05));
    border: 2px solid rgba(13, 101, 242, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-v2:hover .step-circle {
    background: linear-gradient(135deg, rgba(13, 101, 242, 0.3), rgba(13, 101, 242, 0.1));
    border-color: rgba(13, 101, 242, 0.6);
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(13, 101, 242, 0.3);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d65f2;
}

.step-content-v2 {
    display: flex;
    gap: 24px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(13, 101, 242, 0.03));
    border: 1px solid rgba(13, 101, 242, 0.15);
    border-radius: 16px;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-v2:hover .step-content-v2 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(13, 101, 242, 0.06));
    border-color: rgba(13, 101, 242, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13, 101, 242, 0.15);
}

.step-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(13, 101, 242, 0.15), rgba(13, 101, 242, 0.03));
    border: 1.5px solid rgba(13, 101, 242, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    color: #0d65f2;
}

.step-icon-box svg {
    width: 28px;
    height: 28px;
}

.process-step-v2:hover .step-icon-box {
    background: linear-gradient(135deg, rgba(13, 101, 242, 0.25), rgba(13, 101, 242, 0.08));
    border-color: rgba(13, 101, 242, 0.4);
    transform: scale(1.1) rotate(-5deg);
}

.step-text {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.step-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Section 2: Problem → Solution (MODERNIZED V2)
   ============================================ */
.problem-solution-section-v2 {
    padding: 120px 20px;
    background: linear-gradient(180deg, #0a0e27 0%, #050816 50%, #0a0e27 100%);
    position: relative;
    overflow: hidden !important;
}

.section-bg-elements-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: none; /* static blue glow — floating disabled (de-slop) */
}

.gradient-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 101, 242, 0.25), transparent);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 101, 242, 0.15), transparent);
    bottom: -200px;
    right: -200px;
    animation-delay: 8s;
}

.gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.section-header-v2 {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-title-v2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle-v2 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin: 0;
}

.comparison-container-v2 {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

.comparison-side {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.side-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.side-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-icon-v2 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    border: 1.5px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.solution-icon-v2 {
    background: linear-gradient(135deg, rgba(13, 101, 242, 0.2), rgba(13, 101, 242, 0.05));
    border: 1.5px solid rgba(13, 101, 242, 0.3);
    color: #0d65f2;
}

.side-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.side-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.side-subtitle {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 500;
}

.problems-list-v2,
.solutions-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-item-v2,
.solution-item-v2 {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 16px;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.problem-item-v2 {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.12);
}

.problem-item-v2:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateX(8px);
}

.solution-item-v2 {
    background: rgba(13, 101, 242, 0.08);
    border-color: rgba(13, 101, 242, 0.12);
}

.solution-item-v2:hover {
    background: rgba(13, 101, 242, 0.12);
    border-color: rgba(13, 101, 242, 0.25);
    transform: translateX(-8px);
}

.item-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1.25rem;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.problem-marker-v2 {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.problem-item-v2:hover .problem-marker-v2 {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.1);
}

.solution-marker-v2 {
    background: rgba(13, 101, 242, 0.15);
    border: 2px solid rgba(13, 101, 242, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-marker-v2 svg {
    width: 20px;
    height: 20px;
    color: #0d65f2;
    stroke-width: 2.5;
}

.solution-item-v2:hover .solution-marker-v2 {
    background: rgba(13, 101, 242, 0.25);
    border-color: rgba(13, 101, 242, 0.5);
    transform: scale(1.1);
}

.item-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

.item-description {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.comparison-divider-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.divider-element {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 101, 242, 0.4) 50%, transparent 100%);
}

.divider-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 101, 242, 0.15), rgba(13, 101, 242, 0.05));
    border: 2px solid rgba(13, 101, 242, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(13, 101, 242, 0.9);
    animation: pulseIcon 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

.divider-icon svg {
    width: 28px;
    height: 28px;
}

.solution-tagline {
    margin-top: 28px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(13, 101, 242, 0.1), rgba(13, 101, 242, 0.05));
    border: 1.5px solid rgba(13, 101, 242, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
}

.solution-tagline p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d65f2;
    margin: 0;
    letter-spacing: -0.3px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .comparison-container-v2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-divider-v2 {
        flex-direction: row;
        height: auto;
        padding: 20px 0;
        gap: 16px;
    }

    .divider-element {
        width: 100px;
        height: 2px;
        flex: 1;
    }

    .process-timeline-v2 {
        padding: 0 10px;
    }

    .process-step-v2 {
        grid-template-columns: 70px 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .step-connector {
        display: flex;
    }

    .connector-line {
        display: block;
        height: 180px;
        top: 65px;
    }

    .step-circle {
        position: static;
        width: 55px;
        height: 55px;
        transform: none;
    }

    .step-content-v2 {
        padding: 24px 28px;
        gap: 20px;
        padding-top: 24px;
    }

    .step-icon-box {
        width: 50px;
        height: 50px;
    }

    .step-icon-box svg {
        width: 24px;
        height: 24px;
    }

    .step-title {
        font-size: 1.15rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .problem-solution-section-v2 {
        padding: 80px 16px;
    }

    .section-header-v2 {
        margin-bottom: 60px;
    }

    .problem-solution-section-v2 .section-title-v2 {
        font-size: clamp(1.75rem, 7vw, 2.1rem);
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .problem-solution-section-v2 .section-subtitle-v2 {
        font-size: 0.95rem;
        line-height: 1.55;
        max-width: 34ch;
        margin: 0 auto;
    }

    .comparison-container-v2 {
        gap: 28px;
    }

    .comparison-side {
        gap: 20px;
    }

    .side-header {
        gap: 16px;
        align-items: center;
    }

    .side-icon {
        width: 52px;
        height: 52px;
    }

    .side-title {
        font-size: 1.3rem;
    }

    .problem-item-v2,
    .solution-item-v2 {
        padding: 16px 20px;
        gap: 16px;
    }

    .item-marker {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .process-section-v2 {
        padding: 80px 16px;
    }

    .process-header {
        margin-bottom: 80px;
    }

    .process-timeline-v2 {
        padding: 0;
    }

    .process-step-v2 {
        display: block;
        margin-bottom: 40px;
        position: relative;
    }

    .step-connector {
        position: relative;
        height: auto;
        width: 100%;
    }

    .connector-line {
        display: none !important;
    }

    .step-circle {
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        z-index: 10;
        border-color: rgba(13, 101, 242, 0.5);
    }

    .step-number {
        font-size: 1.1rem;
    }

    .step-content-v2 {
        padding: 20px 24px;
        padding-top: 40px;
        gap: 16px;
        display: block;
    }

    .step-icon-box {
        width: 48px;
        height: 48px;
        margin-bottom: 8px;
    }

    .step-icon-box svg {
        width: 22px;
        height: 22px;
    }

    .step-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .step-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .problem-solution-section-v2 {
        padding: 60px 12px;
    }

    .section-header-v2 {
        margin-bottom: 48px;
    }

    .problem-solution-section-v2 .section-title-v2 {
        font-size: clamp(1.35rem, 7.2vw, 1.6rem);
        line-height: 1.24;
    }

    .problem-solution-section-v2 .section-subtitle-v2 {
        font-size: 0.84rem;
        line-height: 1.5;
        max-width: 32ch;
        margin: 0 auto;
    }

    .comparison-container-v2 {
        gap: 24px;
    }

    .side-header {
        gap: 12px;
    }

    .side-icon {
        width: 48px;
        height: 48px;
    }

    .side-icon svg {
        width: 28px;
        height: 28px;
    }

    .side-title {
        font-size: 1.1rem;
    }

    .side-subtitle {
        font-size: 0.85rem;
    }

    .problem-item-v2,
    .solution-item-v2 {
        padding: 14px 16px;
        gap: 14px;
    }

    .problem-item-v2:hover,
    .solution-item-v2:hover {
        transform: none;
    }

    .item-marker {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .item-title {
        font-size: 0.95rem;
    }

    .item-description {
        font-size: 0.85rem;
    }

    .solution-tagline {
        margin-top: 20px;
        padding: 16px;
    }

    .solution-tagline p {
        font-size: 1rem;
    }

    .process-section-v2 {
        padding: 60px 12px;
    }

    .process-header {
        margin-bottom: 40px;
    }

    .process-header .section-title-v2 {
        font-size: 1.3rem;
    }

    .process-header .section-subtitle-v2 {
        font-size: 0.8rem;
    }

    .process-timeline-v2 {
        padding: 0;
    }

    .process-step-v2 {
        display: block;
        margin-bottom: 32px;
        position: relative;
    }

    .step-connector {
        position: relative;
        height: auto;
        width: 100%;
    }

    .connector-line {
        display: none !important;
    }

    .step-circle {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 44px;
        height: 44px;
        z-index: 10;
    }

    .step-number {
        font-size: 0.95rem;
    }

    .step-content-v2 {
        padding: 14px 16px;
        padding-top: 36px;
        gap: 12px;
        display: block;
        position: relative;
    }

    .step-content-v2:hover {
        transform: none;
    }

    .step-icon-box {
        width: 42px;
        height: 42px;
        margin-bottom: 6px;
    }

    .step-icon-box svg {
        width: 20px;
        height: 20px;
    }

    .step-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .step-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

.section-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   Section 3: Process Flow - New Blue 3D Design
   ============================================ */
.process-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0a0e27 0%, #050816 50%, #0a0e27 100%);
    position: relative;
    overflow: hidden;
}

.process-card-new {
    position: relative;
    background: rgba(5, 10, 30, 0.8);
    border: 1px solid rgba(13, 101, 242, 0.3);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-card-new:hover,
.process-card-new.process-card-inview {
    transform: translateY(-8px);
    border-color: rgba(13, 101, 242, 0.6);
    box-shadow: 
        0 20px 50px rgba(13, 101, 242, 0.3),
        0 0 60px rgba(13, 101, 242, 0.15);
}

/* Particles for all sections */
.section-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.section-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(13, 101, 242, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(13, 101, 242, 0.8);
    animation: sectionParticleFloat 20s infinite ease-in-out;
}

.section-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.section-particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 3s; }
.section-particle:nth-child(3) { left: 80%; top: 30%; animation-delay: 6s; }
.section-particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 9s; }
.section-particle:nth-child(5) { left: 40%; top: 10%; animation-delay: 12s; }
.section-particle:nth-child(6) { left: 90%; top: 80%; animation-delay: 15s; }

/* ============================================
   Section 4: Performance Snapshot
   ============================================ */
.performance-snapshot-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.snapshot-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13, 101, 242, 0.15), transparent);
    border-radius: 50%;
    filter: blur(100px);
    transform: translate(-50%, -50%);
    animation: glowPulse 8s ease-in-out infinite;
}

.snapshot-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.snapshot-content {
    position: relative;
    z-index: 1;
}

.snapshot-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.metric-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.metric-bar {
    width: 100%;
    height: 8px;
    background: rgba(13, 101, 242, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill-61 { width: 61%; }
.metric-fill-68 { width: 68%; }
.metric-fill-41 { width: 41%; }

.snapshot-chart {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(13, 101, 242, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
}

.chart-container {
    width: 100%;
    height: 300px;
    position: relative;
}

.chart-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 8px;
    padding: 20px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), rgba(13, 101, 242, 0.4));
    border-radius: 4px 4px 0 0;
    min-width: 20px;
    animation: barGrow 1s ease-out;
    transition: height 0.3s ease;
}

.chart-bar:nth-child(1) { animation-delay: 0.05s; }
.chart-bar:nth-child(2) { animation-delay: 0.1s; }
.chart-bar:nth-child(3) { animation-delay: 0.15s; }
.chart-bar:nth-child(4) { animation-delay: 0.2s; }
.chart-bar:nth-child(5) { animation-delay: 0.25s; }
.chart-bar:nth-child(6) { animation-delay: 0.3s; }
.chart-bar:nth-child(7) { animation-delay: 0.35s; }
.chart-bar:nth-child(8) { animation-delay: 0.4s; }
.chart-bar:nth-child(9) { animation-delay: 0.45s; }
.chart-bar:nth-child(10) { animation-delay: 0.5s; }

.chart-bar-h45 { height: 45%; }
.chart-bar-h55 { height: 55%; }
.chart-bar-h60 { height: 60%; }
.chart-bar-h65 { height: 65%; }
.chart-bar-h70 { height: 70%; }
.chart-bar-h75 { height: 75%; }
.chart-bar-h80 { height: 80%; }
.chart-bar-h85 { height: 85%; }
.chart-bar-h90 { height: 90%; }

.snapshot-cta {
    text-align: center;
}

/* ============================================
   Section 6: Pricing Preview
   ============================================ */
.pricing-preview-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
}

.pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.preview-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--red-orange));
    color: #000;
    padding: 6px 20px;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preview-plan-name {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.preview-plan-price {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 32px;
}

.preview-plan-price span {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.preview-plan-features {
    margin-bottom: 32px;
    text-align: left;
}

.preview-feature {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    border-bottom: 1px solid rgba(13, 101, 242, 0.1);
}

.preview-feature:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
}

/* ============================================
   Section 7: Final CTA
   ============================================ */
.final-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-bg) 0%, #000000 100%);
    position: relative;
    overflow: hidden !important;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(13, 101, 242, 0.2), transparent);
    border-radius: 50%;
    filter: blur(120px);
    transform: translate(-50%, -50%);
    animation: ctaGlowPulse 6s ease-in-out infinite;
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(13, 101, 242, 0.8);
    animation: ctaParticleFloat 15s ease-in-out infinite;
}

.cta-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.cta-particle:nth-child(2) { top: 60%; right: 15%; animation-delay: 5s; }
.cta-particle:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 10s; }
.cta-particle:nth-child(4) { bottom: 60%; right: 10%; animation-delay: 15s; }

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.plans-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(13, 101, 242, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: border-color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(13, 101, 242, 0.2);
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 101, 242, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover {
    border-color: rgba(13, 101, 242, 0.8);
    transform: translateY(-12px);
    box-shadow: 
        0 20px 60px rgba(13, 101, 242, 0.5),
        0 0 80px rgba(13, 101, 242, 0.3),
        inset 0 0 30px rgba(13, 101, 242, 0.1);
    animation: cardPulse 2s ease-in-out infinite;
}

.plan-card > * {
    position: relative;
    z-index: 1;
}

.plan-card.plan-popular {
    border-color: var(--primary);
    border-width: 3px;
    box-shadow: 0 0 40px rgba(13, 101, 242, 0.5);
    /* LL3: overflow visible so the ::after outer glow isn't clipped by the card. */
    overflow: visible;
}

/* LL3: static glow layer whose opacity pulses (compositor-only) — replaces the
   old box-shadow keyframe interpolation. Sits behind card content. */
.plan-card.plan-popular::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 60px rgba(13, 101, 242, 0.8);
    z-index: 0;
    pointer-events: none;
    animation: popularGlow 3s ease-in-out infinite;
}

/* LL3: keep the popular card's hover gradient within its footprint now that
   overflow is visible (the base ::before is 200% and relied on clipping). */
.plan-card.plan-popular::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.plan-card.plan-popular:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 30px 80px rgba(13, 101, 242, 0.7),
        0 0 120px rgba(13, 101, 242, 0.5),
        inset 0 0 50px rgba(13, 101, 242, 0.2);
}

.plan-header {
    margin-bottom: 32px;
    text-align: center;
}

.plan-name {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, color 0.3s ease;
    transform: translateX(0);
}

.plan-card:hover .plan-features li {
    transform: translateX(5px);
    color: var(--text-primary);
}

.plan-card:hover .plan-features li:nth-child(1) {
    transition-delay: 0.05s;
}

.plan-card:hover .plan-features li:nth-child(2) {
    transition-delay: 0.1s;
}

.plan-card:hover .plan-features li:nth-child(3) {
    transition-delay: 0.15s;
}

.plan-card:hover .plan-features li:nth-child(4) {
    transition-delay: 0.2s;
}

.plan-card:hover .plan-features li:nth-child(5) {
    transition-delay: 0.25s;
}

.plan-features li:last-child {
    border-bottom: none;
}

.auth-eyebrow {
    color: #84b0f8;
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.auth-form {
    margin-bottom: 18px;
}

.auth-input-shell {
    position: relative;
}

.auth-field-icon {
    align-items: center;
    color: rgba(132, 176, 248, 0.58);
    display: flex;
    height: 20px;
    justify-content: center;
    left: 13px;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    z-index: 2;
}

.auth-field-icon svg {
    height: 18px;
    width: 18px;
}

.auth-name-row {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.success-message {
    background: rgba(6, 78, 59, 0.22);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: var(--radius-sm);
    color: #86efac;
    font-size: var(--font-size-sm);
    margin-top: 16px;
    padding: 12px;
}

.auth-page .success-message {
    margin-top: 12px;
    padding: 10px 12px;
    font-size: var(--font-size-sm);
}

.auth-links-row {
    font-size: 0.84rem;
    margin: -4px 0 16px;
}

.auth-form-tools {
    text-align: right;
}

.auth-links-row .auth-link {
    color: #84b0f8;
    font-weight: 700;
    text-decoration: none;
}

.auth-links-row .auth-link:hover {
    text-decoration: underline;
}

.auth-security-note {
    color: #64748b;
    font-size: 0.76rem;
    line-height: 1.45;
    margin: 14px 0 0;
    text-align: center;
}


/* ============================================
   Contact Us Page - Premium Design
   ============================================ */
.contact-section {
    padding: 140px 20px 100px;
    background: var(--dark-bg);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.contact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.contact-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(13, 101, 242, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 101, 242, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: linear-gradient(180deg, rgba(20, 25, 45, 0.7) 0%, rgba(10, 14, 39, 0.9) 100%);
    border: 1px solid rgba(13, 101, 242, 0.2);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 101, 242, 0.06), transparent 50%);
    pointer-events: none;
}

.contact-info-content { position: relative; z-index: 1; }

.contact-info-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(13, 101, 242, 0.15);
    border: 1px solid rgba(13, 101, 242, 0.3);
    border-radius: var(--radius-pill);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-info-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-info-desc {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-info-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 101, 242, 0.1);
    border: 1px solid rgba(13, 101, 242, 0.2);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-stat-value {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
}

.contact-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(13, 101, 242, 0.3), transparent);
    margin: 32px 0;
    opacity: 0.5;
}

.contact-info-note {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form-card {
    background: linear-gradient(180deg, rgba(20, 25, 45, 0.6) 0%, rgba(10, 14, 39, 0.9) 100%);
    border: 1px solid rgba(13, 101, 242, 0.2);
    border-radius: 24px;
    padding: 48px 44px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-group { margin-bottom: 20px; }

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

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(13, 101, 242, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: var(--transition-base);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(13, 101, 242, 0.15);
}

.contact-form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    margin-top: 8px;
    font-size: var(--font-size-lg);
}

.contact-submit-btn .btn-arrow {
    display: flex;
    transition: transform 0.3s ease;
}

.contact-submit-btn .btn-arrow svg {
    width: 20px;
    height: 20px;
}

.contact-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.contact-error-message {
    padding: 14px 18px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: var(--radius-md);
    color: #f87171;
    font-size: var(--font-size-sm);
    margin-bottom: 24px;
}

.contact-success-message {
    text-align: center;
    padding: 48px 24px;
}

.contact-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid rgba(34, 197, 94, 0.5);
    border-radius: 50%;
}

.contact-success-icon svg {
    width: 36px;
    height: 36px;
    color: #22c55e;
}

.contact-success-message h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-success-message p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-section { padding: 120px 16px 60px; }
    .contact-info-card,
    .contact-form-card { padding: 32px 24px; }
    .contact-form-row { grid-template-columns: 1fr; }
    .contact-info-title { font-size: var(--font-size-2xl); }
}

/* Contact page enterprise refresh */
.contact-section {
    background:
        radial-gradient(circle at 18% 0%, rgba(0, 128, 255, 0.04), transparent 30%),
        linear-gradient(180deg, #050816 0%, #030712 100%);
    min-height: auto;
    overflow: hidden;
    padding: 104px 20px 48px;
}

.contact-bg-elements {
    opacity: 0.85;
}

.contact-grid {
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.022) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.54), transparent 76%);
}

.contact-wrapper {
    align-items: start;
    gap: 18px;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    max-width: 1040px;
}

.contact-info-card,
.contact-form-card {
    background:
        linear-gradient(180deg, rgba(12, 20, 36, 0.9) 0%, rgba(5, 10, 22, 0.96) 100%);
    border: 1px solid rgba(148, 163, 184, 0.17);
    border-radius: var(--radius-sm);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.contact-info-card {
    padding: 28px 26px;
}

.contact-info-card::before {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.045), transparent 40%);
}

.contact-form-card {
    padding: 28px 30px;
}

.contact-info-badge {
    background: rgba(148, 163, 184, 0.08);
    border-color: rgba(148, 163, 184, 0.18);
    border-radius: var(--radius-sm);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    padding: 5px 8px;
}

.contact-info-title {
    font-size: 1.72rem;
    letter-spacing: 0;
    line-height: 1.16;
    margin-bottom: 10px;
}

.contact-info-desc {
    color: #9aa8bc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 18px;
}

.contact-info-stats {
    gap: 0;
}

.contact-stat {
    align-items: center;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.11);
    border-radius: 0;
    gap: 12px;
    padding: 12px 0;
}

.contact-stat-icon {
    background: rgba(129, 175, 248, 0.08);
    border-color: rgba(129, 175, 248, 0.16);
    border-radius: var(--radius-sm);
    height: 32px;
    width: 32px;
}

.contact-stat-icon svg {
    height: 16px;
    width: 16px;
}

.contact-stat-label {
    color: #7f8da3;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.contact-stat-value {
    color: #edf6ff;
    font-size: 0.88rem;
    font-weight: 750;
    line-height: 1.35;
}

.contact-divider {
    background: rgba(148, 163, 184, 0.11);
    margin: 12px 0 14px;
}

.contact-info-note {
    color: #8b9aaf;
    font-size: 0.84rem;
    line-height: 1.55;
}

.contact-form-header {
    margin-bottom: 20px;
}

.contact-form-title {
    font-size: 1.34rem;
    font-weight: 800;
    letter-spacing: 0;
}

.contact-form-subtitle {
    color: #9aa8bc;
    font-size: 0.88rem;
    line-height: 1.5;
}

.contact-form-row {
    gap: 14px;
}

.contact-form-group {
    margin-bottom: 13px;
}

.contact-form-group label {
    color: #d9e8ff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 7px;
}

.contact-form-group input,
.contact-form-group textarea {
    background: rgba(2, 6, 23, 0.58);
    border-color: rgba(148, 163, 184, 0.18);
    border-radius: var(--radius-sm);
    color: #f8fbff;
    font-size: 0.9rem;
    min-height: 40px;
    padding: 10px 12px;
}

.contact-form-group input:hover,
.contact-form-group textarea:hover {
    border-color: rgba(13, 101, 242, 0.28);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    background: rgba(2, 6, 23, 0.78);
    border-color: rgba(13, 101, 242, 0.68);
    box-shadow: 0 0 0 3px rgba(13, 101, 242, 0.12);
}

.contact-form-group textarea {
    min-height: 106px;
}

.contact-submit-btn {
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 900;
    min-height: 40px;
    padding: 10px 16px;
    width: auto;
}

.contact-error-message {
    border-radius: var(--radius-md);
}

.contact-success-message {
    padding: 36px 20px;
}

.contact-success-icon {
    height: 62px;
    margin-bottom: 18px;
    width: 62px;
}

.contact-success-message h3 {
    font-size: 1.45rem;
}

@media (max-width: 900px) {
    .contact-section {
        padding: 92px 16px 42px;
    }

    .contact-wrapper {
        gap: 18px;
        grid-template-columns: 1fr;
        max-width: 640px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px 22px;
    }

    .contact-info-title {
        font-size: 1.55rem;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 86px 14px 34px;
    }

    .contact-info-card,
    .contact-form-card {
        border-radius: var(--radius-sm);
        padding: 22px 18px;
    }

    .contact-info-title {
        font-size: 1.42rem;
    }

    .contact-stat {
        align-items: flex-start;
        padding: 11px 0;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-submit-btn {
        width: 100%;
    }

    .contact-form-group textarea {
        min-height: 96px;
    }
}

/* --- Punchier section headers: bigger, tighter, gradient accent bar --- */
.section-title-v2{
  font-size:clamp(2.75rem,5.5vw,4rem);
  font-weight:900; letter-spacing:-2px; line-height:1.04;
}
.section-subtitle-v2{ font-size:clamp(1.05rem,2vw,1.3rem); color:rgba(226,232,240,.72); }
.section-header-v2{ position:relative; }
.section-header-v2::after{
  content:""; display:block; width:76px; height:4px; margin:24px auto 0;
  border-radius:999px; background:var(--bp-grad);
  box-shadow:0 0 20px rgba(59,130,246,.65);
}

/* --- Process steps: bolder circle + lift --- */
.process-step-v2:hover .step-content-v2{ box-shadow:var(--bp-glow); }
.hsw-testimonial-card{
  border-top:2px solid rgba(96,165,250,.35);
  transition:transform .25s cubic-bezier(.4,0,.2,1),box-shadow .25s,border-color .25s;
}
.hsw-testimonial-card:hover{ transform:translateY(-4px); box-shadow:var(--bp-glow); border-top-color:var(--bp-accent-bright); }
.ai-layer-v2{ transition:transform .2s,box-shadow .2s,border-color .2s; }
.ai-layer-v2:hover{ transform:translateX(4px); box-shadow:var(--bp-glow); border-color:var(--bp-accent-bright); }
.faq-item{ transition:border-color .2s,box-shadow .2s,transform .2s; }
.faq-item:hover{ border-color:rgba(96,165,250,.40); box-shadow:var(--bp-glow); }
.faq-item:hover .faq-num{ color:var(--bp-accent-bright); }

/* --- P9: reveal the site-wide 3D particle field through landing sections --- */
.ai-glimpse-section, .problem-solution-section-v2, .process-section-v2,
.hsw-testimonials-section, .activation-hero, .engine-section-v2,
.ai-layer-section, .signal-proof-section, .pricing-teaser-section{
  background: transparent !important;
  background-image: none !important;
}