/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (60-30-10 RULE)
   ========================================================================== */
:root {
    /* 60% Dominant Color: Dark Space Obsidian Backgrounds */
    --bg-primary: #040407;
    --bg-secondary: #0A0A0F;
    --bg-card: rgba(16, 16, 28, 0.75);
    --border-color: rgba(255, 255, 255, 0.05);
    
    /* 30% Secondary Color: Cool Slate Texts, Purples/Indigo brand accents */
    --text-primary: #FFFFFF;
    --text-secondary: #E2E2F0;
    --text-muted: #9595B0;
    --brand-purple: #8A2BE2;
    --accent-gradient: linear-gradient(135deg, #A855F7 0%, #6366F1 50%, #3B82F6 100%);
    --pricing-gradient: linear-gradient(180deg, #110E23 0%, #06050D 100%);
    
    /* 10% CTA Color (Complementary Safety Neon Orange - EXCLUSIVELY FOR CTAs) */
    --cta-gradient: linear-gradient(135deg, #FF5E36 0%, #FFA200 100%);
    --cta-solid: #FF5E36;
    --glow-shadow-cta: 0 0 30px rgba(255, 94, 54, 0.4);
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    touch-action: pan-y;
}

body {
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 0),
        radial-gradient(rgba(255, 255, 255, 0.01) 1.5px, transparent 0);
    background-size: 40px 40px, 20px 20px;
    background-position: 0 0, 10px 10px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    touch-action: pan-y;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ambient Background Glows */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
}

.glow-1 {
    top: 5%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
}

.glow-2 {
    top: 35%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

.glow-3 {
    bottom: 15%;
    right: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

.announcement-bar {
    background: linear-gradient(90deg, #A855F7, #6366F1);
    color: #FFF;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    
    /* Force wrap to prevent horizontal scrolling */
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}

.announcement-bar span {
    display: inline-block;
    max-width: 100%;
    white-space: normal !important;
}

/* Utilities */
.text-center { text-align: center; }
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(4, 4, 7, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.header-cta {
    background: var(--cta-gradient);
    color: #000;
    padding: 12px 24px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow-cta);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 220px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(138, 43, 226, 0.08);
    border: 1px solid rgba(138, 43, 226, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--brand-purple);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(138, 43, 226, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
    }
}

.badge {
    color: #A855F7;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    width: 100%;
    max-width: 100%;
}

.hero-bullets li span:last-child {
    flex: 1;
    white-space: normal !important;
    word-break: break-word !important;
}

.hero-bullets .bullet-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.primary-cta {
    background: var(--cta-gradient);
    color: #000;
    padding: 20px 42px;
    font-size: 1.1rem;
    border-radius: 14px;
    box-shadow: var(--glow-shadow-cta);
    max-width: fit-content;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255, 94, 54, 0.6);
}

.cta-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   INTERACTIVE AI CHAT SIMULATOR WIDGET
   ========================================================================== */
.interactive-chat-widget {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(99, 102, 241, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 480px;
    position: relative;
    z-index: 10;
}

.widget-header {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dots-group {
    display: flex;
    gap: 6px;
}

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

.dot.red { background-color: #FF5F56; }
.dot.yellow { background-color: #FFBD2E; }
.dot.green { background-color: #27C93F; }

.widget-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.widget-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
    gap: 16px;
}

.chat-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 0.92rem;
    line-height: 1.5;
    word-wrap: break-word;
    animation: slideUp 0.3s ease-out forwards;
}

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

.ai-msg {
    background-color: rgba(255,255,255,0.03);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255,255,255,0.04);
}

.user-msg {
    background: var(--accent-gradient);
    color: #FFF;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    font-weight: 600;
}

.typing-indicator {
    opacity: 0.7;
    font-style: italic;
}

.prompt-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.prompt-btn {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    color: #A855F7;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.prompt-btn:hover {
    background: var(--accent-gradient);
    color: #FFF;
    border-color: transparent;
    transform: translateY(-2px);
}

.widget-footer-demo {
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 16px 24px;
}

.dummy-input {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Demo Website Output styling inside chat widget */
.preview-container {
    width: 100%;
    align-self: center;
    max-width: 100%;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.site-demo-preview {
    padding: 16px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-demo-preview.blue-theme {
    background: linear-gradient(135deg, #090e1f, #0d1e3d);
}

.site-demo-preview.coffee-theme {
    background: linear-gradient(135deg, #1f140f, #332015);
}

.site-demo-preview.saas-theme {
    background: linear-gradient(135deg, #0e0d1c, #161133);
}

.demo-site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 6px;
}

.demo-btn {
    background: #FFF;
    color: #000;
    border: none;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.demo-site-hero {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.demo-site-hero h5 {
    font-size: 0.95rem;
    font-weight: 800;
}

.demo-site-hero p {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* ==========================================================================
   LOGO WALL SECTION
   ========================================================================== */
.logo-wall {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(10, 10, 15, 0.4);
}

.logo-wall-title {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 24px;
}

.logo-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.logo-item:hover {
    color: var(--text-primary);
    opacity: 0.9;
}

/* ==========================================================================
   PAIN POINTS & SECTION HEADERS
   ========================================================================== */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.pain-section {
    padding: 120px 0;
    position: relative;
}

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

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 45px 35px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.pain-card:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 43, 226, 0.25);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.05);
}

.pain-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.pain-icon {
    width: 54px;
    height: 54px;
    background: rgba(138, 43, 226, 0.08);
    color: #A855F7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pain-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.pain-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   COMPARISON TABLE SECTION
   ========================================================================== */
.comparison-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: rgba(16, 16, 26, 0.4);
    backdrop-filter: blur(10px);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 650px;
}

.comparison-table th, .comparison-table td {
    padding: 24px 30px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
}

.comparison-table td {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-mobile {
    display: none;
}

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

.highlight-col {
    background: rgba(99, 102, 241, 0.04);
    border-left: 1px solid rgba(99, 102, 241, 0.15);
    border-right: 1px solid rgba(99, 102, 241, 0.15);
    font-weight: 700;
}

th.highlight-col {
    color: #6366F1;
    font-size: 1.15rem;
}

.text-green {
    color: #6366F1 !important;
}

/* ==========================================================================
   WHO IS THIS FOR (TARGET) SECTION
   ========================================================================== */
.target-section {
    padding: 120px 0;
}

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

.target-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-smooth);
}

.target-card:hover {
    transform: scale(1.03);
    border-color: rgba(99, 102, 241, 0.2);
}

.target-badge-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.target-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.target-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   INTERACTIVE FEATURES TABS SECTION
   ========================================================================== */
.features-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-tabs-container {
    max-width: 960px;
    margin: 0 auto;
}

.features-tabs-header {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.tab-btn {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn.active, .tab-btn:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: var(--brand-purple);
    color: #FFF;
}

.features-tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.features-tab-content.active {
    display: block;
}

.tab-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.tab-text-side h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.tab-text-side p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-list li {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}

.tab-image-side {
    display: flex;
    justify-content: center;
}

.code-editor-mock {
    background: #06050D;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: monospace;
    font-size: 0.85rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.code-tag {
    color: #E2E8F0;
    opacity: 0.5;
}

.code-highlight {
    color: #00F2FE;
    margin-left: 16px;
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 0;
}

.prompt-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.visual-indicator-box {
    background: rgba(138, 43, 226, 0.1);
    color: #A855F7;
    border: 1px dashed var(--brand-purple);
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
}

.speed-score-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid #6366F1;
    color: #6366F1;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0 auto;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

/* ==========================================================================
   SOLUTION SECTION
   ========================================================================== */
.solution-section {
    padding: 120px 0;
}

.solution-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.solution-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.solution-img {
    z-index: 2;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 30px rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(255,255,255,0.08);
    max-height: 420px;
    object-fit: cover;
}

.solution-content h2 {
    margin-bottom: 24px;
}

.solution-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

.solution-list {
    list-style: none;
}

.solution-list li {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366F1;
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.solution-list li div {
    font-size: 1rem;
    color: var(--text-secondary);
}

.solution-list li strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

/* ==========================================================================
   STEP-BY-STEP SECTION
   ========================================================================== */
.steps-section {
    padding: 120px 0;
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(138, 43, 226, 0.25);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.05);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    position: absolute;
    top: 25px;
    right: 30px;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 10px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    min-height: 240px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 45px;
    border-radius: 24px;
    display: none;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.testimonial-card.active {
    display: flex;
}

.stars {
    color: #FF8A00;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-primary);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: #000;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.user-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.user-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   OFFER & PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: 120px 0;
}

.pricing-container {
    max-width: 720px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--pricing-gradient);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 32px;
    padding: 60px 48px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(138, 43, 226, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #FFF;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.pricing-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 35px;
    margin-top: 10px;
    letter-spacing: -1px;
}

/* Countdown Timer */
.countdown-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
}

.countdown-title {
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 700;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
}

.time-block span:first-child {
    font-size: 2.2rem;
    font-weight: 800;
    color: #A855F7;
    line-height: 1;
}

.time-block .label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    font-weight: 700;
}

.colon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Price */
.price-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 35px;
}

.old-price {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.current-price {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.discount-tag {
    background: rgba(138, 43, 226, 0.08);
    border: 1px solid rgba(138, 43, 226, 0.2);
    color: #A855F7;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-top: 8px;
}

/* Bonuses */
.bonuses-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    text-align: left;
    margin-bottom: 40px;
}

.bonuses-box h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #FF8A00;
}

.bonuses-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonuses-box li {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Checkout CTA: safety orange glowing */
.checkout-btn {
    background: var(--cta-gradient);
    color: #000;
    width: 100%;
    padding: 22px 35px;
    border-radius: 18px;
    font-size: 1.2rem;
    flex-direction: column;
    box-shadow: var(--glow-shadow-cta);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 45px rgba(255, 94, 54, 0.75);
}

.checkout-btn small {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.8;
    margin-top: 6px;
}

.trust-badge {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 24px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: #A855F7;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
}

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

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    background-color: #030305;
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.6;
    margin: 0 auto;
    opacity: 0.8;
}

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(4, 4, 7, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 14px 24px 24px 24px;
    display: none; /* Hidden on Desktop */
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 999;
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--cta-solid);
    line-height: 1.1;
}

.sticky-old-price {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.sticky-btn {
    flex: 1;
    background: var(--cta-gradient);
    color: #000;
    padding: 16px 24px;
    font-size: 1rem;
    border-radius: 30px;
    box-shadow: var(--glow-shadow-cta);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet (Screens < 992px) */
@media (max-width: 992px) {


    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        align-items: center;
        width: 100%;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .solution-container {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }
    
    .solution-image {
        order: 2;
    }
    
    .solution-list li {
        text-align: left;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 580px;
        margin: 0 auto;
    }

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

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

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* Mobile (Screens < 768px) */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    /* Reduce vertical padding gaps (black spaces) on mobile to minimum */
    .hero-section {
        padding: 15px 0 15px 0 !important;
    }
    .logo-wall {
        padding: 20px 0 !important;
    }
    .pain-section, 
    .comparison-section, 
    .target-section, 
    .features-section, 
    .steps-section, 
    .testimonials-section, 
    .pricing-section, 
    .faq-section {
        padding: 24px 0 !important; /* Extreme reduction of empty black spaces */
    }
    .section-header {
        margin-bottom: 20px !important;
    }
    .slider-controls {
        margin-top: 15px !important;
    }

    .announcement-bar {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .hero-title {
        font-size: 2.0rem;
        margin-bottom: 12px !important;
        line-height: 1.25 !important;
        letter-spacing: -1px !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 16px !important;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .primary-cta {
        width: 100%;
        padding: 18px 24px;
        font-size: 1.05rem;
    }

    .interactive-chat-widget {
        height: 440px;
    }

    .prompt-btn {
        padding: 8px 12px;
        font-size: 0.78rem;
    }

    .features-tabs-header {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .tab-btn {
        padding: 10px 20px;
        text-align: center;
    }

    .target-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 40px 24px;
    }
    
    .current-price {
        font-size: 3.2rem;
    }
    
    .sticky-mobile-cta {
        display: flex;
    }
    
    body {
        padding-bottom: 95px;
    }

    .logo {
        font-size: 1.25rem;
    }
    
    .header-cta {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    /* Prevent any horizontal overflow */
    .table-wrapper {
        display: none !important;
    }
    
    .comparison-mobile {
        display: flex !important;
        flex-direction: column;
        gap: 16px;
        max-width: 440px;
        margin: 0 auto;
    }
    
    .comp-mobile-item {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 20px;
        border-radius: 16px;
        text-align: left;
    }
    
    .comp-mobile-item h4 {
        font-size: 1.05rem;
        font-weight: 800;
        margin-bottom: 12px;
        color: var(--text-primary);
    }
    
    .comp-split {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .comp-bad, .comp-good {
        font-size: 0.88rem;
        padding: 8px 12px;
        border-radius: 10px;
        font-weight: 700;
    }
    
    .comp-bad {
        background: rgba(255, 95, 86, 0.08);
        border: 1px solid rgba(255, 95, 86, 0.15);
        color: #FF5F56;
    }
    
    .comp-good {
        background: rgba(99, 102, 241, 0.08);
        border: 1px solid rgba(99, 102, 241, 0.15);
        color: #A855F7;
    }
    
    .comp-bad span, .comp-good span {
        opacity: 0.6;
        font-weight: 500;
        margin-right: 4px;
    }

    /* Wrap code mockups on mobile to prevent overflow */
    .code-editor-mock {
        white-space: normal !important;
        word-break: break-all !important;
        overflow-x: hidden !important;
        max-width: 100% !important;
    }

    /* Override large internal margins/paddings on mobile */
    .pricing-title {
        margin-bottom: 15px !important;
        font-size: 1.6rem !important;
    }
    .countdown-container {
        margin-bottom: 20px !important;
        padding: 12px !important;
    }
    .price-group {
        margin-bottom: 20px !important;
    }
    .current-price {
        font-size: 2.6rem !important;
    }
    .bonuses-box {
        margin-bottom: 20px !important;
        padding: 16px !important;
    }
    .features-tabs-header {
        margin-bottom: 20px !important;
    }
    .tab-text-side h3 {
        margin-bottom: 10px !important;
    }
    .tab-text-side p {
        margin-bottom: 15px !important;
    }
    .pain-card {
        padding: 24px 20px !important;
    }
    .step-card {
        padding: 24px 20px !important;
    }
    .feature-card {
        padding: 24px !important;
    }
    .testimonial-card {
        padding: 24px !important;
    }
    
    /* Optimize 3-second bullets on mobile */
    .hero-bullets {
        margin-bottom: 20px !important;
        gap: 8px !important;
    }
    
    .hero-bullets li {
        font-size: 0.88rem !important;
    }
    
    .badge-wrapper {
        margin-bottom: 12px !important;
    }
}
