/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #050505;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise texture overlay for depth */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Global glow effect layer */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

/* Cursor glow effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.04) 30%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    filter: blur(40px);
}

@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.italic {
    font-style: italic;
}

.script-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: rgba(8, 8, 12, 0.7);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    animation: fadeInDown 0.8s ease-out;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: #fff;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(10deg);
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-link {
    color: #888;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a9eff, #a78bfa);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::before {
    width: 60%;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nav-social-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-template {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-template::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-template:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-template:hover::before {
    left: 100%;
}

.sparkle-icon {
    width: 16px;
    height: 16px;
    animation: wiggle 2s ease-in-out infinite;
}

.calendar-icon {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 80% 30%, rgba(139, 92, 246, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse 80% 60% at 20% 70%, rgba(59, 130, 246, 0.04) 0%, transparent 40%),
        linear-gradient(to bottom, #050508 0%, #08080c 50%, #050508 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-3d-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 60%;
    perspective: 1000px;
}

.perspective-grid {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotateX(60deg);
    width: 200%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    transform-origin: center bottom;
}

.hero-background::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 70%;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(20, 30, 50, 0.5) 0%, transparent 70%);
    pointer-events: none;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-icon {
    margin-bottom: 32px;
    animation: fadeInDown 1s ease-out 0.2s backwards;
}

.hero-icon-box {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(24, 24, 32, 0.9) 0%, rgba(12, 12, 18, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow:
        0 0 80px rgba(59, 130, 246, 0.15),
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        inset 0 2px 0 rgba(255, 255, 255, 0.06);
    animation: float 5s ease-in-out infinite;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-icon-box svg {
    width: 44px;
    height: 44px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 28px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #3b9eff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(59, 158, 255, 0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== ANIMATIONS ===== */

/* Keyframe Definitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(74, 158, 255, 0.3);
        filter: drop-shadow(0 0 20px rgba(74, 158, 255, 0.3));
    }
    50% {
        box-shadow: 0 0 40px rgba(74, 158, 255, 0.5);
        filter: drop-shadow(0 0 40px rgba(74, 158, 255, 0.5));
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

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

@keyframes borderGlow {
    0%, 100% { border-color: rgba(255, 255, 255, 0.1); }
    50% { border-color: rgba(74, 158, 255, 0.3); }
}

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

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ===== FRAMER-STYLE SCROLL ANIMATIONS ===== */

/* Base state for animated elements */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-animate="fade-up"] {
    transform: translateY(60px);
}

[data-animate="fade-down"] {
    transform: translateY(-60px);
}

[data-animate="fade-left"] {
    transform: translateX(60px);
}

[data-animate="fade-right"] {
    transform: translateX(-60px);
}

[data-animate="fade-scale"] {
    transform: scale(0.9);
}

/* Visible state */
[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Cards need special handling for hover */
.benefit-card[data-animate].is-visible:hover,
.feature-card[data-animate].is-visible:hover,
.service-card[data-animate].is-visible:hover,
.review-card[data-animate].is-visible:hover {
    transform: translateY(-8px) scale(1.01);
}

.pricing-card[data-animate].is-visible:hover {
    transform: translateY(-10px) scale(1.01);
}

.pricing-card.popular[data-animate].is-visible {
    transform: scale(1.03);
}

.pricing-card.popular[data-animate].is-visible:hover {
    transform: scale(1.03) translateY(-10px);
}

.integration-icon[data-animate].is-visible:hover {
    transform: translateY(-8px) scale(1.08);
}

/* Navbar scrolled state */
.navbar.scrolled {
    background: rgba(8, 8, 12, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4),
                0 1px 0 rgba(255, 255, 255, 0.05) inset !important;
    backdrop-filter: blur(50px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(50px) saturate(200%) !important;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -3px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: #888;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(145deg, rgba(20, 20, 28, 0.9) 0%, rgba(10, 10, 16, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: fadeInUp 1s ease-out 1s backwards;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Shine sweep on button */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

/* Bottom glow effect */
.btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent);
    box-shadow: 0 0 20px 2px rgba(59, 130, 246, 0.3);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(59, 130, 246, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover::after {
    width: 80%;
    opacity: 1;
    box-shadow: 0 0 30px 4px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
    transform: translate(4px, -4px);
}

/* Hero Social Links */
.hero-social {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 48px;
    animation: fadeInUp 1s ease-out 1.2s backwards;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 8px;
}

/* Data Analysis Section */
.data-section {
    padding: 120px 24px;
    text-align: center;
    background: linear-gradient(to bottom, #0a0a0a 0%, #0d0d0d 100%);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.section-badge.purple {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.star-icon,
.sparkle-small {
    width: 16px;
    height: 16px;
}

.globe-icon {
    width: 16px;
    height: 16px;
}

.data-text {
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.5;
    color: #888;
    max-width: 900px;
    margin: 0 auto 48px;
}

.data-text .regular {
    color: #888;
}

.data-text .italic {
    color: #fff;
    font-style: italic;
}

.data-text .script-text {
    color: #fff;
    background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(145deg, rgba(18, 18, 24, 0.6) 0%, rgba(10, 10, 14, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 16px 32px 16px 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: fit-content;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.founder-info:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.founder-avatar-wrapper {
    position: relative;
}

.founder-avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.founder-avatar-placeholder svg {
    width: 28px;
    height: 28px;
}

.founder-verified {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #1d9bf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0a0a;
}

.founder-verified svg {
    width: 12px;
    height: 12px;
    color: #fff;
}

.founder-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.founder-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.founder-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.founder-social {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.founder-social-link {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.founder-social-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.founder-social-link svg {
    width: 14px;
    height: 14px;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 24px;
    text-align: center;
}

.section-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 72px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: linear-gradient(135deg, rgba(18, 18, 22, 0.8) 0%, rgba(12, 12, 16, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Shine effect overlay */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transition: left 0.7s ease;
}

/* Top glow line */
.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(59, 130, 246, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.benefit-card:hover::before {
    left: 100%;
}

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

.benefit-visual {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.benefit-visual.gauge .gauge-svg {
    width: 160px;
    height: 100px;
}

.benefit-visual.bars {
    gap: 12px;
    align-items: flex-end;
    padding-bottom: 20px;
}

.benefit-visual.bars .bar {
    width: 36px;
    background: linear-gradient(to top, #333 0%, #444 100%);
    border-radius: 8px 8px 4px 4px;
}

.benefit-visual.network .network-svg {
    width: 180px;
    height: 140px;
}

.benefit-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 120px 24px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: linear-gradient(145deg, rgba(18, 18, 24, 0.7) 0%, rgba(10, 10, 14, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 36px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Cursor follow glow */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(59, 130, 246, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Shine sweep effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.02),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.005);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(59, 130, 246, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.service-card:hover::after {
    left: 100%;
}

.service-visual {
    height: 280px;
    margin-bottom: 24px;
    position: relative;
}

.service-visual.tasks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 15px;
    color: #888;
    max-width: 280px;
}

.task-item.active {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.task-icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.task-item span {
    flex: 1;
}

.refresh-icon,
.check-icon {
    width: 18px;
    height: 18px;
    opacity: 0.5;
}

.check-icon {
    opacity: 0.8;
    color: #4ade80;
}

.service-visual.workflows {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.workflow-icons {
    position: absolute;
    inset: 0;
}

.workflow-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #888;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.workflow-icon:hover {
    transform: scale(1.1);
    border-color: rgba(74, 158, 255, 0.4);
    color: #fff;
}

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

.workflow-icon.mail { top: 20%; left: 10%; animation-delay: 0s; }
.workflow-icon.globe { top: 10%; left: 35%; animation-delay: 0.3s; }
.workflow-icon.blocks { top: 5%; right: 25%; animation-delay: 0.6s; }
.workflow-icon.user { bottom: 30%; left: 5%; animation-delay: 0.9s; }
.workflow-icon.layers { bottom: 15%; left: 25%; animation-delay: 1.2s; }
.workflow-icon.x-icon { top: 15%; right: 10%; animation-delay: 0.4s; }
.workflow-icon.notion { bottom: 20%; right: 10%; animation-delay: 0.7s; }

.workflow-center {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.sparkle-center {
    width: 40px;
    height: 40px;
    color: #fff;
    animation: rotate 10s linear infinite;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 64px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(to top, rgba(5, 5, 8, 1) 0%, transparent 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Features Section */
.features-section {
    padding: 120px 24px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(18, 18, 24, 0.7) 0%, rgba(10, 10, 14, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* Shine sweep */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.02),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.8s ease;
}

/* Top highlight line */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.35),
        0 0 80px rgba(139, 92, 246, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-card:hover::before {
    left: 100%;
}

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

.feature-visual {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.5) 0%, rgba(20, 20, 20, 0.5) 100%);
    border-radius: 16px;
}

.feature-icon-pair {
    display: flex;
    gap: 8px;
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    transform: translateY(-4px);
    border-color: rgba(74, 158, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .feature-icon-box:first-child {
    transition-delay: 0s;
}

.feature-card:hover .feature-icon-box:last-child {
    transition-delay: 0.1s;
}

.feature-icon-box svg {
    width: 28px;
    height: 28px;
    color: #888;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon-box svg {
    color: #fff;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
}

/* Integrations Section */
.integrations-section {
    padding: 120px 24px;
    text-align: center;
}

.integrations-container {
    background: linear-gradient(145deg, rgba(18, 18, 24, 0.6) 0%, rgba(10, 10, 14, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: 56px;
    margin-bottom: 48px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.integrations-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.integration-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(28, 28, 36, 0.8) 0%, rgba(18, 18, 24, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.integration-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.integration-icon:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-8px) scale(1.08);
    color: #fff;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.integration-icon:hover::before {
    opacity: 1;
}

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

.integration-icon.faded {
    opacity: 0.4;
}

.integrations-quote {
    font-size: 18px;
    color: #888;
    font-style: italic;
}

/* Trusted Companies Section */
.trusted-section {
    padding: 120px 24px;
    text-align: center;
    overflow: hidden;
}

.building-icon {
    width: 16px;
    height: 16px;
}

.logos-container {
    background: linear-gradient(145deg, rgba(18, 18, 24, 0.5) 0%, rgba(10, 10, 14, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 48px 0;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Fade edges */
.logos-container::before,
.logos-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.logos-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(10, 10, 14, 1) 0%, transparent 100%);
}

.logos-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(10, 10, 14, 1) 0%, transparent 100%);
}

.logos-track {
    display: flex;
    gap: 64px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

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

.logos-track:hover {
    animation-play-state: paused;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 120px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.company-logo:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.company-logo svg {
    height: 100%;
    width: auto;
    max-width: 120px;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 24px;
    text-align: center;
}

.pricing-toggle {
    display: inline-flex;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px;
    margin-bottom: 64px;
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: #888;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: rgba(50, 50, 50, 0.8);
    color: #fff;
}

.save-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(18, 18, 24, 0.7) 0%, rgba(10, 10, 14, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

/* Shine sweep */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.02),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    pointer-events: none;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px) scale(1.01);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(59, 130, 246, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card.popular {
    border-color: rgba(59, 130, 246, 0.2);
    transform: scale(1.03);
    background: linear-gradient(145deg, rgba(24, 24, 36, 0.8) 0%, rgba(14, 14, 22, 0.8) 100%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(59, 130, 246, 0.08);
}

/* Glow border for popular */
.pricing-card.popular::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5), transparent);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.45),
        0 0 100px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.popular-badge svg {
    width: 16px;
    height: 16px;
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #888;
}

.plan-price {
    margin-bottom: 24px;
}

.plan-price .price {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -2px;
}

.plan-price .price.custom {
    font-size: 48px;
}

.plan-price .period {
    font-size: 16px;
    color: #888;
}

.btn-plan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.6s ease;
}

.btn-plan:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-plan:hover::before {
    left: 100%;
}

.btn-plan.primary {
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
    color: #000;
    border-color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.btn-plan.primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
    box-shadow: 0 0 15px 2px rgba(59, 130, 246, 0.3);
}

.btn-plan.primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    transform: translateY(-3px);
    box-shadow:
        0 15px 40px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(59, 130, 246, 0.1);
}

.btn-plan .arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-plan:hover .arrow-icon {
    transform: translate(3px, -3px);
}

.plan-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 32px 0;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #888;
}

.plan-features li svg {
    width: 18px;
    height: 18px;
    color: #888;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    padding: 120px 24px;
    text-align: center;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    text-align: left;
    margin-top: 64px;
}

.faq-contact {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6) 0%, rgba(15, 15, 15, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    height: fit-content;
}

.faq-contact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin: 0 auto 24px;
}

.faq-contact-icon svg {
    width: 28px;
    height: 28px;
    color: #888;
}

.faq-contact h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-contact p {
    font-size: 15px;
    color: #888;
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-question {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-question:hover {
    background: rgba(50, 50, 50, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-question svg {
    width: 18px;
    height: 18px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(145deg, rgba(18, 18, 24, 0.6) 0%, rgba(10, 10, 14, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.faq-question .chevron {
    width: 20px;
    height: 20px;
    color: #888;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .chevron {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: #888;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 968px) {
    .features-grid,
    .reviews-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-content {
        grid-template-columns: 1fr;
    }

    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid,
    .reviews-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
