/* ═══════════════════════════════════════════════════════
   RBXLabs — Dark Monochrome / Silver
   Primary: #c8c8c8  Accent: #e8e8e8  Dim: #888
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: #0a0a0a; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: 100px;
    animation: pageFadeIn 0.5s ease both;
}

@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

body::before {
    content: '';
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    z-index: 0; pointer-events: none;
}

.grid-highlights { position: absolute; top: 0; left: 0; width: 100%; height: 100vh; z-index: 0; pointer-events: none; }
.grid-cell {
    position: absolute; width: 72px; height: 72px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    opacity: 0; transition: opacity 1s ease-in-out;
}
.grid-cell.active { opacity: 1; }

/* ══ NAVBAR ══ */
.navbar {
    position: fixed; top: 16px; left: 50%;
    transform: translateX(-50%);
    z-index: 1000; width: 92%; max-width: 1200px;
}
.navbar-content {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 22px;
    background: rgba(16,16,16,0.82);
    backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: padding 0.4s cubic-bezier(0.22,1,0.36,1), background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled .navbar-content {
    padding: 9px 22px;
    background: rgba(10,10,10,0.96);
    box-shadow: 0 8px 40px rgba(0,0,0,0.65);
}
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.logo-image { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; }
.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px; font-weight: 700;
    color: #f0f0f0; letter-spacing: -0.03em;
}
.navbar-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 10px;
    color: rgba(255,255,255,0.35);
    text-decoration: none; font-size: 13px; font-weight: 500;
    transition: color 0.25s, background 0.25s; letter-spacing: 0.01em;
}
.nav-link:hover { color: #f0f0f0; background: rgba(255,255,255,0.07); }
.nav-link.active {
    color: #e0e0e0;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
}
.nav-link svg { width: 16px; height: 16px; }

/* ══ CONTAINER ══ */
.container {
    text-align: center; z-index: 2; position: relative;
    padding: 40px 20px; max-width: 1200px; min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; margin: 0 auto;
}

/* ══ BADGE ══ */
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px; font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 32px;
    background: rgba(255,255,255,0.06);
    color: #b0b0b0;
    backdrop-filter: blur(8px);
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s;
}
.badge::before {
    content: ''; width: 5px; height: 5px;
    background: #c8c8c8; border-radius: 50%;
    box-shadow: 0 0 6px #c8c8c8;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.3; transform: scale(0.6); }
}
.badge:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.28);
}

/* ══ HERO ══ */
.main-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 700; line-height: 1.06; letter-spacing: -0.04em;
    color: #f5f5f5; margin: 0 0 20px;
}
.highlight {
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #888888 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.20));
}
.subtitle {
    font-size: 16px; color: rgba(255,255,255,0.38);
    line-height: 1.75; max-width: 460px; margin: 0 auto 40px;
}

/* ══ BUTTONS ══ */
.buttons { display: flex; gap: 14px; justify-content: center; align-items: center; }
.btn {
    padding: 14px 34px; font-size: 14px; font-weight: 600;
    border: none; border-radius: 10px; cursor: pointer;
    letter-spacing: 0.02em; font-family: 'Space Grotesk', sans-serif;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, background 0.25s;
}
.btn-primary {
    background: #e8e8e8;
    color: #0a0a0a;
    box-shadow: 0 4px 18px rgba(255,255,255,0.12), inset 0 1px 0 rgba(255,255,255,0.60);
}
.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,255,255,0.18);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: #c0c0c0;
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.28);
    color: #f0f0f0; transform: translateY(-2px);
}
.btn-secondary:active { transform: translateY(0); }

/* ══ MARQUEE ══ */
.marquee-wrap {
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden; padding: 16px 0;
    background: rgba(8,8,8,0.80);
    backdrop-filter: blur(8px);
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 22s linear infinite; }
.marquee-track span {
    font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 400;
    letter-spacing: 0.20em; color: rgba(255,255,255,0.15);
    text-transform: uppercase; padding: 0 36px;
}
.marquee-track span.dot { color: rgba(255,255,255,0.08); padding: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══ SECTIONS ══ */
.features-section, .integrations-section, .stats-section,
.cta-section, .testimonials-section, .tools-section {
    padding: 120px 40px; max-width: 1400px; margin: 0 auto; position: relative; z-index: 1;
}

.features-title, .tools-title, .testimonials-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px,4vw,46px); font-weight: 700;
    text-align: center; margin-bottom: 14px;
    letter-spacing: -0.03em; color: #f0f0f0;
}
.features-subtitle, .testimonials-subtitle {
    text-align: center; font-size: 15px;
    color: rgba(255,255,255,0.35); line-height: 1.65; margin-bottom: 72px;
}

/* ══ CARDS ══ */
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature-card {
    text-align: center; padding: 40px 24px;
    background: rgba(20,20,20,0.70);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s, border-color 0.4s, background 0.4s;
}
.feature-card:hover {
    border-color: rgba(255,255,255,0.20);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.08);
    background: rgba(28,28,28,0.80);
}
.feature-icon { width: 100px; height: 100px; margin: 0 auto 22px; }
.feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px; font-weight: 600; margin-bottom: 10px; color: #e0e0e0;
}
.feature-description { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.35); }

/* ══ INTEGRATIONS ══ */
.integrations-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.integrations-text { padding-right: 40px; }
.integrations-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: #888; margin-bottom: 16px; text-transform: uppercase; }
.integrations-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px,3.5vw,42px); font-weight: 700; line-height: 1.16; margin-bottom: 16px; letter-spacing: -0.03em; color: #f0f0f0; }
.integrations-description { font-size: 15px; line-height: 1.70; color: rgba(255,255,255,0.38); margin-bottom: 44px; }
.integrations-features { display: flex; flex-direction: column; gap: 22px; }
.integration-feature { display: flex; align-items: center; gap: 16px; }
.feature-icon-small {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: #c0c0c0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10); border-radius: 10px;
}
.integration-feature h4 { font-size: 14px; font-weight: 500; color: #c8c8c8; margin: 0; }
.integrations-carousel {
    position: relative; height: 560px; overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}
.carousel-track { display: flex; gap: 16px; height: 100%; }
.carousel-column { display: flex; flex-direction: column; gap: 16px; transition: transform 0.1s linear; }
.carousel-column:nth-child(1) { transform: translateY(-200px); }
.carousel-column:nth-child(2) { transform: translateY(-50px); }
.carousel-column:nth-child(3) { transform: translateY(-280px); }
.carousel-item {
    width: 115px; height: 115px;
    background-size: cover; background-position: center;
    border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.40);
}

/* ══ STATS ══ */
.stats-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.stats-cards { display: flex; flex-direction: column; gap: 18px; }
.stat-card {
    padding: 32px 36px;
    border: 1px solid rgba(255,255,255,0.08); border-radius: 18px;
    background: rgba(20,20,20,0.70);
    position: relative; overflow: hidden;
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s, border-color 0.4s;
    will-change: transform; transform: translateZ(0);
}
.stat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}
.stat-card:hover {
    border-color: rgba(255,255,255,0.18);
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.55);
}
.stat-card.visible { animation: slideInLeft 0.6s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
.stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 34px; font-weight: 700; margin-bottom: 10px; color: #e8e8e8; letter-spacing: -0.025em; }
.stat-description { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.35); margin: 0; }

.stats-info { padding-left: 40px; }
.stats-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: #888; margin-bottom: 16px; text-transform: uppercase; }
.stats-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px,3.5vw,42px); font-weight: 700; line-height: 1.16; margin-bottom: 16px; letter-spacing: -0.03em; color: #f0f0f0; }
.stats-description { font-size: 14px; line-height: 1.72; color: rgba(255,255,255,0.38); margin-bottom: 44px; }
.stats-features { display: flex; gap: 28px; }
.stats-feature { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; }
.stats-feature-icon {
    width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
    color: #c0c0c0; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; margin-bottom: 12px;
}
.stats-feature-title { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.40); line-height: 1.4; margin: 0; }

/* ══ CTA ══ */
.cta-card {
    padding: 80px 60px;
    border: 1px solid rgba(255,255,255,0.10); border-radius: 24px;
    background: rgba(16,16,16,0.80);
    text-align: center;
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    position: relative; overflow: hidden;
    box-shadow: 0 8px 56px rgba(0,0,0,0.50), inset 0 1px 0 rgba(255,255,255,0.06);
}
.cta-card::before {
    content: '';
    position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
}
.cta-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px,5vw,50px); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.035em; color: #f5f5f5; }
.cta-description { font-size: 15px; line-height: 1.72; color: rgba(255,255,255,0.38); margin-bottom: 52px; }
.cta-features { display: flex; justify-content: center; gap: 48px; margin-bottom: 48px; }
.cta-feature-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta-feature-icon {
    width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
    color: #c0c0c0; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10); border-radius: 14px; margin-bottom: 12px;
    transition: all 0.35s;
}
.cta-feature-item:hover .cta-feature-icon {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.24);
    box-shadow: 0 4px 18px rgba(255,255,255,0.08);
}
.cta-feature-text { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.38); margin: 0; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; }

/* ══ TESTIMONIALS ══ */
.testimonials-container { overflow: hidden; margin-bottom: 32px; width: 100%; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.testimonial-card {
    width: calc((100% - 24px) / 2); min-width: calc((100% - 24px) / 2);
    padding: 36px;
    background: rgba(20,20,20,0.70);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 20px;
    flex-shrink: 0; box-sizing: border-box;
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.40);
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.testimonial-card:hover {
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 12px 40px rgba(0,0,0,0.55);
    transform: translateY(-3px);
}
.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.15); }
.testimonial-info { flex: 1; }
.testimonial-name { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; color: #e0e0e0; margin: 0 0 3px; }
.testimonial-role { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.35); letter-spacing: 0.10em; text-transform: uppercase; margin: 0; }
.testimonial-text { font-size: 14px; line-height: 1.78; color: rgba(255,255,255,0.45); margin: 0; }
.testimonials-nav { display: flex; gap: 12px; justify-content: center; }
.testimonial-nav-btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: #c0c0c0; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.testimonial-nav-btn:hover {
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.10);
    box-shadow: 0 4px 14px rgba(255,255,255,0.06);
    transform: scale(1.06);
}

/* ══ TOOLS ══ */
.tools-title { margin-bottom: 64px; }
.tools-carousel-container { overflow: hidden; margin-bottom: 32px; }
.tools-carousel { display: flex; gap: 20px; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.tool-card-new {
    min-width: calc((100% - 40px) / 3); width: calc((100% - 40px) / 3);
    background: rgba(20,20,20,0.70);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 30px;
    flex-shrink: 0; position: relative; display: flex; flex-direction: column;
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.40);
    transition: border-color 0.4s, transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s;
    will-change: transform; transform: translateZ(0);
}
.tool-card-new:hover {
    border-color: rgba(255,255,255,0.20);
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.55);
    background: rgba(28,28,28,0.80);
}
.tool-card-new.featured {
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 0 48px rgba(255,255,255,0.05);
}
.tool-card-new.featured::before {
    content: '';
    position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
}
.tool-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.07); color: #b0b0b0;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 600; margin-bottom: 20px; width: fit-content;
    font-family: 'Space Grotesk', sans-serif;
}
.tool-badge svg { width: 13px; height: 13px; }
.tool-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: #efefef; margin: 0 0 10px; letter-spacing: -0.025em; }
.tool-card-desc { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.38); margin: 0 0 24px; }
.tool-features { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.tool-features li {
    font-size: 13px; color: rgba(255,255,255,0.45);
    padding: 8px 0 8px 28px; position: relative; font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tool-features li:last-child { border-bottom: none; }
.tool-features li::before {
    content: ''; position: absolute; left: 0;
    width: 16px; height: 16px;
    background-image: url('alt.svg');
    background-size: contain; background-repeat: no-repeat;
    background-position: center; top: 10px;
}
.tool-card-btn {
    width: 100%; padding: 14px;
    background: #e8e8e8;
    color: #0a0a0a; border: none; border-radius: 11px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 9px;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 16px rgba(255,255,255,0.10);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, background 0.25s;
}
.tool-card-btn:hover {
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(255,255,255,0.16);
    transform: translateY(-1px);
}
.tool-card-btn img { width: 15px; height: 15px; }
.tools-carousel-nav { display: flex; gap: 12px; justify-content: center; }
.tools-nav-btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: #c0c0c0; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.tools-nav-btn:hover {
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.10);
    box-shadow: 0 4px 14px rgba(255,255,255,0.06);
    transform: scale(1.06);
}

/* ══ NEWSLETTER ══ */
.newsletter-section {
    padding: 100px 40px; position: relative; z-index: 1;
    background: rgba(8,8,8,0.90);
    border-top: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
}
.newsletter-section .newsletter-content { max-width: 1400px; margin: 0 auto; }
.newsletter-content { text-align: center; }
.newsletter-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px,4vw,44px); font-weight: 700; margin-bottom: 14px; letter-spacing: -0.035em; color: #f0f0f0; }
.newsletter-description { font-size: 15px; line-height: 1.68; color: rgba(255,255,255,0.38); margin-bottom: 40px; }
.newsletter-form { display: flex; justify-content: center; max-width: 540px; margin: 0 auto; }
.newsletter-input {
    flex: 1; padding: 15px 20px;
    background: rgba(22,22,22,0.80);
    border: 1px solid rgba(255,255,255,0.12); border-right: none;
    border-radius: 10px 0 0 10px; color: #e0e0e0; font-size: 14px; outline: none;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.22); }
.newsletter-input:focus {
    border-color: rgba(255,255,255,0.28);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}
.newsletter-btn {
    padding: 15px 34px;
    background: #e8e8e8;
    color: #0a0a0a; border: none; border-radius: 0 10px 10px 0;
    font-size: 14px; font-weight: 600; cursor: pointer;
    white-space: nowrap; font-family: 'Space Grotesk', sans-serif;
    transition: background 0.25s;
}
.newsletter-btn:hover { background: #ffffff; }
.newsletter-success {
    display: none; margin-top: 18px; padding: 13px 26px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 10px;
    color: #c8c8c8; font-size: 14px; font-weight: 500;
    max-width: 400px; margin-left: auto; margin-right: auto;
}
.newsletter-success.show { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ══ NOTIFICATION ══ */
.custom-notification {
    position: fixed; top: -100px; left: 50%;
    transform: translateX(-50%); z-index: 10000; min-width: 320px;
    transition: top 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.custom-notification.show { top: 36px; }
.notification-content {
    display: flex; align-items: center; gap: 12px; padding: 14px 22px;
    background: rgba(16,16,16,0.96);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 14px;
    box-shadow: 0 8px 36px rgba(0,0,0,0.60);
    backdrop-filter: blur(18px);
}
.notification-icon { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.custom-notification.success .notification-content { border-color: rgba(255,255,255,0.22); }
.custom-notification.success .notification-icon { color: #c8c8c8; }
.custom-notification.success #notificationText { color: #e0e0e0; }
.custom-notification.error .notification-content { border-color: rgba(220,80,80,0.30); background: rgba(40,10,10,0.96); }
.custom-notification.error .notification-icon { color: #f08080; }
.custom-notification.error #notificationText { color: #ffaaaa; }
#notificationText { font-size: 14px; font-weight: 500; letter-spacing: 0.2px; }

/* ══ SCROLLBAR ══ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #444; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #888; }

/* ══ TOOL PAGE ══ */
.tool-page-container {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 40px 20px; position: relative;
}
.back-button {
    position: fixed; top: 24px; left: 24px;
    display: flex; align-items: center; gap: 8px;
    background: rgba(18,18,18,0.88);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 100px;
    color: rgba(255,255,255,0.45); font-size: 13px; font-weight: 500;
    padding: 10px 18px; cursor: pointer; z-index: 10;
    font-family: 'Space Grotesk', sans-serif;
    backdrop-filter: blur(14px); transition: all 0.25s;
}
.back-button:hover { color: #f0f0f0; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); transform: translateX(-2px); }
.back-button svg { width: 16px; height: 16px; }
.tool-content-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1200px; width: 100%; margin-top: 20px; }
.tool-form-card {
    background: rgba(18,18,18,0.82);
    border: 1px solid rgba(255,255,255,0.10); border-radius: 22px; padding: 44px;
    display: flex; flex-direction: column;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(0,0,0,0.50), inset 0 1px 0 rgba(255,255,255,0.05);
}
.tool-page-title { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; color: #f5f5f5; margin: 0 0 14px; letter-spacing: -0.025em; }
.tool-page-description { font-size: 14px; line-height: 1.68; color: rgba(255,255,255,0.38); margin: 0 0 32px; }
.tool-form { display: flex; flex-direction: column; gap: 16px; }
.tool-input {
    padding: 15px 20px;
    background: rgba(10,10,10,0.80);
    border: 1px solid rgba(255,255,255,0.10); border-radius: 11px;
    color: #e0e0e0; font-size: 14px; font-family: 'Inter', sans-serif;
    outline: none; resize: vertical;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.tool-textarea { min-height: 110px; line-height: 1.55; }
.tool-input::placeholder { color: rgba(255,255,255,0.20); }
.tool-input:focus {
    border-color: rgba(255,255,255,0.28);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}
.tool-submit-btn {
    padding: 15px 22px;
    background: #e8e8e8;
    color: #0a0a0a; border: none; border-radius: 11px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    box-shadow: 0 4px 16px rgba(255,255,255,0.10);
    font-family: 'Space Grotesk', sans-serif;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, background 0.25s;
}
.tool-submit-btn:hover:not(:disabled) { background: #ffffff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.16); }
.tool-submit-btn:active { transform: translateY(0); }
.tool-submit-btn:disabled { opacity: 0.40; cursor: not-allowed; }
.tool-video-card {
    background: rgba(18,18,18,0.82);
    border: 1px solid rgba(255,255,255,0.10); border-radius: 22px; padding: 44px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; position: relative; min-height: 360px;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 32px rgba(0,0,0,0.50), inset 0 1px 0 rgba(255,255,255,0.05);
}
.video-title { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; color: #f5f5f5; margin: 0 0 8px; }
.video-subtitle { font-size: 14px; color: rgba(255,255,255,0.35); margin: 0 0 32px; }
.video-play-btn {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.22);
    color: #c8c8c8; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 32px rgba(255,255,255,0.06);
    transition: all 0.25s;
}
.video-play-btn:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.45);
    transform: scale(1.08);
    box-shadow: 0 0 44px rgba(255,255,255,0.12);
    color: #ffffff;
}
.video-play-btn svg { width: 28px; height: 28px; margin-left: 4px; }

/* ══ REVEAL ══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ══ GPU ══ */
.feature-card, .tool-card-new, .stat-card, .btn, .tool-card-btn, .newsletter-btn, .tool-submit-btn { will-change: transform; transform: translateZ(0); }
.feature-card:not(:hover), .tool-card-new:not(:hover), .stat-card:not(:hover) { will-change: auto; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1200px) {
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .integrations-content { grid-template-columns: 1fr; gap: 56px; }
    .integrations-text { padding-right: 0; }
    .stats-content { grid-template-columns: 1fr; gap: 56px; }
    .stats-info { padding-left: 0; }
    .tool-card-new { min-width: calc((100% - 20px) / 2); width: calc((100% - 20px) / 2); }
}
@media (max-width: 768px) {
    .main-title { font-size: 38px; }
    .subtitle { font-size: 14px; }
    .buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; max-width: 300px; }
    .features-section { padding: 72px 20px; }
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .tool-card-new { min-width: 100%; width: 100%; }
    .testimonial-card { min-width: 100%; width: 100%; }
    .tool-content-wrapper { grid-template-columns: 1fr; }
    .back-button { top: 16px; left: 16px; }
    .tool-form-card, .tool-video-card { padding: 28px; }
    .tool-page-title { font-size: 26px; }
}
@media (max-width: 480px) {
    .main-title { font-size: 28px; }
    .badge { font-size: 10px; padding: 6px 14px; }
    .cta-title { font-size: 30px; }
    .cta-features { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 1024px) {
    .tool-content-wrapper { grid-template-columns: 1fr; gap: 24px; }
}