/* ===== MARQUEE PARTNERS ===== */
.partners {
    padding: 50px 0 70px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.partners-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 32px;
    font-weight: 500;
}

.marquee-wrap {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    overflow: hidden;
}

.marquee-inner {
    display: inline-flex;
    gap: 60px;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-wrap:hover .marquee-inner {
    animation-play-state: paused;
}

.marquee-item {
    font-size: 17px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.12);
    letter-spacing: 2px;
    transition: color 0.3s;
    flex-shrink: 0;
}

.marquee-item:hover { color: rgba(0, 0, 0, 0.3); }

.marquee-dot {
    color: rgba(0, 0, 0, 0.08);
    font-size: 10px;
    flex-shrink: 0;
    align-self: center;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== BENTO FEATURES GRID ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 16px;
}

.bento-card {
    padding: 32px;
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Gradient border glow */
.bento-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-lg) + 1px);
    background: linear-gradient(135deg, rgba(79, 125, 255, 0.4), rgba(168, 85, 247, 0.3), rgba(0, 180, 216, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    z-index: -1;
}

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

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(79, 125, 255, 0.08);
}

.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.bento-icon.blue { background: rgba(79, 125, 255, 0.08); }
.bento-icon.cyan { background: rgba(0, 180, 216, 0.08); }
.bento-icon.purple { background: rgba(168, 85, 247, 0.08); }
.bento-icon.pink { background: rgba(244, 114, 182, 0.08); }
.bento-icon.green { background: rgba(34, 197, 94, 0.08); }
.bento-icon.orange { background: rgba(251, 146, 60, 0.08); }

.bento-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.bento-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Mini chat demo inside bento */
.bento-chat-demo {
    margin-top: 20px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bento-chat-demo .chat-msg {
    font-size: 12px;
    padding: 8px 12px;
}

/* Integration icons inside bento */
.bento-integrations {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.bento-integration-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s var(--ease-out-expo);
}

.bento-integration-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ===== AGENTS SECTION ===== */
.agents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.agent-card {
    padding: 36px;
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Gradient border glow */
.agent-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-lg) + 1px);
    background: linear-gradient(135deg, rgba(79, 125, 255, 0.4), rgba(168, 85, 247, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.agent-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    z-index: 0;
}

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

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

.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.agent-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.agent-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.agent-avatar.blue { background: linear-gradient(135deg, rgba(79,125,255,0.12), rgba(0,180,216,0.08)); }
.agent-avatar.purple { background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(244,114,182,0.08)); }
.agent-avatar.green { background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(0,180,216,0.08)); }
.agent-avatar.orange { background: linear-gradient(135deg, rgba(251,146,60,0.12), rgba(244,114,182,0.08)); }

.agent-card h3 {
    font-size: 19px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.agent-card h3 + p {
    font-size: 13px;
    color: var(--text-muted);
}

.agent-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.agent-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.agent-tag {
    padding: 5px 12px;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-secondary);
}

/* ===== COMPARISON — EDITORIAL ===== */
.comparison {
    background: var(--bg-primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1.1fr 60px 1fr;
    gap: 0;
    align-items: stretch;
}

.comparison-col {
    padding: 44px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-col.old {
    background: rgba(0, 0, 0, 0.015);
}

.comparison-col.new {
    background: var(--bg-primary);
    border-color: rgba(79, 125, 255, 0.15);
    box-shadow: 0 8px 40px rgba(79, 125, 255, 0.06);
}

.comparison-col-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.comparison-col.old .comparison-col-label {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
}

.comparison-col.new .comparison-col-label {
    background: rgba(79, 125, 255, 0.08);
    color: var(--accent-blue);
}

.comparison-col h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.comparison-col.old h3 {
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.3);
}

.comparison-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-items li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.comparison-items li .icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-col.old .comparison-items li .icon { color: rgba(239, 68, 68, 0.4); }
.comparison-col.new .comparison-items li .icon { color: var(--accent-green); }

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(79, 125, 255, 0.3);
}

/* ===== RESULTS — HORIZONTAL SCROLL ===== */
.results-scroll-wrap {
    mask-image: linear-gradient(to right, black 0%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 92%, transparent 100%);
}

.results-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.results-scroll::-webkit-scrollbar { display: none; }

.result-card {
    min-width: 380px;
    max-width: 400px;
    padding: 36px;
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: rgba(79, 125, 255, 0.12);
}

.result-card-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.result-card-industry {
    display: inline-flex;
    padding: 4px 12px;
    background: rgba(79, 125, 255, 0.06);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.result-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.35;
    font-family: 'Inter', sans-serif;
}

.result-card > p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
}

.result-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.result-metric {
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    text-align: center;
}

.result-metric .big {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.result-metric .small {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.result-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 12px;
    color: #16a34a;
    font-weight: 600;
}

.result-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
}

/* ===== HOW IT WORKS — with connecting line ===== */
.steps-wrap {
    position: relative;
}

.steps-line {
    position: absolute;
    top: 48px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 1px;
    z-index: 0;
}

.steps-line-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-main);
    border-radius: 1px;
    transition: width 1.5s var(--ease-out-expo);
}

.steps-line.active .steps-line-fill {
    width: 100%;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.step-card {
    padding: 32px 24px;
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-blue);
    margin: 0 auto 20px;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    font-family: 'Inter', sans-serif;
}

.step-card:hover .step-number {
    background: var(--gradient-main);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(79, 125, 255, 0.3);
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.step-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    padding: 40px;
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    background: rgba(79, 125, 255, 0.02);
    border-color: rgba(79, 125, 255, 0.15);
    box-shadow: 0 8px 40px rgba(79, 125, 255, 0.06);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    background: var(--gradient-main);
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(79, 125, 255, 0.3);
}

.pricing-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.pricing-card .price {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.pricing-card .price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0;
}

.pricing-card .price-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 13px;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.pricing-btn.primary {
    background: var(--gradient-main);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(79, 125, 255, 0.25);
}

.pricing-btn.primary:hover {
    box-shadow: 0 8px 36px rgba(79, 125, 255, 0.45);
    transform: translateY(-2px);
}

.pricing-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-btn.secondary:hover {
    background: var(--bg-secondary);
    border-color: rgba(0, 0, 0, 0.15);
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.4s ease;
}

.testimonial-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 2px;
}

.testimonial-card {
    padding: 36px;
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 16px;
}

.testimonial-metric {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: rgba(79, 125, 255, 0.06);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 16px;
    margin-left: 8px;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* Carousel dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent-blue);
    width: 24px;
    border-radius: 4px;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item:hover { border-color: rgba(0, 0, 0, 0.1); }

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.faq-question .icon {
    font-size: 20px;
    color: var(--text-muted);
    transition: transform 0.4s var(--ease-out-expo);
}

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ===== CTA BANNER with mesh ===== */
.cta-section { padding: 120px 0; }

.cta-box {
    position: relative;
    padding: 80px 64px;
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(79, 125, 255, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 80%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    position: relative;
    color: #fff;
}

.cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    line-height: 1.7;
}

.cta-box .btn-primary {
    position: relative;
    box-shadow: 0 4px 24px rgba(79, 125, 255, 0.4);
}

.cta-box .btn-primary:hover {
    box-shadow: 0 8px 40px rgba(79, 125, 255, 0.6);
}

/* ===== DARK FOOTER ===== */
.footer {
    padding: 72px 0 36px;
    background: var(--bg-dark);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(79, 125, 255, 0.3), rgba(168, 85, 247, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer .logo-text {
    color: #fff;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover { color: rgba(255, 255, 255, 0.8); }

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s var(--ease-out-expo);
}

.footer-socials a:hover {
    background: rgba(79, 125, 255, 0.15);
    border-color: rgba(79, 125, 255, 0.3);
    color: #fff;
    box-shadow: 0 4px 16px rgba(79, 125, 255, 0.2);
}

/* ===== SCROLL REVEAL — STAGGERED ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }
