/* ========================================
   Vibe Coding - Cyberpunk Theme Styles
   ======================================== */

:root {
    /* Colors */
    --color-bg-primary: #0A0A1F;
    --color-bg-secondary: #050510;
    --color-bg-tertiary: #1a1a3e;

    --color-cyan: #00F0FF;
    --color-cyan-rgb: 0, 240, 255;
    --color-purple: #7000FF;
    --color-purple-rgb: 112, 0, 255;
    --color-purple-light: #9D4EDD;

    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B8B8D1;
    --color-text-muted: #6B6B8D;

    --color-landing-alert: #FF5F56;
    --color-landing-alert-rgb: 255, 95, 86;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Glow Effects */
    --glow-cyan: 0 0 20px rgba(var(--color-cyan-rgb), 0.5);
    --glow-purple: 0 0 20px rgba(var(--color-purple-rgb), 0.5);
    --glow-strong: 0 0 40px rgba(var(--color-cyan-rgb), 0.6);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Typography
   ======================================== */

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.938rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary,
.elementor-button {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-cyan) 100%);
    color: var(--color-text-primary);
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover,
.elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--color-cyan);
    border: 2px solid var(--color-cyan);
    box-shadow: 0 0 10px rgba(var(--color-cyan-rgb), 0.2);
}

.btn-secondary:hover {
    background: rgba(var(--color-cyan-rgb), 0.1);
    box-shadow: var(--glow-cyan);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ========================================
   Glass Card Effect
   ======================================== */

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-base);
}

.glass-card:hover {
    border-color: rgba(var(--color-cyan-rgb), 0.3);
    box-shadow: 0 8px 32px 0 rgba(var(--color-cyan-rgb), 0.15);
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 31, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 24px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-left: auto;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-primary);
    margin: 5px 0;
    transition: var(--transition-base);
    border-radius: 2px;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.938rem;
    transition: var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-cyan);
    text-shadow: var(--glow-cyan);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 16vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(var(--color-purple-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(var(--color-cyan-rgb), 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(var(--color-cyan-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--color-cyan-rgb), 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 80%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title-prefix {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--color-text-primary);
    font-weight: 700;
    margin-bottom: 0.2em;
}

.hero-title-main {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 50%, var(--color-cyan) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(var(--color-cyan-rgb), 0.2);
    animation: gradient-flow 4s ease infinite;
}

.hero-description {
    font-size: clamp(1.3rem, 1.3vw, 1.4rem);
    color: var(--color-text-primary);
    margin-bottom: 42px;
    font-weight: 600;
    /* max-width: 90%; */
    line-height: 1.6;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gentle-wave {
    0% { background-position: 35% 50%; }
    50% { background-position: 65% 50%; }
    100% { background-position: 35% 50%; }
}

.hero-buttons {
    display: grid;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(var(--color-cyan-rgb), 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   Sections
   ======================================== */

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   Unified Story Section (Problem + Solution)
   ======================================== */

.problem-solution-wrapper {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.story-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 15%,
        rgba(var(--color-cyan-rgb), 0.1) 50%,
        rgba(var(--color-purple-rgb), 0.2) 85%,
        transparent 100%
    );
    transform: translateX(-50%);
    z-index: -1;
}

.problem-container {
    margin-bottom: 0; /* Remove gap */
    position: relative;
    z-index: 1;
}

.solution-container {
    position: relative;
    z-index: 1;
}

.connection-arrow {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    opacity: 0.6;
}

/* Problem Grid Adjustments */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    margin-bottom: 40px;
}

/* Unified Card Style for Problem and Benefits */
.pain-point,
.benefit-card {
    background: rgba(10, 10, 31, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pain-point {
    /* Specifics for pain-point if any (currently none beyond shared) */
}

.benefit-card {
    /* Specifics for benefit-card */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pain-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(var(--color-purple-rgb), 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
}

.pain-point:hover::before {
    opacity: 1;
}

.pain-point:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--color-purple-rgb), 0.3);
    box-shadow: 0 10px 40px -10px rgba(var(--color-purple-rgb), 0.2);
}

.pain-icon {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-cyan);
    transition: var(--transition-base);
}

.pain-point:hover .pain-icon {
    background: rgba(var(--color-cyan-rgb), 0.1);
    color: var(--color-text-primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(var(--color-cyan-rgb), 0.3);
}

.pain-icon svg {
    width: 32px;
    height: 32px;
}

.pain-point h3 {
    color: var(--color-text-primary);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.pain-point p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Solution Content Adjustments */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 20px;
}

.solution-bg-glow {
    position: absolute;
    top: 50%;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--color-cyan-rgb), 0.05) 0%, transparent 70%);
    transform: translate(30%, -50%);
    pointer-events: none;
    z-index: -1;
}

/* Remove old label styles */
.solution-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-description {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    font-weight: 300;
}

.solution-text p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    font-size: 1.063rem;
}

.solution-text strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.solution-features {
    list-style: none;
    margin-top: 32px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    font-weight: 500;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--color-cyan);
    flex-shrink: 0;
}

/* Code Window Visual */
.code-window {
    background: rgba(10, 10, 31, 0.8);
    padding: 0;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.code-window:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.window-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--glass-border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.window-title {
    margin-left: 12px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-family: monospace;
}

.window-content {
    padding: 24px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
}

.chat-message {
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 90%;
}

.chat-message.user {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.chat-message.ai {
    background: rgba(var(--color-cyan-rgb), 0.1);
    border: 1px solid rgba(var(--color-cyan-rgb), 0.2);
    color: var(--color-cyan);
    margin-right: auto;
    border-bottom-left-radius: 4px;
}

.code-typing {
    margin-top: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--color-text-secondary);
}


/* ========================================
   Benefits Section
   ======================================== */
.benefits-section {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

/* Matching the style of .pain-point exactly - now handled via shared selector above */

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(var(--color-cyan-rgb), 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 0;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--color-cyan-rgb), 0.3);
    box-shadow: 0 10px 40px -10px rgba(var(--color-cyan-rgb), 0.2);
}

.benefit-icon {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-cyan);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    background: rgba(var(--color-cyan-rgb), 0.1);
    border-color: rgba(var(--color-cyan-rgb), 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(var(--color-cyan-rgb), 0.3);
}

.benefit-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(var(--color-cyan-rgb), 0.5));
    transition: var(--transition-base);
}

.benefit-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--color-text-primary);
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}


/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
    background: radial-gradient(ellipse at center, rgba(var(--color-purple-rgb), 0.05) 0%, transparent 70%);
    position: relative;
    padding: 100px 0;
}

.pricing-card {
    /* max-width removed to fill container */
    margin: 0 auto;
    padding: 16px 0;
    overflow: hidden;
    /* Use standard glass card styles instead of custom solid background */
    background: rgba(10, 10, 31, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none; /* Removed border as requested */
    border-radius: 24px;
    box-shadow: none;
    transition: none; /* Kill all transitions */
}

.pricing-card:hover {
    transform: none;
    box-shadow: none;
}

.pricing-content-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: stretch;
}

/* Left Side - Product Image */
.pricing-image {
    padding: 33px 20px 0px 20px;
    background: radial-gradient(circle at center, rgba(var(--color-purple-rgb), 0.05), transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.product-box {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(var(--color-cyan-rgb), 0.2));
    /* Removed rotation and transition */
    transform: none; 
}

/* Right Side - Details */
.pricing-details {
    padding: 0px 48px 60px 80px;
    text-align: left;
    position: relative;
}

.price-header {
    margin-bottom: 32px;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-top-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 8px;
}

.access-badge {
    display: inline-block;
    background: rgba(var(--color-cyan-rgb), 0.1);
    color: var(--color-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 2px;
    border: 1px solid rgba(var(--color-cyan-rgb), 0.2);
    text-transform: uppercase;
}

.price-old {
    font-size: 1.5rem;
    color: var(--color-landing-alert);
    text-decoration: line-through;
    margin-bottom: 0;
}

.price-current {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-cyan) 0%, #fff 50%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 20px rgba(var(--color-cyan-rgb), 0.3);
}

.scarcity-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-landing-alert);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 32px;
    padding: 12px 16px;
    background: rgba(var(--color-landing-alert-rgb), 0.1);
    border-radius: 8px;
    border: 1px solid rgba(var(--color-landing-alert-rgb), 0.2);
}

.blink-dot {
    width: 8px;
    height: 8px;
    background: #FF5F56;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.feature-icon {
    color: var(--color-cyan);
    font-weight: bold;
}

/* Removed .money-back styling */

/* Button Pulse Effect */
.pulse-btn {
    position: relative;
    overflow: hidden;
    /* Reverting to standard pill shape for consistency */
    border-radius: 50px; 
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 20px 40px; /* Larger padding */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    
    /* Gradient Animation */
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 50%, var(--color-cyan) 100%);
    background-size: 400% auto;
    animation: gentle-wave 6s ease infinite;
}

.pulse-btn:hover {
    box-shadow: 0 0 30px rgba(var(--color-cyan-rgb), 0.4); /* Cyan glow match */
    transform: translateY(-2px);
}


/* Lead Magnet Section */
.lead-section {
    background: var(--color-bg-secondary);
}

.lead-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.lead-content h2 {
    text-align: left;
}

.align-left {
    text-align: left;
}

.lead-content h4 {
    color: var(--color-cyan);
    margin: 32px 0 16px;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
    color: var(--color-text-secondary);
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-cyan);
    font-weight: bold;
    font-size: 1.25rem;
}

.lead-form {
    padding: 40px 32px;
}

.lead-form h3 {
    text-align: center;
    margin-bottom: 24px;
}

.lead-form input,
.lead-form .elementor-field {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--color-text-primary);
    font-size: 1rem;
    margin-bottom: 20px;
    outline: none;
    transition: var(--transition-base);
}

.lead-form input:focus,
.lead-form .elementor-field:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(var(--color-cyan-rgb), 0.1);
}

/* Hide screen-only labels (Elementor style) */
.elementor-screen-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Elementor Button Styling to match Vibe Theme */
.elementor-button {
    /* Inherits visual styles from shared .btn-primary selector above */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.938rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%; /* btn-block behavior */
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-card {
    display: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr; /* Tighter image column */
    gap: 80px; /* More space between image and text */
    align-items: center;
    max-width: 100%; /* Use full container width */
    margin: 0;
}

/* Left Side - Image */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glow effect behind the image */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--color-purple-rgb), 0.4) 0%, transparent 60%);
    z-index: -1;
    opacity: 0.8;
}

.about-img {
    width: 284px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    transition: var(--transition-base);
}

.about-img:hover {
    transform: scale(1.05);
    border-color: var(--color-cyan);
    box-shadow: 0 0 30px rgba(var(--color-cyan-rgb), 0.3);
}

/* Right Side - Content */
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left; 
}

/* Force left alignment on the title */
.about-content .section-title {
    text-align: left; /* Override global center alignment */
    margin-left: 0;
    width: 100%;
    font-size: clamp(2rem, 4vw, 3rem);
}

.about-text-body {
    margin-bottom: 32px;
    width: 100%;
}

.about-text-body p {
    color: var(--color-text-primary); /* Brighter text to fix 'washout' */
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
}

.about-content .btn {
    align-self: flex-start;
    margin-bottom: 16px;
}


/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    box-shadow: var(--glow-purple);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--color-text-secondary);
}

/* FAQ Section */
.faq-list {
    max-width: 100%; /* Full container width */
    margin: 2rem auto 0; /* Top margin 60px to match other grids */
    display: flex;
    flex-direction: column;
    gap: 16px; /* Consistent spacing between cards */
}

.faq-item {
    border: 1px solid var(--glass-border);
    background: rgba(10, 10, 31, 0.4);
    border-radius: 16px;
    margin-bottom: 0;
    overflow: hidden;
    transition: var(--transition-base);
    width: 100%; /* Full width */
}

.faq-item:hover {
    border-color: rgba(var(--color-cyan-rgb), 0.3);
    background: rgba(10, 10, 31, 0.6);
}

/* Ensure Title Spacing is consistent - handled by list margin now */
.faq-section .section-title {
    /* margin-bottom: 60px; Removed in favor of container margin */
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--color-cyan);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-cyan);
    transition: var(--transition-base);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 32px 32px; /* Match horizontal padding of question */
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-answer ul {
    list-style: disc;
    padding-left: 56px; /* Indent bullets properly */
}


/* CTA Section */
.cta-section {
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(var(--color-cyan-rgb), 0.1) 0%, transparent 70%);
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    background: var(--color-bg-secondary);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer p {
    color: var(--color-text-muted);
    font-size: 0.938rem;
}

.footer-links {
    display: flex;
    gap: 16px;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.938rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-cyan);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    /* Solution Section */
    .solution-content {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .solution-features {
        margin-top: 24px;
    }

    .solution-features li{
        margin-bottom: 4px;
    }
    
    .window-content {
        padding: 8px;
        font-family: 'Consolas', 'Monaco', monospace;
        font-size: 0.9rem;
    }

    .code-window {
        transform: none;
        margin-top: 16px;
    }

    .problem-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    /* Benefits Section */
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    /* Pricing Section */
    .pricing-content-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-image {
        padding: 33px 20px 0px 20px;
        border-right: none;
        /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
    }
    
    .pricing-details {
        padding: 40px 24px;
        text-align: center;
    }

    .price-wrapper,
    .scarcity-alert {
        align-items: center;
        justify-content: center;
    }
    
    .pricing-features {
        display: inline-block;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-img {
        width: 200px;
        height: 200px;
    }

    .about-content {
        align-items: center;
        text-align: center;
    }

    .about-content .section-title {
        text-align: center;
        font-size: 2.1rem;
    }
    
    .about-content .btn {
        align-self: center;
    }

    /* FAQ Section */
    .faq-list {
        gap: 12px;
    }
    
    .faq-section .section-title {
        margin-bottom: 40px;
    }

    /* Other existing overrides */
    .hero-content,
    .lead-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding-top: 120px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lead-content h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px; /* Reduced from 60px */
    }

    /* Reduce grid gaps */
    .problem-grid,
    .benefits-grid,
    .steps-grid {
        gap: 12px;
    }

    .navbar .container {
        flex-wrap: wrap;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .logo-img {
        height: 20px; /* Slightly smaller for compact mobile header */
    }

    .mobile-menu-toggle {
        padding: 5px; /* Reduce padding */
    }

    .mobile-menu-toggle span {
        margin: 4px 0; /* Tighter spacing */
    }

    /* Adjust active state transformation for tighter spacing */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-menu {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 16px;
        padding-top: 20px;
        padding-bottom: 20px;
        display: none; /* Hidden by default */
        background: rgba(10, 10, 31, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .price-current {
        font-size: 2.5rem; /* Reduced from 3rem */
    }
    
    .pricing-section .section-title {
        margin-bottom: 0;
    }

    .price-old {
        font-size: 1.2rem;
    }


    .price-header {
        margin-bottom: 24px;
    }
    .pricing-details {
        padding: 0px 0px; /* Reduced padding */
    }
    
    .scarcity-alert {
        margin-bottom: 24px;
        padding: 10px;
        font-size: 0.85rem;
    }

    /* .pricing-card,
    .solution-section .glass-card,
    .about-card,
    .lead-form,
    .pain-point,
    .benefit-card {
        padding: 20px 16px; Reduced padding
    } */
    
    /* Aggressive Icon Shrinking */
    .pain-icon,
    .benefit-icon,
    .step-number {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
        font-size: 1.5rem;
    }

    .pain-icon svg,
    .benefit-icon img {
        width: 24px;
        height: 24px;
    }
    
    .benefit-icon img {
        width: 50px; 
        height: 50px;
    }
    
    /* Typography Compactness */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .solution-title {
        font-size: 2.1rem;
    }

    .pain-point h3,
    .benefit-card h3,
    .step-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .pain-point p,
    .benefit-card p,
    .step-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn-lg {
        padding: 14px 28px;
        font-size: 0.938rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}