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

:root {
    --primary-color: #7c4dff;
    --primary-gradient: linear-gradient(135deg, #7c4dff 0%, #8655ff 100%);
    --secondary-color: #202020;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #16a34a;
    --warning-color: #eab308;
    --error-color: #dc2626;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --bg-light: #1a1a1a;
    --bg-white: #2a2a2a;
    --border-color: #404040;
    --secondary-color: #151515;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.5);
}

/* OS-based dark mode preference */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --text-dark: #ffffff;
        --text-light: #b0b0b0;
        --bg-light: #1a1a1a;
        --bg-white: #2a2a2a;
        --border-color: #404040;
        --secondary-color: #151515;
        --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
        --shadow-md: 0 4px 6px rgba(0,0,0,0.4);
        --shadow-lg: 0 10px 25px rgba(0,0,0,0.5);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

/* ========================================
   Announcement Banner
   ======================================== */
.announcement-banner {
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
}

.announcement-banner .emoji {
    margin-right: 8px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.theme-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(20deg);
}

.theme-toggle:hover .theme-icon {
    transform: scale(1.1);
}

.theme-icon {
    font-size: 20px;
    transition: var(--transition);
    display: block;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.4;
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    padding: 30px 40px;
    background: rgba(139, 92, 246, 0.06);
    display: inline-block;
    min-height: 300px;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 650px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    background: rgba(124, 77, 255, 0.08);
    border: 1px solid rgba(124, 77, 255, 0.3);
    border-radius: 12px;
    padding: 24px 20px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: rgba(124, 77, 255, 0.6);
    background: rgba(124, 77, 255, 0.12);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.benefit-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* ========================================
   Platform Capabilities Section
   ======================================== */
.platform-capabilities {
    padding: 80px 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.capability {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.capability:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.capability.new-feature {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.05) 0%, rgba(134, 85, 255, 0.05) 100%);
}

.capability-icon {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.capability-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.capability-content p {
    color: var(--text-light);
    font-size: 14px;
}

.badge {
    background: var(--primary-gradient);
    color: white;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
}

/* ========================================
   Dashboard Demo Section
   ======================================== */
.dashboard-demo {
    padding: 80px 0;
    background: var(--bg-light);
}

.dashboard-showcase {
    display: grid;
    gap: 40px;
}

.demo-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.demo-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* Usage Stats Demo */
.demo-screenshot {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.stat-box .stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 500;
}

.stat-box .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.stat-box .stat-value.alert {
    color: var(--error-color);
}

.stat-breakdown {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
}

.stat-breakdown .healthy {
    color: var(--success-color);
}

.stat-breakdown .warning {
    color: var(--warning-color);
}

.stat-breakdown .error {
    color: var(--error-color);
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}

.status-item {
    display: flex;
    justify-content: space-between;
}

.status-item .healthy {
    color: var(--success-color);
}

.status-item .warning {
    color: var(--warning-color);
}

.status-item .error {
    color: var(--error-color);
}

/* Hourly Chart Demo */
.chart-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 80px;
    background: var(--bg-white);
    padding: 15px;
    border-radius: 8px;
}

.bar {
    flex: 1;
    background: var(--primary-gradient);
    border-radius: 3px 3px 0 0;
    min-height: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.bar:hover {
    opacity: 0.8;
    transform: scaleY(1.05);
}

/* Activity Insights Demo */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.insight-list {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
}

.insight-header {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.insight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.insight-item:last-child {
    border-bottom: none;
}

.insight-info {
    flex: 1;
}

.insight-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.insight-detail {
    font-size: 12px;
    color: var(--text-light);
}

.insight-count {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(124, 77, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

.insight-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot.healthy {
    background: var(--success-color);
}

.status-dot.warning {
    background: var(--warning-color);
}

.status-dot.error {
    background: var(--error-color);
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(124, 77, 255, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.pricing-card .pricing-features {
    flex: 1;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(124, 77, 255, 0.6);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-light);
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.pricing-features li strong {
    color: var(--primary-color);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: 80px 0;
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 0;
}

.testimonial-author {
    margin-bottom: 15px;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-title {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-metric {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.1) 0%, rgba(134, 85, 255, 0.1) 100%);
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.recaptcha-notice {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin: 10px 0 0 0;
}

.recaptcha-notice a {
    color: var(--primary-color);
    text-decoration: none;
}

.recaptcha-notice a:hover {
    text-decoration: underline;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 38px;
    }

    .benefits-grid,
    .services-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        padding: 60px 0;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-grid,
    .services-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .price {
        font-size: 36px;
    }
}

/* Lead Capture Form */
.lead-capture-form {
    max-width: 500px;
    margin: 30px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lead-form .form-group {
    margin-bottom: 0;
}

.lead-form input[type="text"],
.lead-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.lead-form input[type="text"]:focus,
.lead-form input[type="email"]:focus {
    outline: none;
    border-color: #7c4dff;
    box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.checkbox-label span {
    flex: 1;
    line-height: 1.5;
}

.privacy-link {
    color: #7c4dff;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.lead-form button {
    margin-top: 10px;
}

.form-message {
    margin-top: 10px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

.form-subtext {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #6b7280;
}

.hero-cta-secondary {
    margin-top: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .lead-capture-form {
        padding: 20px;
        margin: 20px auto;
    }
}

/* Privacy Policy Section */
.privacy-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.privacy-content h2 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-content h3 {
    font-size: 24px;
    color: #374151;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.privacy-text ul {
    margin: 15px 0 25px 30px;
    line-height: 1.8;
}

.privacy-text li {
    color: #4b5563;
    margin-bottom: 10px;
}

.privacy-text em {
    color: #6b7280;
    font-size: 14px;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 30px 20px;
    }
    
    .privacy-content h2 {
        font-size: 28px;
    }
    
    .privacy-content h3 {
        font-size: 20px;
    }
}

/* Fixed Lead Capture Sidebar */
.lead-capture-sidebar {
    position: fixed;
    top: 120px;
    right: 20px;
    width: 320px;
    z-index: 1000;
}

.lead-capture-sidebar .lead-capture-form {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
}

.form-title {
    font-size: 20px;
    color: #1f2937;
    margin: 0 0 20px 0;
    text-align: center;
    font-weight: 700;
}

.lead-capture-sidebar .lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-capture-sidebar .form-group {
    margin-bottom: 0;
}

.lead-capture-sidebar input[type=text],
.lead-capture-sidebar input[type=email] {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.lead-capture-sidebar input[type=text]:focus,
.lead-capture-sidebar input[type=email]:focus {
    outline: none;
    border-color: #7c4dff;
    box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.1);
}

.lead-capture-sidebar .checkbox-group {
    display: flex;
    align-items: flex-start;
}

.lead-capture-sidebar .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #374151;
    cursor: pointer;
    user-select: none;
}

.lead-capture-sidebar .checkbox-label input[type=checkbox] {
    margin-top: 2px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.lead-capture-sidebar .checkbox-label span {
    flex: 1;
    line-height: 1.4;
    color: #374151;
}

.lead-capture-sidebar .privacy-link {
    color: #7c4dff;
    text-decoration: none;
}

.lead-capture-sidebar .privacy-link:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
}

.lead-capture-sidebar .btn-primary {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
}

.lead-capture-sidebar .form-message {
    margin-top: 5px;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    display: none;
}

.lead-capture-sidebar .form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.lead-capture-sidebar .form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

/* Hide sidebar on mobile */
@media (max-width: 1024px) {
    .lead-capture-sidebar {
        display: none;
    }
}

/* Remove old centered form styles */
.lead-capture-form:not(.lead-capture-sidebar .lead-capture-form) {
    display: none;
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge {
    visibility: hidden !important;
    display: none !important;
}

/* Center contact form button */
.contact-form button[type="submit"] {
    margin: 0 auto;
    display: block;
    max-width: 300px;
}

/* Override and properly center contact button */
.contact-form button[type="submit"].btn {
    display: block !important;
    margin: 20px auto 0 auto !important;
    width: auto !important;
    min-width: 200px;
    text-align: center;
}

.contact-form .full-width:last-of-type {
    text-align: center;
}

/* Center contact form button wrapper */
.form-button-wrapper {
    text-align: center;
    margin-top: 20px;
}

.form-button-wrapper .btn {
    display: inline-block !important;
    margin: 0 !important;
}

/* FINAL button centering - override all previous rules */
.contact-form .form-button-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 30px !important;
}

.contact-form .form-button-wrapper button {
    margin: 0 !important;
}

/* Starburst Badge */
.starburst {
    position: fixed;
    top: 80px;
    right: 40px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #e63946 0%, #f77f00 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    font-family: Arial Black, Arial Bold, sans-serif;
    letter-spacing: 0.5px;
    z-index: 999999;
    clip-path: polygon(50.0% 0.0%, 56.3% 10.5%, 65.5% 2.4%, 68.2% 14.4%, 79.4% 9.5%, 78.3% 21.7%, 90.5% 20.6%, 85.6% 31.8%, 97.6% 34.5%, 89.5% 43.7%, 100.0% 50.0%, 89.5% 56.3%, 97.6% 65.5%, 85.6% 68.2%, 90.5% 79.4%, 78.3% 78.3%, 79.4% 90.5%, 68.2% 85.6%, 65.5% 97.6%, 56.3% 89.5%, 50.0% 100.0%, 43.7% 89.5%, 34.5% 97.6%, 31.8% 85.6%, 20.6% 90.5%, 21.7% 78.3%, 9.5% 79.4%, 14.4% 68.2%, 2.4% 65.5%, 10.5% 56.3%, 0.0% 50.0%, 10.5% 43.7%, 2.4% 34.5%, 14.4% 31.8%, 9.5% 20.6%, 21.7% 21.7%, 20.6% 9.5%, 31.8% 14.4%, 34.5% 2.4%, 43.7% 10.5%);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #e63946, 0 8px 30px rgba(230, 57, 70, 0.6);
    filter: drop-shadow(0 0 10px rgba(247, 127, 0, 0.4));
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
}

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

.starburst-text {
    text-align: center;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.starburst-text {
    text-align: center;
    line-height: 1.2;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Make starburst responsive */
@media (max-width: 768px) {
    .starburst {
        width: 100px;
        height: 100px;
        font-size: 14px;
        top: 80px;
        right: 15px;
    }
}

/* Make announcement banner clickable */
.announcement-banner a {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.announcement-banner a:hover {
    opacity: 0.9;
}

/* Legal Pages Styling */
.legal-page {
    padding: 100px 0 80px 0;
    background: #f9fafb;
    min-height: 100vh;
}

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.last-updated {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 600;
    color: #374151;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 10px;
}

.legal-page a {
    color: #7c4dff;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #6a3de8;
}

/* Rotating Text Animation */
.rotating-text {
    display: inline-block;
    position: relative;
    min-width: 280px;
    text-align: center;
}

.rotate-item {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    color: #8b5cf6;
    white-space: nowrap;
}

.rotate-item.active {
    position: relative;
    left: auto;
    transform: none;
    opacity: 1;
}

@media (max-width: 768px) {
    .rotating-text {
        display: block;
        min-width: auto;
    }
    
    .rotate-item {
        position: relative;
        left: auto;
        transform: none;
    }
}

/* Logo byline */
.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    justify-content: flex-start;
}

.logo-byline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    display: block;
}
