:root {
    --bg-dark: #000000;
    --bg-surface: #0a0a0a;
    --bg-surface-hover: #121212;
    --border-glass: #27272a;
    --border-highlight: #3f3f46;
    
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    
    --accent-primary: #ededed;
    --accent-glow: rgba(255, 255, 255, 0.05);
    
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Ambient Glow */
.blob {
    position: absolute;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
    border-radius: 50%;
}
.blob-1 {
    top: -20%;
    left: 20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(0,0,0,0) 70%);
}
.blob-2 {
    top: 50%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(0,0,0,0) 70%);
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
}
h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.15rem;
    font-weight: 400;
    max-width: 600px;
    margin-inline: auto;
}

/* Utility / Panels */
.glass-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.w-full {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    gap: 0.5rem;
    font-size: 0.95rem;
}
.btn-primary {
    background: var(--text-primary);
    color: var(--bg-dark);
}
.btn-primary:hover {
    background: #d4d4d8;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}
.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}
.btn-secondary:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-highlight);
}
.btn-glass {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255,255,255,0.3);
}

/* Status Pulse */
.pulse-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}
.logo span {
    color: var(--text-secondary);
    font-weight: 400;
}
nav {
    display: flex;
    gap: 2rem;
}
nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
nav a:hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    text-align: center;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
}
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    background: var(--bg-surface);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
}
.badge:hover {
    border-color: var(--border-highlight);
}
.subheadline {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-inline: auto;
    font-weight: 400;
}
.cta-cluster {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 5rem;
}
.trust-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #71717a;
    font-size: 0.85rem;
    font-weight: 500;
}
.trust-item svg {
    color: #52525b;
}

/* Gallery Section (Bento Grid) */
.gallery {
    padding: 100px 0;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.card-top {
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.85rem;
}
.live-indicator {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-weight: 500;
}
.site-title {
    color: var(--text-primary);
    font-weight: 600;
}
.card-image-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-bottom: 1px solid var(--border-glass);
    background: #000;
}
.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0.9;
}
.hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.card:hover .hover-overlay {
    opacity: 1;
}
.card:hover .card-image-wrap img {
    transform: scale(1.03);
    opacity: 1;
}
.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.chip {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-glass);
    border-radius: 99px;
    color: var(--text-secondary);
    font-weight: 500;
}
.impact {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Comparison Table */
.comparison {
    padding: 100px 0;
}
.table-container {
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.95rem;
}
th {
    color: var(--text-primary);
    font-weight: 600;
}
td {
    color: var(--text-secondary);
}
td strong {
    color: var(--text-primary);
    font-weight: 500;
}
.highlight-col {
    background: var(--bg-surface-hover);
    color: var(--text-primary);
    font-weight: 500;
}
tbody tr:hover td {
    background: rgba(255,255,255,0.02);
}
tbody tr:last-child td {
    border-bottom: none;
}

/* Process */
.process {
    padding: 100px 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.process-step {
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}
.process-step.highlight {
    border-color: var(--border-highlight);
    background: var(--bg-surface-hover);
}
.step-num {
    width: 32px;
    height: 32px;
    background: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.process-step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}
.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Packages */
.packages {
    padding: 100px 0;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: start;
}
.pricing-card {
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card.popular {
    border-color: var(--border-highlight);
    background: var(--bg-surface-hover);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: var(--bg-dark);
    padding: 0.2rem 0.8rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--border-glass);
}
.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
}
.ideal-for {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-glass);
}
.pricing-card ul {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}
.pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}
.pricing-card ul li svg {
    width: 16px;
    height: 16px;
    color: var(--text-primary);
}

/* FAQ */
.faq {
    padding: 100px 0;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}
.faq-question .icon {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}
.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Lead Capture */
.lead-capture {
    padding: 100px 0 150px;
}
.lead-box {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    text-align: center;
}
.highlight-border {
    position: relative;
}
.highlight-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(180deg, #3f3f46 0%, transparent 100%);
    border-radius: 13px;
    z-index: -1;
}
.lead-box h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}
.lead-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.form-group {
    margin-bottom: 1rem;
}
input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}
input:focus {
    border-color: var(--text-primary);
}
.form-success {
    margin-top: 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}
.hidden {
    display: none;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-glass);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-cluster {
        flex-direction: column;
    }
    nav {
        display: none;
    }
}

/* React Bits Custom Anim Styles */
#squares-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    background: #000000;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    pointer-events: none;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Spotlight Card Base */
.card, .pricing-card, .process-step, .faq-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Spotlight Background Glow */
.card::before, .pricing-card::before, .process-step::before, .faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    background: radial-gradient(
        350px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
        rgba(255, 255, 255, 0.05),
        transparent 80%
    );
}

/* Spotlight Border Glow */
.card::after, .pricing-card::after, .process-step::after, .faq-item::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    background: radial-gradient(
        200px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
        rgba(255, 255, 255, 0.2),
        transparent 80%
    );
    padding: 1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Ensure contents are layered above background glow */
.card > *, .pricing-card > *, .process-step > *, .faq-item > * {
    position: relative;
    z-index: 2;
}

.card:hover::before, .pricing-card:hover::before, .process-step:hover::before, .faq-item:hover::before,
.card:hover::after, .pricing-card:hover::after, .process-step:hover::after, .faq-item:hover::after {
    opacity: 1;
}

/* Scramble Text Styles */
.scramble-char {
    color: var(--text-primary);
    opacity: 0.55;
    font-family: monospace;
    font-weight: 300;
}

/* Shiny Text / Shimmer animation */
.shiny-text {
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.4) 40%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.4) 60%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

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

/* About Section */
.about {
    padding: 100px 0;
}
.about-card {
    padding: 3rem;
}
.about-subtitle {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
    max-width: 700px;
}
.roi-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}
.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-glass);
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-cta.visible {
    transform: translateY(0);
}
.sticky-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sticky-text {
    font-weight: 500;
    color: var(--text-primary);
}
@media (max-width: 768px) {
    .sticky-container {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}

