@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --palix-black: #000000;
    --palix-red: #FF0000;
    --palix-darkred: #CC0000;
    --palix-white: #FFFFFF;
    --palix-gray-900: #111111;
    --palix-gray-800: #1a1a1a;
    --palix-gray-700: #2a2a2a;
    --palix-gray-600: #4a4a4a;
    --palix-gray-500: #6a6a6a;
    --palix-gray-400: #9a9a9a;
    --palix-gray-300: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--palix-red);
    color: white;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--palix-black);
    color: var(--palix-white);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.font-display {
    font-family: 'Bebas Neue', Impact, sans-serif;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--palix-red);
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary:hover {
    background: var(--palix-darkred);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

.card-glass {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--palix-red), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-red {
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3);
}

.text-palix-red { color: var(--palix-red); }
.text-palix-gray-300 { color: var(--palix-gray-300); }
.text-palix-gray-400 { color: var(--palix-gray-400); }
.text-palix-gray-500 { color: var(--palix-gray-500); }
.text-palix-gray-600 { color: var(--palix-gray-600); }
.bg-palix-gray-800 { background: var(--palix-gray-800); }
.bg-palix-gray-900 { background: var(--palix-gray-900); }

/* Navigation */
.nav-main {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-logo span { color: var(--palix-red); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover { color: var(--palix-red); }

.nav-cta {
    background: var(--palix-red);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--palix-darkred) !important;
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active { display: block; }

.mobile-menu a {
    display: block;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:hover { color: var(--palix-red); }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 10vw, 96px);
    margin-bottom: 8px;
    letter-spacing: 4px;
    animation: fadeInUp 0.8s ease;
}

.hero-logo span { color: var(--palix-red); }

.hero-subtitle {
    font-size: 20px;
    color: var(--palix-gray-400);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--palix-gray-300);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    color: var(--palix-gray-400);
    animation: fadeInUp 0.8s ease 1s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--palix-red);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator div {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: var(--palix-gray-400);
}

.section-alt {
    background: rgba(17, 17, 17, 0.5);
}

/* Data Flow */
.data-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.flow-step {
    text-align: center;
    position: relative;
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: var(--palix-gray-800);
    border: 2px solid var(--palix-gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s;
}

.flow-step:hover .flow-icon {
    border-color: var(--palix-red);
}

.flow-icon svg {
    width: 40px;
    height: 40px;
}

.flow-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.flow-step p {
    font-size: 14px;
    color: var(--palix-gray-400);
}

.flow-arrow {
    position: absolute;
    top: 40px;
    right: -16px;
    color: var(--palix-gray-600);
    display: none;
}

.terminal-display {
    background: var(--palix-gray-900);
    border-radius: 12px;
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
}

.terminal-header {
    color: var(--palix-gray-400);
    margin-bottom: 12px;
}

.terminal-content {
    color: #4ade80;
}

.terminal-content div {
    animation: typewriter 0.5s ease forwards;
    opacity: 0;
}

.terminal-content div:nth-child(1) { animation-delay: 0.1s; }
.terminal-content div:nth-child(2) { animation-delay: 0.2s; }
.terminal-content div:nth-child(3) { animation-delay: 0.3s; }
.terminal-content div:nth-child(4) { animation-delay: 0.4s; }
.terminal-content div:nth-child(5) { animation-delay: 0.5s; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    background: rgba(17, 17, 17, 0.5);
    border-radius: 12px;
}

.stat-card .value {
    font-size: 28px;
    font-weight: 700;
    color: var(--palix-red);
}

.stat-card .label {
    font-size: 14px;
    color: var(--palix-gray-400);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--palix-red);
    margin-bottom: 16px;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--palix-gray-400);
}

/* Live Demo */
.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.demo-card {
    padding: 32px;
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.demo-header h3 {
    font-size: 24px;
    font-weight: 700;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.connection-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.phone-display {
    background: var(--palix-gray-900);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.phone-icon {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.phone-icon svg {
    width: 32px;
    height: 32px;
    color: var(--palix-red);
}

.phone-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 700;
}

.phone-note {
    font-size: 14px;
    color: var(--palix-gray-400);
}

.incoming-call {
    background: var(--palix-gray-900);
    border: 2px solid var(--palix-red);
    border-radius: 12px;
    padding: 24px;
    animation: pulse-border 2s infinite;
}

.incoming-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--palix-red);
    margin-bottom: 16px;
}

.call-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.call-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-info-row svg {
    width: 20px;
    height: 20px;
    color: var(--palix-gray-400);
}

.customer-found {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 24px;
}

.customer-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #4ade80;
    font-weight: 600;
}

.customer-header svg {
    width: 20px;
    height: 20px;
}

.customer-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.customer-detail label {
    font-size: 12px;
    color: var(--palix-gray-400);
}

.customer-detail p {
    font-weight: 600;
}

.customer-notes {
    color: #facc15;
}

.favorite-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.favorite-item {
    background: var(--palix-gray-800);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
}

/* Testimonials */
.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars span {
    color: #facc15;
    font-size: 24px;
}

.testimonial-text {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: 700;
    font-size: 18px;
}

.testimonial-location {
    color: var(--palix-gray-400);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    background: var(--palix-gray-600);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    width: 32px;
    background: var(--palix-red);
    border-radius: 4px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px;
    text-align: center;
}

.cta-card h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 20px;
    color: var(--palix-gray-300);
    margin-bottom: 32px;
}

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

/* Pricing */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    color: var(--palix-gray-500);
    transition: color 0.3s;
}

.toggle-label.active {
    color: white;
}

.toggle-switch {
    width: 64px;
    height: 32px;
    background: var(--palix-gray-700);
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    border: none;
}

.toggle-knob {
    width: 24px;
    height: 24px;
    background: var(--palix-red);
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: left 0.3s;
}

.toggle-switch.yearly .toggle-knob {
    left: 36px;
}

.savings-badge {
    background: rgba(255, 0, 0, 0.2);
    color: var(--palix-red);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 32px;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--palix-red);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--palix-red);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-description {
    font-size: 14px;
    color: var(--palix-gray-400);
}

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

.price-amount {
    font-size: 48px;
    font-weight: 700;
}

.price-period {
    color: var(--palix-gray-400);
}

.price-annual {
    font-size: 14px;
    color: var(--palix-gray-500);
    margin-top: 4px;
}

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

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.plan-features .check {
    color: #4ade80;
}

.plan-features .x {
    color: var(--palix-gray-600);
}

.plan-features .disabled {
    color: var(--palix-gray-600);
}

.plan-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.plan-cta.primary {
    background: var(--palix-red);
    color: white;
}

.plan-cta.primary:hover {
    background: var(--palix-darkred);
}

.plan-cta.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.plan-cta.secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item svg {
    width: 48px;
    height: 48px;
    color: var(--palix-red);
    margin: 0 auto 16px;
}

.trust-item h3 {
    font-weight: 600;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 14px;
    color: var(--palix-gray-400);
}

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

.faq-item {
    padding: 24px;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-answer {
    color: var(--palix-gray-400);
}

/* Footer */
.footer {
    background: var(--palix-gray-900);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 64px 0 32px;
}

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

.footer-brand h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin-bottom: 16px;
}

.footer-brand h3 span {
    color: var(--palix-red);
}

.footer-brand p {
    color: var(--palix-gray-400);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--palix-gray-400);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--palix-red);
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--palix-gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--palix-red);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--palix-gray-400);
    margin-bottom: 12px;
}

.contact-item svg {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--palix-gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--palix-red);
}

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

.footer-bottom p {
    color: var(--palix-gray-400);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--palix-gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--palix-red);
}

/* Docs Page */
.docs-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 48px;
    padding-top: 100px;
}

.docs-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.docs-nav {
    list-style: none;
}

.docs-nav li {
    margin-bottom: 8px;
}

.docs-nav a {
    display: block;
    padding: 12px 16px;
    color: var(--palix-gray-400);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.docs-nav a:hover,
.docs-nav a.active {
    background: var(--palix-gray-800);
    color: white;
}

.docs-content h1 {
    font-size: 36px;
    margin-bottom: 24px;
}

.docs-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.docs-content h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.docs-content p {
    color: var(--palix-gray-300);
    margin-bottom: 16px;
}

.docs-content ul, .docs-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
    color: var(--palix-gray-300);
}

.docs-content li {
    margin-bottom: 8px;
}

.docs-content code {
    background: var(--palix-gray-800);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
}

.code-block {
    background: var(--palix-gray-900);
    border-radius: 12px;
    padding: 24px;
    margin: 16px 0;
    overflow-x: auto;
}

.code-block code {
    background: none;
    padding: 0;
    color: #4ade80;
}

/* Support Page */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.support-card {
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.support-card:hover {
    border-color: var(--palix-red);
    transform: translateY(-4px);
}

.support-card svg {
    width: 48px;
    height: 48px;
    color: var(--palix-red);
    margin-bottom: 16px;
}

.support-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.support-card p {
    color: var(--palix-gray-400);
    margin-bottom: 16px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollDown {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(6px);
    }
}

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

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .data-flow {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .docs-container {
        grid-template-columns: 1fr;
    }
    
    .docs-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 100px 16px 60px;
    }
    
    .data-flow {
        grid-template-columns: 1fr;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .testimonial-card {
        padding: 32px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
}

/* Utility Classes */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }
