/* import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --bg-main: #09090b;
    --bg-card: rgba(22, 22, 26, 0.65);
    --bg-card-hover: rgba(30, 30, 38, 0.8);
    --border-color: rgba(212, 175, 55, 0.15);
    --border-glow: rgba(212, 175, 55, 0.3);
    
    --primary: #d4af37; /* Bronze Gold */
    --primary-hover: #e5c158;
    --primary-rgb: 212, 175, 55;
    
    --secondary: #e8c5c8; /* Rose/Champagne */
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --text-dark: #09090b;
    
    --success: #10b981;
    --success-light: rgba(16, 185, 129, 0.1);
    
    --font-title: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* Background Gradients & Glows */
.ambient-glow-1 {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.ambient-glow-2 {
    position: absolute;
    top: 40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 197, 200, 0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

/* Typography */
h1, h2, h3, .title-font {
    font-family: var(--font-title);
    font-weight: 500;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
}

.logo-icon {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    align-self: flex-start;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.1); border-color: rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); border-color: rgba(212, 175, 55, 0.5); }
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    color: var(--text-main);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Premium Buttons */
.btn {
    padding: 1rem 2.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #b89327 100%);
    color: var(--text-dark);
    box-shadow: 0 8px 24px -6px rgba(212, 175, 55, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -4px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

/* Dashboard Mockup (Right Side Hero) */
.hero-visual {
    position: relative;
    width: 100%;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.mock-dashboard {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #111115;
    padding: 1.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: var(--transition-smooth);
}

.mock-dashboard:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
    margin-bottom: 1.2rem;
}

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

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
}
.mock-dot:nth-child(2) { background: #ffbd2e; }
.mock-dot:nth-child(3) { background: #27c93f; }

.mock-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.mock-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.mock-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Scheduler Simulator Inside Hero & Sections */
.schedule-widget {
    background: rgba(18, 18, 22, 0.9);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-header {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-time-indicator {
    font-size: 0.75rem;
    background: rgba(212, 175, 55, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

.services-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
}

.service-btn:hover, .service-btn.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary);
    color: var(--text-main);
}

.timeline {
    position: relative;
    border-left: 2px solid rgba(255, 255, 255, 0.05);
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.timeline-slot {
    position: relative;
    min-height: 48px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.8rem;
    border: 1px dashed rgba(255, 255, 255, 0.05);
}

.timeline-time {
    position: absolute;
    left: -2.3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.timeline-slot.filled {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 3px solid var(--primary);
}

.slot-title {
    font-weight: 600;
    color: var(--text-main);
}

.slot-duration {
    font-size: 0.7rem;
    color: var(--primary);
    margin-top: 0.1rem;
}

/* Sections Setup */
section {
    padding: 8rem 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    line-height: 1.2;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    font-size: 1.1rem;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

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

/* Before & After Section */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.compare-card {
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.compare-card.before {
    background: rgba(239, 68, 68, 0.02);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.compare-card.after {
    background: rgba(16, 185, 129, 0.02);
    border: 1px solid rgba(16, 185, 129, 0.15);
    box-shadow: 0 20px 40px -15px rgba(16, 185, 129, 0.05);
}

.compare-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
}

.compare-card.before .compare-badge {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.compare-card.after .compare-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.compare-card h3 {
    font-size: 1.8rem;
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.compare-item-icon {
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.compare-card.before .compare-item-icon { color: #ef4444; }
.compare-card.after .compare-item-icon { color: #10b981; }

.compare-item-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.compare-item-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Tab/Interactive Section (CRM Showcase) */
.showcase-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.showcase-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-tab {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: var(--transition-smooth);
}

.showcase-tab:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(212, 175, 55, 0.2);
}

.showcase-tab.active {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--primary);
    box-shadow: 0 10px 25px -10px rgba(212, 175, 55, 0.15);
}

.showcase-tab-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.showcase-tab.active .showcase-tab-icon {
    background: var(--primary);
    color: var(--text-dark);
}

.showcase-tab-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.showcase-tab-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Interactive Display Panels */
.showcase-display {
    position: relative;
    min-height: 480px;
}

.display-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.display-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    position: relative;
}

/* Interactive Panel 1: Advanced Scheduler Simulator */
.panel-scheduler-widget {
    background: #111115;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: var(--shadow-premium);
}

.scheduler-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.scheduler-meta-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    gap: 1.5rem;
}

.scheduler-meta-info span strong {
    color: var(--primary);
}

.scheduler-select-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scheduler-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.service-card-select {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}

.service-card-select:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card-select.active {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--primary);
}

.service-card-icon {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.service-card-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

.service-card-duration {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 500;
}

.scheduler-visual-timeline {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.scheduler-timeline-slots {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* Interactive Panel 2: WhatsApp Simulator */
.smartphone-container {
    max-width: 320px;
    margin: 0 auto;
    background: #000000;
    border: 10px solid #222225;
    border-radius: 36px;
    height: 520px;
    position: relative;
    box-shadow: var(--shadow-premium), 0 0 0 2px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.smartphone-speaker {
    width: 80px;
    height: 18px;
    background: #222225;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.whatsapp-header {
    background: #075e54;
    padding: 1.5rem 1rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.whatsapp-back {
    color: #fff;
    font-size: 0.9rem;
}

.whatsapp-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    color: #000;
}

.whatsapp-info {
    flex-grow: 1;
}

.whatsapp-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.whatsapp-status {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
}

.whatsapp-body {
    flex-grow: 1;
    background: #efeae2; /* classic whatsapp background */
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.whatsapp-bubble {
    max-width: 85%;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    font-size: 0.75rem;
    line-height: 1.4;
    position: relative;
    animation: bubblePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

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

.whatsapp-bubble.received {
    background: #ffffff;
    align-self: flex-start;
    color: #303030;
    border-top-left-radius: 0;
}

.whatsapp-bubble.sent {
    background: #d9fdd3;
    align-self: flex-end;
    color: #303030;
    border-top-right-radius: 0;
}

.whatsapp-time {
    font-size: 0.6rem;
    color: #8696a0;
    text-align: right;
    margin-top: 0.2rem;
    display: block;
}

.whatsapp-links {
    margin-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.whatsapp-link {
    color: #027eb5;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.whatsapp-footer {
    background: #f0f2f5;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-input-mock {
    flex-grow: 1;
    background: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #8696a0;
}

.whatsapp-send-mock {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #00a884;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
}

.whatsapp-controls {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.whatsapp-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.whatsapp-btn.active {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
    font-weight: 600;
}

/* Interactive Panel 3: E-commerce Catalog Showcase */
.ecommerce-showcase {
    background: #111115;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--shadow-premium);
}

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

.ecommerce-header h4 {
    font-size: 1.2rem;
    font-family: var(--font-title);
    color: var(--primary);
}

.cart-icon-mock {
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-badge {
    background: var(--primary);
    color: var(--text-dark);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: bold;
}

.ecommerce-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.product-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.product-image-placeholder {
    height: 120px;
    background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(232,197,200,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image-placeholder img {
    transform: scale(1.08);
    opacity: 0.95;
}

.product-image-placeholder span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    position: absolute;
    z-index: 1;
}

.product-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.product-info {
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
}

.product-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

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

.product-buy-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    padding: 0.4rem;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    transition: var(--transition-smooth);
    margin-top: 0.4rem;
}

.product-buy-btn:hover {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
}

/* E-commerce Upsell Notification Simulator */
.ecommerce-upsell-notif {
    background: rgba(16, 185, 129, 0.05);
    border: 1px dashed rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
}

.upsell-icon {
    font-size: 1.2rem;
    color: #10b981;
}

.upsell-text strong {
    color: var(--text-main);
}

/* Interactive ROI Calculator Section */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.calculator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: var(--shadow-premium);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
}

.input-group label span {
    color: var(--primary);
}

.input-group input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
    transition: var(--transition-smooth);
}

.input-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calculator-results {
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.result-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.result-val {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-title);
    text-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.2);
}

.result-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 320px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(22, 22, 26, 0.9) 0%, rgba(12, 12, 14, 0.95) 100%);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(var(--primary-rgb), 0.15);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(0,0,0,0) 70%);
    filter: blur(20px);
}

.pricing-popular-badge {
    position: absolute;
    top: 2rem;
    right: -2rem;
    background: var(--primary);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 3rem;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pricing-prices {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-main {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.price-main span {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
}

.price-monthly {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.price-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.pricing-feature-icon {
    color: var(--primary);
    font-size: 1.1rem;
}

.pricing-cta {
    width: 100%;
}

/* FAQ Section */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

.faq-icon {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    color: var(--primary);
}

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

/* Call To Action Banner (Bottom) */
.cta-banner-section {
    padding: 4rem 5% 8rem;
}

.cta-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(232, 197, 200, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.cta-banner h2 {
    font-size: 3rem;
    max-width: 700px;
    line-height: 1.2;
}

.cta-banner p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 5% 2rem;
    background: #060608;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

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

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .mock-dashboard {
        transform: none;
    }
    
    .mock-dashboard:hover {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .compare-card {
        padding: 2rem;
    }
    
    .scheduler-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ecommerce-products {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 3rem 1.5rem;
    }
    
    .cta-banner {
        padding: 3rem 1.5rem;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
