/* CSS Reset & Variable Tokens */
:root {
    --bg-primary: #050505;
    --bg-secondary: #0c0c0c;
    --bg-card: rgba(17, 17, 17, 0.7);
    --bg-card-hover: rgba(22, 22, 22, 0.85);
    
    --wa-green: #25D366;
    --wa-green-glow: rgba(37, 211, 102, 0.35);
    --wa-green-dark: #128C7E;
    
    --gold: #FFD700;
    --gold-glow: rgba(255, 215, 0, 0.25);
    --gold-dark: #cc9900;
    
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-glow: rgba(37, 211, 102, 0.18);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Background Elements */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wa-green), var(--gold));
    width: 0%;
    z-index: 9999;
}

#mouse-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Typography & Layout Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

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

.section-padding {
    padding: 7rem 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem auto;
}

.section-tagline {
    color: var(--wa-green);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.highlight-green {
    color: var(--wa-green);
    position: relative;
    white-space: nowrap;
}

.accent-text {
    color: var(--wa-green);
}

.gold-text {
    color: var(--gold);
}

.font-bold {
    font-weight: 700;
}

/* Ambient glow shapes */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--wa-green-dark);
    top: 15%;
    right: -10%;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: rgba(37, 211, 102, 0.4);
    top: 50%;
    left: -15%;
}

.glow-3 {
    width: 450px;
    height: 450px;
    background: var(--gold-dark);
    top: 30%;
    right: -20%;
    opacity: 0.15;
}

.glow-4 {
    width: 500px;
    height: 500px;
    background: var(--wa-green);
    bottom: 5%;
    left: 20%;
    opacity: 0.18;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: var(--wa-green);
    color: #000000;
    border: 1px solid var(--wa-green);
}

.btn-primary:hover {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--wa-green);
    color: var(--wa-green);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 20px var(--wa-green-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.btn-pulse {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Sticky Header Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(5, 5, 5, 0.9);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--wa-green);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    z-index: 999;
    padding: 6rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-normal);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: var(--transition-fast);
}

.drawer-link:hover {
    color: var(--wa-green);
}

.drawer-btn {
    margin-top: 1.5rem;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 10rem 0 6rem 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.stars {
    font-size: 0.85rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background-color: rgba(37, 211, 102, 0.05);
    border: 1px solid var(--border-color-glow);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.hero-tag .bullet {
    font-size: 0.7rem;
}

.price-badge-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.price-badge {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.02) 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    display: inline-block;
    max-width: max-content;
}

.price-fire {
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

.underline-accent {
    border-bottom: 2px solid var(--gold);
}

.updates-badge {
    font-size: 0.85rem;
    color: var(--wa-green);
    font-weight: 600;
    letter-spacing: 0.05em;
    padding-left: 0.5rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Hero WA Backdrop Visuals */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-dashed {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(37, 211, 102, 0.2);
    border-radius: 50%;
    animation: rotateCircle 30s linear infinite;
}

.circle-dashed-outer {
    position: absolute;
    width: 125%;
    height: 125%;
    border: 1.5px dashed rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: rotateCircleReverse 45s linear infinite;
}

.hero-wa-logo {
    width: 160px;
    height: 160px;
    filter: drop-shadow(0 0 30px rgba(37, 211, 102, 0.4));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCircleReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Laptop Mockup Styling */
.laptop-mockup {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.laptop-screen {
    background: #151515;
    border: 16px solid #1a1a1a;
    border-top-width: 18px;
    border-bottom-width: 18px;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.laptop-keyboard {
    height: 18px;
    background: linear-gradient(to bottom, #2d2d2d, #1a1a1a);
    border-radius: 0 0 16px 16px;
    position: relative;
    width: 106%;
    margin-left: -3%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

.laptop-keyboard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12%;
    height: 6px;
    background: #000;
    border-radius: 0 0 6px 6px;
}

/* Simulator Web Application UI */
.simulator-app {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #0b0c10;
    font-family: var(--font-body);
}

/* Sidebar */
.app-sidebar {
    width: 20%;
    background-color: #0f1016;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

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

.green-dot {
    background-color: var(--wa-green);
    box-shadow: 0 0 10px var(--wa-green);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.menu-item.active {
    background-color: rgba(37, 211, 102, 0.08);
    color: var(--wa-green);
    font-weight: 600;
}

/* Main Dashboard Panel */
.app-main {
    width: 80%;
    display: flex;
    flex-direction: column;
}

.app-header {
    height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.app-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.status-indicator {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.status-pill {
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
}

.status-pill.idle {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.status-pill.running {
    background-color: rgba(37, 211, 102, 0.15);
    color: var(--wa-green);
    animation: statusPulse 1.5s infinite alternate;
}

@keyframes statusPulse {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

/* Dashboard App Layout */
.app-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    flex-grow: 1;
    overflow: hidden;
}

.dashboard-panel {
    background-color: #12131a;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

.dashboard-panel h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
}

/* Simulator Steps */
.simulator-step {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.active .step-num {
    background-color: var(--wa-green);
    color: #000;
}

.step-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.step-title {
    font-size: 0.78rem;
    font-weight: 600;
}

.step-desc {
    font-size: 0.68rem;
    color: var(--text-secondary);
}

.step-action {
    margin-left: auto;
}

.sim-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sim-btn:hover:not(:disabled) {
    background-color: var(--text-primary);
    color: #000;
}

.sim-btn.btn-green {
    background-color: var(--wa-green);
    color: #000;
    border-color: var(--wa-green);
}

.sim-btn.btn-green:hover:not(:disabled) {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

.sim-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.sim-textarea {
    width: 100%;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.65rem;
    padding: 0.4rem;
    resize: none;
    outline: none;
    margin-top: 0.4rem;
}

/* Right Panel Queue Simulator */
.panel-header-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.5rem;
}

.panel-header-tabs .tab {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding-right: 1rem;
    cursor: pointer;
}

.panel-header-tabs .tab.active {
    color: var(--wa-green);
    font-weight: 600;
}

.campaign-progress-bar-container {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.progress-bar-track {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background-color: var(--wa-green);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.table-container {
    flex-grow: 1;
    overflow-y: auto;
}

.sim-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72rem;
    text-align: left;
}

.sim-table th {
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sim-table td {
    padding: 0.5rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.sim-table tr.empty-row td {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem 0;
    font-style: italic;
}

.sim-status {
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.62rem;
    font-weight: 600;
}

.sim-status.pending {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.sim-status.sent {
    background-color: rgba(37, 211, 102, 0.12);
    color: var(--wa-green);
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2.2rem 2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(300px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(37, 211, 102, 0.08), transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-glow);
    background-color: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 211, 102, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    color: var(--wa-green);
    background-color: rgba(37, 211, 102, 0.08);
    border-color: var(--border-color-glow);
}

.glow-green {
    filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.15));
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline Layout */
.timeline-section {
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--border-color), var(--wa-green), var(--border-color));
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0b0c10;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 10;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-badge {
    border-color: var(--wa-green);
    background-color: var(--wa-green);
    color: #000;
    box-shadow: 0 0 15px var(--wa-green-glow);
}

.timeline-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    width: 88%;
    max-width: 360px;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.timeline-item:hover .timeline-content {
    border-color: var(--border-color-glow);
    background-color: var(--bg-card-hover);
    transform: translateY(-3px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 2.5rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 2.5rem;
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Comparison Table */
.comparison-section {
    position: relative;
}

.comparison-table-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    overflow-x: auto;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

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

.comparison-table th {
    padding: 1.5rem 1rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
    padding: 1.25rem 1rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

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

.comparison-table .highlight-column {
    background-color: rgba(37, 211, 102, 0.04);
    border-left: 1px solid var(--border-color-glow);
    border-right: 1px solid var(--border-color-glow);
    text-align: center;
    color: var(--wa-green);
    font-weight: 600;
}

.comparison-table th.highlight-column {
    font-size: 1.15rem;
}

.comparison-table td.feat-name {
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table td.feat-us {
    text-align: center;
    font-weight: 600;
    background-color: rgba(37, 211, 102, 0.04);
    border-left: 1px solid var(--border-color-glow);
    border-right: 1px solid var(--border-color-glow);
}

.comparison-table td.feat-them {
    color: var(--text-secondary);
    opacity: 0.75;
}

.text-green {
    color: var(--wa-green);
}

.text-red {
    color: #FF4D4D;
}

/* Stats Counter Grid */
.stats-section {
    background: linear-gradient(to right, rgba(37, 211, 102, 0.03), rgba(255, 215, 0, 0.01));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card:nth-child(1) .stat-number::after { content: 'K+'; color: var(--wa-green); }
.stat-card:nth-child(2) .stat-number::after { content: 'K+'; color: var(--wa-green); }
.stat-card:nth-child(3) .stat-number::after { content: '%'; color: var(--wa-green); }
.stat-card:nth-child(4) .stat-number::after { content: '/7'; color: var(--wa-green); }

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Screenshots Gallery Grid */
.gallery-section {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 11;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow) ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Pricing Card Component */
.pricing-section {
    position: relative;
}

.pricing-card-wrapper {
    max-width: 540px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 2px solid rgba(255, 215, 0, 0.25);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.08);
    backdrop-filter: blur(15px);
    transition: var(--transition-normal);
}

.pricing-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 215, 0, 0.15);
    transform: translateY(-5px);
}

.pricing-badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.license-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 1.5rem 0 0.5rem 0;
}

.price-container .currency {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-right: 0.15rem;
}

.price-container .amount {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-container .frequency {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
    font-weight: 500;
}

.no-monthly {
    font-size: 0.85rem;
    color: var(--wa-green);
    font-weight: 600;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2.5rem;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.check-icon {
    color: var(--wa-green);
    font-weight: 700;
}

.pricing-footer {
    text-align: center;
}

.btn-pricing {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.pricing-guarantees {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Testimonials Card layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--border-color-glow);
    background-color: var(--bg-card-hover);
    transform: translateY(-3px);
}

.stars-row {
    color: var(--gold);
    font-size: 0.95rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.avatar-1 { background: linear-gradient(135deg, #128C7E, #25D366); }
.avatar-2 { background: linear-gradient(135deg, #cc9900, #FFD700); }
.avatar-3 { background: linear-gradient(135deg, #3b5998, #8b9dc3); }

.user-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.user-info p {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* FAQ Accordion Component */
.faq-accordion-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    outline: none;
}

.faq-icon-arrow {
    font-size: 1.4rem;
    color: var(--wa-green);
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq-item.active {
    border-color: var(--border-color-glow);
    background-color: var(--bg-card-hover);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(45deg);
}

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

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final Call To Action Banner */
.final-cta-section {
    position: relative;
    text-align: center;
}

.cta-container {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(255, 215, 0, 0.02) 100%);
    border: 1px solid var(--border-color-glow);
    padding: 5rem 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.cta-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 620px;
    margin: 0 auto 2.5rem auto;
}

.cta-price-tag {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.btn-cta {
    padding: 1.1rem 3.5rem;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Footer Section Styles */
.footer {
    background-color: #030303;
    border-top: 1px solid var(--border-color);
    padding: 6rem 0 2rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 280px;
}

.trust-icons {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--wa-green);
}

.contact-email {
    font-weight: 600;
    color: var(--text-primary);
}

.social-row {
    display: flex;
    gap: 1rem;
    font-size: 1.1rem;
}

.social-icon {
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2rem;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.disclaimer {
    max-width: 500px;
    line-height: 1.4;
}

/* Floating Elements UI Components */
.floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-btn.active {
    opacity: 1;
    pointer-events: auto;
}

.floating-btn:hover {
    background-color: var(--wa-green);
    border-color: var(--wa-green);
    color: #000;
    transform: translateY(-3px);
}

/* Floating WA Chat Support Widget */
.floating-wa-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 900;
}

.wa-widget-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #25D366;
    border: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.wa-widget-btn:hover {
    transform: scale(1.08);
}

.wa-btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #25D366;
    animation: waPulse 1.8s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.wa-chat-window {
    position: absolute;
    bottom: 65px;
    left: 0;
    width: 320px;
    background-color: #0f1015;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.wa-chat-window.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.chat-header {
    background-color: #0b0c0e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-avatar-status {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.chat-status-info h4 {
    font-size: 0.88rem;
    line-height: 1.2;
}

.status-online {
    font-size: 0.68rem;
    color: var(--wa-green);
    font-weight: 500;
}

.chat-close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
}

.chat-body {
    height: 240px;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background-color: rgba(0,0,0,0.2);
}

.chat-msg {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    font-size: 0.82rem;
    line-height: 1.4;
    position: relative;
}

.system-msg {
    background-color: rgba(255,255,255,0.04);
    color: var(--text-primary);
    border-bottom-left-radius: 2px;
    align-self: flex-start;
}

.user-msg {
    background-color: var(--wa-green-dark);
    color: #fff;
    border-bottom-right-radius: 2px;
    align-self: flex-end;
}

.chat-time {
    display: block;
    font-size: 0.6rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.25rem;
}

.chat-footer {
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.04);
    background-color: #0b0c0e;
}

.chat-footer input {
    flex-grow: 1;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    padding: 0.9rem 1rem;
    outline: none;
}

.chat-footer button {
    background: none;
    border: none;
    color: var(--wa-green);
    font-size: 1rem;
    padding: 0 1rem;
    cursor: pointer;
}

/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-color);
    z-index: 850;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.5);
}

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

.sticky-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.sticky-price {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 700;
}

.old-price {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 0.25rem;
}

.sticky-cta-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.88rem;
}

/* JS Scroll Reveal Animations (AOS style) */
.scroll-reveal {
    opacity: 0;
    transition: opacity var(--transition-slow) ease, transform var(--transition-slow) ease;
}

.scroll-reveal.fade-up {
    transform: translateY(30px);
}

.scroll-reveal.zoom-in {
    transform: scale(0.95);
}

.scroll-reveal.slide-left {
    transform: translateX(-40px);
}

.scroll-reveal.slide-right {
    transform: translateX(40px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsiveness Adaptations */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-tags, .hero-buttons, .price-badge-container {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        padding-right: 0;
        padding-left: 70px;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 70px;
    }
    
    .timeline-badge {
        left: 30px;
    }
    
    .timeline-content {
        width: 100%;
        max-width: 100%;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .app-sidebar {
        display: none;
    }
    
    .app-main {
        width: 100%;
    }
    
    .mobile-sticky-cta {
        display: flex;
    }
    
    .floating-btn {
        bottom: 70px; /* Make space for sticky bar */
    }
    
    .floating-wa-widget {
        bottom: 70px; /* Make space for sticky bar */
    }
    
    .hero-wa-logo {
        width: 120px;
        height: 120px;
    }
    
    .pricing-card {
        padding: 2.5rem 1.8rem;
    }
    
    .pricing-card .price-container .amount {
        font-size: 4rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .app-dashboard-grid {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        padding: 3rem 1.5rem;
    }
    
    .cta-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}
