/* 
 * Woo-Whop WooCommerce Gateway Stylesheet
 * Premium, High-Trust Dark Aesthetic
 */

:root {
    /* Color Palette */
    --color-bg: #060813;
    --color-card-bg: rgba(17, 22, 44, 0.6);
    --color-card-border: rgba(255, 255, 255, 0.08);
    --color-card-hover-border: rgba(250, 70, 22, 0.4);
    
    --color-primary: #FA4616;      /* Whop Orange */
    --color-primary-glow: rgba(250, 70, 22, 0.15);
    --color-secondary: #FF8A00;    /* Sunset Orange */
    --color-accent: #10B981;       /* Emerald Green for success/trust */
    --color-accent-glow: rgba(16, 185, 129, 0.15);
    
    --color-text-main: #F8FAFC;
    --color-text-muted: #94A3B8;
    --color-text-dark: #64748B;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --grad-accent: linear-gradient(135deg, var(--color-accent) 0%, #059669 100%);
    --grad-dark: linear-gradient(180deg, #090D22 0%, #050711 100%);
    --grad-glow: radial-gradient(circle, rgba(250, 70, 22, 0.2) 0%, rgba(6, 8, 19, 0) 70%);

    /* Fonts */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-head: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
}

/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text-main);
}

p {
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Global Layout Containers */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Decorative Glow Backgrounds */
.bg-glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--grad-glow);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

.glow-orb-top-right {
    top: -150px;
    right: -100px;
}

.glow-orb-mid-left {
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
}

.glow-orb-bottom-right {
    bottom: -150px;
    right: -100px;
}

/* Header & Navigation */
.header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(6, 8, 19, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-card-border);
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

.header.scrolled {
    background-color: rgba(4, 5, 12, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

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

.logo-text {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-text-main);
}

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

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav-link:hover {
    color: var(--color-text-main);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(250, 70, 22, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(250, 70, 22, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-text-main);
    border: 1px solid var(--color-card-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--grad-accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.5);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 80px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(250, 70, 22, 0.12) 0%, rgba(6, 8, 19, 0) 65%);
}

.trust-badge-wrap {
    margin-bottom: 24px;
    display: inline-flex;
}

.trust-badge-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(250, 70, 22, 0.1);
    border: 1px solid rgba(250, 70, 22, 0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
}

.trust-badge-pill .icon-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-accent);
    box-shadow: 0 0 8px var(--color-accent);
}

.hero-headline {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1.5px;
    max-width: 900px;
    margin: 0 auto 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #FFF 30%, #A5B4FC 60%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}

.trust-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    color: var(--color-text-muted);
    font-size: 14px;
}

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

.trust-item svg {
    color: var(--color-accent);
}

/* Hero Flow Diagram */
.hero-flow-diagram {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(10, 14, 30, 0.6);
    border: 1px solid var(--color-card-border);
    border-radius: 24px;
    padding: 45px 30px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
    z-index: 10;
}

.glow-orb-diagram {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 150px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(250, 70, 22, 0.15) 0%, rgba(6, 8, 19, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.flow-node {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 10px;
}

.node-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.flow-node h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text-main);
}

.flow-node p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Specific Node Themes */
.flow-node.highlight .node-icon-wrapper {
    background-color: rgba(250, 70, 22, 0.1);
    border-color: rgba(250, 70, 22, 0.3);
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(250, 70, 22, 0.2);
}

.flow-node.success .node-icon-wrapper {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--color-accent);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Hover effects */
.flow-node:hover .node-icon-wrapper {
    transform: scale(1.1);
}

.flow-node.highlight:hover .node-icon-wrapper {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(250, 70, 22, 0.4);
}

.flow-node.success:hover .node-icon-wrapper {
    border-color: var(--color-accent);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

/* Connectors */
.flow-connector {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 10px;
    z-index: 2;
}

.connector-text {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.connector-line-wrapper {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

.connector-line-active {
    position: absolute;
    top: 0;
    height: 100%;
    width: 40px;
    border-radius: 3px;
}

.connector-line-active.forward {
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    animation: flowForward 2s infinite linear;
}

.connector-line-active.backward {
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    animation: flowBackward 2s infinite linear;
}

.connector-arrow-head {
    position: absolute;
    right: 0;
    top: 19px;
    color: var(--color-primary);
}

.connector-arrow-head.backward {
    left: 0;
    right: auto;
    color: var(--color-accent);
}

/* Animations */
@keyframes flowForward {
    0% { left: -10%; }
    100% { left: 100%; }
}

@keyframes flowBackward {
    0% { right: -10%; }
    100% { right: 100%; }
}

/* Responsive Flow Diagram */
@media (max-width: 768px) {
    .hero-flow-diagram {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .flow-connector {
        width: 100%;
        margin: 10px 0;
    }
    
    .connector-line-wrapper {
        width: 3px;
        height: 40px;
        margin: 0 auto;
    }
    
    .connector-line-active.forward {
        background: linear-gradient(180deg, transparent, var(--color-primary), transparent);
        animation: flowVerticalForward 2s infinite linear;
        width: 100%;
        height: 15px;
    }
    
    .connector-line-active.backward {
        background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
        animation: flowVerticalBackward 2s infinite linear;
        width: 100%;
        height: 15px;
    }
    
    .connector-arrow-head {
        top: auto;
        bottom: -15px;
        right: 50%;
        transform: translateX(50%) rotate(90deg);
    }
    
    .connector-arrow-head.backward {
        left: 50%;
        top: -15px;
        bottom: auto;
        transform: translateX(-50%) rotate(90deg);
    }
}

@keyframes flowVerticalForward {
    0% { top: -10%; }
    100% { top: 100%; }
}

@keyframes flowVerticalBackward {
    0% { bottom: -10%; }
    100% { bottom: 100%; }
}

/* Trust Bar / Logos */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--color-card-border);
    border-bottom: 1px solid var(--color-card-border);
    background-color: rgba(10, 12, 26, 0.4);
    text-align: center;
}

.trust-bar p {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: var(--color-text-dark);
}

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

.logo-item {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.65;
    transition: var(--transition-fast);
}

.logo-item:hover {
    opacity: 1;
    color: var(--color-text-muted);
}

/* Section Common Titles */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

/* "How It Works" Section */
.workflow {
    background-color: rgba(9, 13, 34, 0.2);
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.flow-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
}

.flow-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-card-hover-border);
    box-shadow: 0 10px 30px rgba(250, 70, 22, 0.1);
}

.flow-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(250, 70, 22, 0.3);
}

.flow-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

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

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

.feature-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-card-hover-border);
    box-shadow: 0 10px 30px rgba(250, 70, 22, 0.1);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: rgba(250, 70, 22, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary);
    border: 1px solid rgba(250, 70, 22, 0.15);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

/* Testimonials / Trust / Guarantee Section */
.trust-guarantee {
    background: linear-gradient(180deg, rgba(6, 8, 19, 0) 0%, rgba(16, 185, 129, 0.05) 50%, rgba(6, 8, 19, 0) 100%);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 48px;
    background-color: rgba(16, 185, 129, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 24px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-badge {
    flex-shrink: 0;
    color: var(--color-accent);
}

.guarantee-content h3 {
    font-size: 24px;
    color: var(--color-text-main);
    margin-bottom: 12px;
}

.guarantee-content p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Pricing Grid */
.pricing-section {
    background-color: rgba(9, 13, 34, 0.1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-bottom: 48px;
}

.pricing-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Featured (Lifetime) Pricing Card */
.pricing-card-featured {
    border-color: var(--color-primary);
    background-color: rgba(250, 70, 22, 0.05);
    box-shadow: 0 10px 40px rgba(250, 70, 22, 0.15);
}

.pricing-card-featured:hover {
    border-color: #FF7F5C;
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(250, 70, 22, 0.25);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: 24px;
    background: var(--grad-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 100px;
    box-shadow: 0 2px 10px rgba(250, 70, 22, 0.3);
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-family: var(--font-head);
    font-size: 54px;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
}

.pricing-card .price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}

.pricing-features li svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.buy-button {
    width: 100%;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.pricing-card-featured .buy-button {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(250, 70, 22, 0.35);
}

.pricing-card-featured .buy-button:hover {
    box-shadow: 0 6px 24px rgba(250, 70, 22, 0.5);
    transform: translateY(-2px);
}

.pricing-card:not(.pricing-card-featured) .buy-button {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-text-main);
    border: 1px solid var(--color-card-border);
}

.pricing-card:not(.pricing-card-featured) .buy-button:hover {
    background-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.link-fallback {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--color-text-dark);
}

.link-fallback:hover {
    color: var(--color-text-muted);
    text-decoration: underline;
}

.pricing-trust-note {
    text-align: center;
    font-size: 13px;
    color: var(--color-text-muted);
}

.pricing-trust-note svg {
    color: var(--color-accent);
    display: inline;
    vertical-align: middle;
    margin-right: 4px;
}

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

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

.faq-item:hover {
    border-color: var(--color-card-hover-border);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition-normal);
    color: var(--color-text-muted);
}

.faq-question:hover .faq-icon {
    color: var(--color-text-main);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer-inner {
    padding: 0 24px 24px;
    font-size: 14px;
    color: var(--color-text-muted);
    border-top: 1px solid transparent;
}

/* FAQ Active State */
.faq-item.active {
    border-color: var(--color-card-hover-border);
    background-color: rgba(23, 17, 56, 0.2);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* arbitrary height that easily covers paragraph contents */
}

.faq-item.active .faq-answer-inner {
    border-color: rgba(255, 255, 255, 0.04);
}

/* Footer Styling */
.footer {
    background-color: #03040a;
    border-top: 1px solid var(--color-card-border);
    padding: 80px 0 40px;
    position: relative;
    z-index: 10;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    max-width: 400px;
}

.trust-icons-small {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 6px 12px;
    border-radius: 6px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

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

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

.footer-links ul li a {
    font-size: 14px;
    color: var(--color-text-muted);
}

.footer-links ul li a:hover {
    color: var(--color-text-main);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--color-card-border);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    font-size: 13px;
    color: var(--color-text-dark);
}

.footer-bottom .disclaimer {
    max-width: 800px;
    font-size: 11px;
}

/* Legal Page Styling (For Terms and Privacy Pages) */
.legal-wrapper {
    padding-top: 160px;
    padding-bottom: 100px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    text-align: center;
}

.legal-meta {
    font-size: 14px;
    color: var(--color-text-dark);
    margin-bottom: 48px;
    text-align: center;
}

.legal-content {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 48px;
}

.legal-content h2 {
    font-size: 20px;
    margin: 32px 0 16px;
    color: var(--color-text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.legal-content ul li {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
}

.legal-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 44px;
    }
    
    .flow-grid {
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Move Lifetime to take full width or display below on tablet */
    .pricing-card-featured {
        grid-column: span 2;
    }
    
    /* Collapsed mobile navigation menu */
    .nav-menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: #060813;
        border-bottom: 1px solid var(--color-card-border);
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none; /* Hide CTA in navbar, keep mobile menu trigger clean */
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .hero-headline {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .trust-highlights {
        flex-direction: column;
        gap: 12px;
    }
    
    .flow-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-featured {
        grid-column: span 1;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .legal-content {
        padding: 24px;
    }
}

/* ==========================================================================
   GLOBAL FLOATING SUPPORT CHATBOT STYLES
   ========================================================================== */

.support-chatbot-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: var(--font-body);
}

/* Trigger Bubble */
.chatbot-trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(250, 70, 22, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.chatbot-trigger:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 24px rgba(250, 70, 22, 0.6);
}

.chatbot-trigger svg {
    transition: transform var(--transition-fast);
}

.chatbot-trigger.active svg {
    transform: rotate(90deg);
}

/* Pulse Green Online Dot */
.chatbot-trigger .pulse-indicator {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: var(--color-accent);
    border: 2px solid var(--color-bg);
    border-radius: 50%;
}

.chatbot-trigger .pulse-indicator::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulseGreen 2s infinite;
}

/* Chat Window Container */
.chatbot-window {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 360px;
    height: 520px;
    background-color: rgba(10, 13, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 20px rgba(250, 70, 22, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9) translateY(20px);
    transform-origin: bottom right;
    transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.chatbot-window.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

/* Chat Header */
.chatbot-header {
    padding: 16px 20px;
    background: linear-gradient(90deg, rgba(250, 70, 22, 0.15) 0%, rgba(255, 138, 0, 0.05) 100%);
    border-bottom: 1px solid var(--color-card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.bot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(250, 70, 22, 0.15);
    border: 1px solid rgba(250, 70, 22, 0.3);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-details h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: var(--color-text-main);
}

.bot-status {
    font-size: 11px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 1px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: inline-block;
}

.chatbot-close {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.chatbot-close:hover {
    color: var(--color-text-main);
    background-color: rgba(255, 255, 255, 0.06);
}

/* Chat Message Thread Viewport */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar for messages */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}
.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}
.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}
.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Messages Bubbles */
.chat-bubble {
    max-width: 85%;
    padding: 12px 16px;
    font-size: 13.5px;
    line-height: 1.5;
    border-radius: 16px;
    animation: bubbleAppear 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: left bottom;
}

/* Bot Message Bubble */
.chat-bubble.bot {
    align-self: flex-start;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-card-border);
    color: var(--color-text-main);
    border-bottom-left-radius: 4px;
}

.chat-bubble.bot a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* User Message Bubble */
.chat-bubble.user {
    align-self: flex-end;
    background: var(--grad-primary);
    color: #fff;
    border-bottom-right-radius: 4px;
    transform-origin: right bottom;
    box-shadow: 0 4px 12px rgba(250, 70, 22, 0.2);
}

/* Typing Indicator Animation */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-text-muted);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

/* reCAPTCHA Chat Wrapper */
.chatbot-recaptcha-wrapper {
    margin-top: 8px;
    padding: 4px 0;
    max-width: 100%;
    overflow-x: auto;
}

/* Input Form Area */
.chatbot-input-area {
    padding: 14px 16px;
    border-top: 1px solid var(--color-card-border);
    background-color: rgba(6, 8, 19, 0.5);
}

.chatbot-input-area form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-input-area textarea {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    padding: 10px 14px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 13.5px;
    resize: none;
    outline: none;
    height: 40px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.chatbot-input-area textarea:focus {
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.06);
}

.chatbot-input-area textarea::placeholder {
    color: var(--color-text-dark);
}

.chatbot-input-area button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-card-border);
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.chatbot-input-area button:hover:not(:disabled) {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(250, 70, 22, 0.3);
    transform: scale(1.05);
}

.chatbot-input-area button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Chatbot Animations */
@keyframes bubbleAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(12px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Media Queries for Chatbot responsiveness */
@media (max-width: 768px) {
    .support-chatbot-wrapper {
        bottom: 20px;
        right: 16px;
    }

    /* Switch to viewport-fixed so the window can never overflow off-screen */
    .chatbot-window {
        position: fixed;
        right: 16px;
        left: 16px;
        bottom: 90px;
        width: auto;
        height: 460px;
        transform-origin: bottom right;
    }
}

