/* =========================================================
   AI WHITEBOARD PAGE — REFINED CSS
   ========================================================= */

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ===== HERO SECTION ===== */
.hero {
    padding: 0;
    background: linear-gradient(135deg, #0d1b3e 0%, #1a3578 55%, #0d1b3e 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(47,98,208,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47,98,208,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0%   { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(7,196,248,0.13) 0%, transparent 70%);
    top: -120px; right: -120px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; }
    50%       { opacity: 1; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    animation: fadeUp 0.8s ease 0.35s both;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    animation: fadeUp 0.8s ease 0.5s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeUp 0.8s ease 0.65s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-image {
    position: relative;
    animation: fadeRight 0.9s ease 0.4s both;
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 60px rgba(47,98,208,0.18);
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

@media (max-width: 900px) {
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 90px 0 60px; }
    .hero-actions { flex-direction: column; }
}

/* ===== HERO CANVAS BACKGROUND ===== */
#neural-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    pointer-events: none;
}

/* ===== DIFFERENT SECTION ===== */
.different-section {
    padding-top: 5rem;
    overflow: visible;
}

/* ===== CUSTOM CURSOR ELEMENT (injected by JS) ===== */
#flying-bot-cursor {
    position: fixed;
    width: 48px;
    height: 48px;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    will-change: transform;
}

#flying-bot-cursor.visible {
    opacity: 1;
}

/* ===== MAGNETIC HOVER EFFECT ===== */
.point-magnetic {
    --mx: 0px;
    --my: 0px;
    transform: translate(var(--mx), var(--my)) scale(1);
    transition: transform .18s ease, box-shadow .18s ease, background .25s ease;
    will-change: transform;
}

/* ===== POINT ICON ===== */
.point-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(47,98,208,0.08);
    border-radius: 8px;
}

/* ===== POINT ITEM ===== */
.point-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: var(--bg-section);
    border-radius: 12px;
    padding: .85rem 1.1rem;
    text-align: left;
    border: 1px solid transparent;
    opacity: 0;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.point-item:hover {
    background: #e8f0ff;
    box-shadow: 0 4px 16px rgba(47,98,208,0.12);
}

.point-inner {
    display: flex;
    align-items: center;
    gap: .7rem;
    width: 100%;
}

/* ===== CENTRE IMAGE WRAP — smooth 3-D tilt ===== */
.center-image-wrap {
    transition: transform 0.12s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

.points-col.left .point-magnetic {
    transform: translateX(-50px) translate(var(--mx), var(--my));
}

.points-col.right .point-magnetic {
    transform: translateX(50px) translate(var(--mx), var(--my));
}

/* ===== DIFFERENT CARD ===== */
.different-card {
    margin: 0 auto;
    overflow: visible;
    text-align: center;
    padding: 3rem;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 40px rgba(47,98,208,0.1);
}

.different-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.different-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    padding: 0.9rem;
    border-radius: 12px;
    background: var(--bg-section);
    transition: background 0.25s ease, transform 0.25s ease;
}

.different-item:hover {
    background: #e8f0ff;
    transform: translateY(-2px);
}

.check-icon {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    transition: transform .08s linear;
    transform-origin: center;
}

.different-item p {
    font-size: 0.97rem;
    color: var(--text-main);
    margin: 0;
    font-weight: 600;
}

.key-idea {
    font-size: 1.02rem;
    color: var(--text-main);
    background: var(--bg-section);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.gains-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-soft);
}

.gains-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.gains-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.gains-list li {
    font-size: 0.97rem;
    padding: 0.6rem 0 0.6rem 1.8rem;
    color: var(--text-muted);
    position: relative;
}

.gains-list li::before {
    content: '✓';
    position: absolute;
    left: 0.25rem;
    color: var(--primary);
    font-weight: bold;
}

.user-emotion {
    font-size: 1.05rem;
    color: var(--primary);
    background: var(--bg-section);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
}

@media (max-width: 900px) {
    .different-grid { grid-template-columns: 1fr; }
    .gains-list { grid-template-columns: 1fr; }
}

.split-layout {
    display: grid;
    overflow: visible;
    grid-template-columns: 1fr 240px 1fr;
    gap: 1.5rem 2rem;
    align-items: center;
}

.points-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.point-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: var(--bg-section);
    border-radius: 12px;
    padding: .85rem 1.1rem;
    text-align: left;
    border: 1px solid transparent;
    opacity: 0;
    --mx: 0px;
    --my: 0px;
    transform: translate(var(--mx), var(--my)) scale(1);
    transition: transform .15s ease, box-shadow .15s ease, background .25s ease;
}

.point-inner {
    display: flex;
    align-items: center;
    gap: .7rem;
    width: 100%;
    transition: transform .18s ease;
}

.points-col.left .point-item { transform: translateX(-50px); }
.points-col.right .point-item { transform: translateX(50px); }

.center-image-wrap {
    opacity: 0;
    transform: scale(.82);
    animation: popIn .65s cubic-bezier(.22,1,.36,1) forwards .3s;
    position: relative;
}

.center-image-wrap img {
    width: 100%;
    border-radius: 18px;
}

.center-image-wrap.pulsing::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    border: 2px solid rgba(47,98,208,.35);
}

@keyframes slideFromLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideFromRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes popIn {
    to { opacity: 1; transform: scale(1); }
}

@keyframes ringPulse {
    0%   { opacity: .8; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.06); }
}

@media(max-width: 760px) {
    .split-layout { grid-template-columns: 1fr; }
    .center-image-wrap { max-width: 220px; margin: 0 auto; }
}

/* =========================================================
   2.5D AI BOT — all styles prefixed .bot-* (zero conflicts)
   ========================================================= */

/* Outer wrapper: 220×220 visible area inside the 240px grid column */
.bot-scale-wrap {
    width: 220px;
    height: 220px;
    overflow: visible;
    position: relative;
    margin: 0 auto;
}

/* The actual 400px bot, scaled down to fit */
.bot-scale-inner {
    width: 400px;
    height: 400px;
    transform: scale(0.55);
    transform-origin: top left;
    position: absolute;
    top: 0;
    left: 0;
}

/* Main sprite body */
.bot-sprite {
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
    position: relative;
    box-shadow:
        0 0 50px rgba(0,255,255,0.3),
        inset 0 -20px 30px rgba(0,0,0,0.6),
        inset 0 20px 30px rgba(255,255,255,0.1);
    border: 2px solid rgba(0,255,255,0.3);
    overflow: hidden;
    animation: bot-breathe 4s ease-in-out infinite;
}

/* Sheen overlay */
.bot-sprite::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.3) 0%, transparent 50%);
    transform: rotate(30deg);
    pointer-events: none;
}

/* Head / helmet */
.bot-head {
    width: 220px; height: 220px;
    background: linear-gradient(145deg, #4a90e2, #1a4a8a);
    border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
    position: absolute;
    top: 60px; left: 90px;
    box-shadow:
        -15px -15px 30px rgba(255,255,255,0.2),
         15px  15px 30px rgba(0,0,0,0.5),
        inset -5px -5px 15px rgba(0,0,0,0.5),
        inset  5px  5px 15px rgba(255,255,255,0.3);
    transform: rotate(-2deg);
    transition: transform 0.08s linear;
}

/* Face plate */
.bot-face-plate {
    width: 160px; height: 120px;
    background: linear-gradient(135deg, #2a6bb0, #0a3a6a);
    border-radius: 30% 30% 25% 25% / 40% 40% 30% 30%;
    position: absolute;
    top: 50px; left: 30px;
    box-shadow: inset 0 -5px 10px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

/* Scan line sweeping across the face */
.bot-face-plate::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,255,255,0.4), transparent);
    animation: bot-scan 3s infinite;
}

/* Eyes */
.bot-eye {
    width: 40px; height: 40px;
    background: radial-gradient(circle at 30% 30%, #88ccff, #0066cc);
    border-radius: 50%;
    position: absolute;
    top: 70px;
    box-shadow:
        0 10px 15px rgba(0,0,0,0.3),
        inset -3px -3px 8px rgba(0,0,0,0.5),
        inset  3px  3px 8px rgba(255,255,255,0.3);
    border: 2px solid #aaddff;
    overflow: hidden;
}
.bot-eye-l { left: 45px; }
.bot-eye-r { right: 45px; }

/* Pupils */
.bot-pupil {
    width: 20px; height: 20px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 10px; left: 10px;
    box-shadow: 0 0 15px #00ffff;
    transition: transform 0.06s linear;
}

/* Blink overlay */
.bot-pupil::after {
    content: '';
    position: absolute;
    left: -10px; top: -10px;
    width: 40px; height: 40px;
    background: #2a6bb0;
    border-radius: 50%;
    transform: scaleY(0);
    transform-origin: center;
    animation: bot-blink 6s infinite;
}

/* Antenna */
.bot-antenna-base {
    width: 20px; height: 50px;
    background: linear-gradient(90deg, #ffaa00, #ff6600);
    position: absolute;
    top: -30px; left: 100px;
    border-radius: 40% 40% 20% 20% / 60% 60% 20% 20%;
    box-shadow:
         2px 5px 10px rgba(0,0,0,0.3),
        inset -2px -2px 5px rgba(0,0,0,0.5),
        inset  2px  2px 5px rgba(255,255,255,0.3);
    transform: rotate(3deg);
}

.bot-antenna-ball {
    width: 30px; height: 30px;
    background: radial-gradient(circle at 30% 30%, #ffffaa, #ffaa00);
    border-radius: 50%;
    position: absolute;
    top: -25px; left: -5px;
    box-shadow:
        0 5px 15px #ffaa00,
        inset -3px -3px 8px rgba(0,0,0,0.3),
        inset  3px  3px 8px rgba(255,255,255,0.5);
    animation: bot-glow 2s infinite;
}

/* Body */
.bot-body {
    width: 200px; height: 120px;
    background: linear-gradient(165deg, #3a7ac0, #0a2a5a);
    position: absolute;
    top: 240px; left: 100px;
    border-radius: 30% 30% 20% 20% / 40% 40% 30% 30%;
    box-shadow:
        -10px -10px 20px rgba(255,255,255,0.1),
         15px  15px 25px rgba(0,0,0,0.6),
        inset -5px -10px 15px rgba(0,0,0,0.5),
        inset  5px   5px 15px rgba(255,255,255,0.2);
    transform: perspective(500px) rotateX(2deg);
}

/* Arms */
.bot-arm {
    width: 40px; height: 100px;
    background: linear-gradient(90deg, #4a90e2, #1a4a8a);
    position: absolute;
    border-radius: 30% 30% 20% 20% / 40% 40% 30% 30%;
    box-shadow:
        5px 10px 15px rgba(0,0,0,0.4),
        inset -5px -5px 10px rgba(0,0,0,0.5),
        inset  5px  5px 10px rgba(255,255,255,0.2);
}
.bot-arm-l { top: 250px; left:  70px; transform: rotate( 10deg) perspective(500px) rotateY(-5deg); }
.bot-arm-r { top: 250px; left: 290px; transform: rotate(-10deg) perspective(500px) rotateY( 5deg); }

/* Floating binary bits */
.bot-bit {
    position: absolute;
    color: rgba(0,255,255,0.3);
    font-family: monospace;
    font-size: 20px;
    font-weight: bold;
    pointer-events: none;
    text-shadow: 0 0 10px #00ffff;
    animation: bot-float 3s infinite;
}
.bot-bit:nth-child(1) { top:  20px; left:  50px; animation-delay: 0s;   }
.bot-bit:nth-child(2) { top: 350px; right: 30px; animation-delay: 1s;   }
.bot-bit:nth-child(3) { top: 100px; right: 60px; animation-delay: 2s;   }
.bot-bit:nth-child(4) { bottom:50px;left:  80px; animation-delay: 1.5s; }

/* Ground glow shadow */
.bot-shadow {
    width: 300px; height: 30px;
    background: radial-gradient(ellipse at center, rgba(0,255,255,0.2) 0%, transparent 70%);
    position: absolute;
    bottom: -20px; left: 50px;
    border-radius: 50%;
    filter: blur(10px);
    animation: bot-shadow-pulse 3s infinite;
}

/* ── Bot keyframes ── */
@keyframes bot-breathe {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-6px) scale(1.02); }
}

@keyframes bot-blink {
    0%,92%,100% { transform: scaleY(0); }
    95%          { transform: scaleY(1); }
}

@keyframes bot-scan {
    0%   { left: -100%; }
    100% { left:  200%; }
}

@keyframes bot-glow {
    0%,100% {
        box-shadow: 0 0 20px #ffaa00,
                    inset -3px -3px 8px rgba(0,0,0,0.3),
                    inset  3px  3px 8px rgba(255,255,255,0.5);
    }
    50% {
        box-shadow: 0 0 40px #ffaa00,
                    inset -3px -3px 8px rgba(0,0,0,0.3),
                    inset  3px  3px 8px rgba(255,255,255,0.5);
    }
}

@keyframes bot-float {
    0%,100% { transform: translateY(0) rotateY(0deg); }
    50%      { transform: translateY(-10px) rotateY(5deg); }
}

@keyframes bot-shadow-pulse {
    0%,100% { opacity: 0.3; transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(1.1); }
}

/* =========================================================
   END 2.5D BOT STYLES
   ========================================================= */

/* ===== CAPABILITIES ===== */
.capabilities { padding: 3rem 0 2rem; }

.capability-block {
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.capability-block:nth-child(odd) {
    background: linear-gradient(135deg, #dce8f8, #e8f2ff);
}

.capability-block:nth-child(even) {
    background: linear-gradient(135deg, #1a3578, #213c85);
}

.capability-block:nth-child(even)::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(7,196,248,0.08) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

.capability-block:nth-child(even) h3,
.capability-block:nth-child(even) span { color: #ffffff; }

.capability-block:nth-child(even) p,
.capability-block:nth-child(even) li { color: rgb(255, 255, 255); }

.capability-block:nth-child(even) .cap-description {
    background: rgba(255,255,255,0.06);
    border-left-color: var(--secondary);
    color: rgb(255, 255, 255);
}

.capability-block:nth-child(even) .capability-content li::before {
    color: var(--secondary);
}

.capability-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.capability-row.reverse .capability-image { order: 2; }
.capability-row.reverse .capability-content { order: 1; }

.capability-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.capability-row:hover .capability-image img {
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(47,98,208,0.2);
}

.cap-badge {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(47,98,208,0.1);
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.capability-block:nth-child(even) .cap-badge {
    background: rgba(7,196,248,0.15);
    color: var(--secondary);
}

.capability-content h3 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: var(--text-main);
}

.cap-description {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    padding: 0.8rem 1rem;
    border-left: 3px solid var(--primary);
    background: rgba(47,98,208,0.05);
    border-radius: 0 8px 8px 0;
    margin-bottom: 0.5rem;
}

.capability-content ul { list-style: none; padding: 0; margin: 0; }

.capability-content li {
    font-size: 1rem;
    padding: 0.7rem 0 0.7rem 1.8rem;
    color: var(--text-main);
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    line-height: 1.6;
    transition: color 0.2s ease;
}

.capability-content li:last-child { border-bottom: none; }

.capability-content li::before {
    content: '▸';
    position: absolute;
    left: 0.25rem;
    color: var(--primary);
    transition: transform 0.2s ease;
}
.capability-content li:hover::before { transform: translateX(3px); }

.capability-block:nth-child(even) .capability-content li {
    border-bottom-color: rgba(255,255,255,0.06);
}

@media (max-width: 900px) {
    .capability-row, .capability-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .capability-row.reverse .capability-image,
    .capability-row.reverse .capability-content { order: 0; }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: linear-gradient(180deg, #f9fafb, #eef4ff);
    padding: 3rem 0 2rem;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.step-item {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    max-width: 180px;
    min-height: 180px;
    flex: 0 0 auto;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.step-number {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 14px rgba(47,98,208,0.3);
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin: 0;
    line-height: 1.5;
    font-weight: 600;
}

.step-arrow {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    opacity: 0.45;
    animation: nudge 2s ease-in-out infinite;
}

@keyframes nudge {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(5px); }
}

@media (max-width: 900px) {
    .steps-container { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); animation: none; }
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: #ffffff;
    padding: 3rem 0 2rem;
}

.trust-section .section-title {
    color: var(--text-main);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f7f9fc;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.trust-item .icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-main);
    margin: 0;
    font-weight: 500;
}

@media (max-width: 600px) { .trust-grid { grid-template-columns: 1fr; } }

/* ===== WHITEBOARD CONTEXT ===== */
.whiteboard-context {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg,#eef3ff 0%,#f8fafc 100%);
    position: relative;
}

.context-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.context-card {
    background: #ffffff;
    padding: 2.6rem;
    border-radius: 22px;
    border: 1px solid rgba(47,98,208,0.08);
    box-shadow: 0 12px 40px rgba(47,98,208,0.08);
    position: relative;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}

.context-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(47,98,208,0.2), transparent);
    transition: background .4s ease;
}

.context-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(47,98,208,0.15);
}

.context-card:hover::before {
    background: linear-gradient(90deg,#2f62d0,#6fa4ff);
}

.context-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.context-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.context-card li {
    padding: 0.6rem 0;
    padding-left: 1.4rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.context-card li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #2f62d0;
    font-size: .9rem;
}

.context-card-blue {
    background: linear-gradient(135deg,#2f62d0,#1f4fb5);
    color: #ffffff;
}

.context-card-blue h3 { color: #ffffff; }
.context-card-blue li { color: rgba(255,255,255,0.9); }
.context-card-blue li::before { color: #ffffff; }

@media(max-width: 900px) {
    .context-grid { grid-template-columns: 1fr; }
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, #1a3578, #2f62d0, #0798f8);
    color: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 900;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* .final-cta .btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.final-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}*/

.cta-note {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    max-width: 640px;
    margin: 0 auto;
    background: rgba(255,255,255,0.06);
}

@media (max-width: 600px) {
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-card h2 { font-size: 1.9rem; }
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-main);
    font-weight: 800;
}