/* ==========================================================================
   Nyxora Services - Stylesheet (Vanilla CSS)
   ========================================================================== */

/* Design Variables */
:root {
    --bg-dark: #09090b;
    --bg-card: rgba(24, 24, 27, 0.65);
    --border-color: rgba(63, 63, 70, 0.4);
    --border-glow: rgba(139, 92, 246, 0.3);
    
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --accent-purple: #8b5cf6;
    --accent-indigo: #6366f1;
    --accent-violet: #a78bfa;
    --accent-cyan: #22d3ee;
    --accent-green: #34d399;
    --accent-red: #f87171;
    
    --gradient-primary: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-indigo) 100%);
    --gradient-glow: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Glow Overlays */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow 12s infinite alternate ease-in-out;
}

.bg-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    top: -100px;
    right: -100px;
}

.bg-glow-2 {
    width: 600px;
    height: 600px;
    background: var(--accent-indigo);
    top: 40%;
    left: -200px;
    animation-delay: -3s;
}

.bg-glow-3 {
    width: 450px;
    height: 450px;
    background: var(--accent-cyan);
    bottom: -100px;
    right: 10%;
    animation-delay: -6s;
}

@keyframes pulseGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 30px) scale(1.15);
    }
}

/* Common Typography & Accents */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent-violet) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header & Navigation */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(9, 9, 11, 0.7);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--accent-violet);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-violet);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px 0;
    text-align: center;
    position: relative;
}

.hero-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--accent-violet);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 650px;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
}

/* Section Common Layouts */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 5;
}

.section-tag {
    color: var(--accent-purple);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

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

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

/* Services Hub Layout */
.services-section {
    padding: 80px 0;
}

.services-hub {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Sidebar Tabs Navigation */
.services-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid transparent;
    padding: 0.9rem 1.25rem;
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.tab-btn.active {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--accent-violet);
    box-shadow: inset 0 0 12px rgba(139, 92, 246, 0.05);
}

.tab-icon {
    font-size: 1.15rem;
}

/* Tab Panels Content */
.services-content-wrapper {
    min-height: 420px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tab-panel.active {
    display: block;
}

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

.panel-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.panel-icon-glow {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.panel-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.panel-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.panel-features {
    list-style: none;
    margin-bottom: 2rem;
}

.panel-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.panel-features li strong {
    color: var(--text-primary);
}

.panel-features li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-violet);
}

.panel-cta {
    display: inline-flex;
}

/* Panel Visual Area & Mockups */
.panel-visual {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 320px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
}

/* Terminal Mockup */
.mock-terminal {
    width: 100%;
    height: 100%;
    background: #0d0e15;
    border: 1px solid #1f2130;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    font-family: monospace;
    font-size: 0.8rem;
    text-align: left;
}

.terminal-header {
    height: 32px;
    background: #151722;
    border-bottom: 1px solid #1f2130;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    gap: 0.4rem;
}

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

.dot.red { background: var(--accent-red); }
.dot.yellow { background: #fbbf24; }
.dot.green { background: var(--accent-green); }

.terminal-title {
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    overflow-y: auto;
}

.t-green { color: var(--accent-green); }
.t-white { color: var(--text-primary); }
.t-cyan { color: var(--accent-cyan); }
.t-yellow { color: #fbbf24; }

/* Email Mockup */
.mock-card-display {
    width: 100%;
}

.email-mockup {
    background: #18181b;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    overflow: hidden;
    text-align: left;
}

.email-hdr {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.email-body {
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-text {
    border-left: 2px solid var(--accent-violet);
    padding-left: 0.5rem;
    background: rgba(139, 92, 246, 0.05);
    color: var(--text-primary);
}

/* Stats Mockup */
.mock-stats-display {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.stat-card {
    background: #18181b;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.stat-value {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.stat-trend {
    font-size: 0.75rem;
    font-weight: 600;
}

.stat-trend.up { color: var(--accent-green); }

.stat-sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Notification Mockup */
.mock-notification {
    background: #18181b;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-red);
    border-radius: 8px;
    width: 100%;
    padding: 1rem;
    text-align: left;
}

.notif-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.notif-time {
    color: var(--text-muted);
}

.notif-body {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.diff-del { color: var(--accent-red); text-decoration: line-through; }
.diff-add { color: var(--accent-green); }

/* Document Mockup */
.mock-document {
    background: #1c1917;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    padding: 1.25rem;
    text-align: left;
}

.doc-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}

.doc-meta {
    font-size: 0.75rem;
    color: var(--accent-violet);
    margin-bottom: 1rem;
}

.skeleton-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 0.6rem;
}

.skeleton-line.full { width: 100%; }
.skeleton-line.partial { width: 70%; }

.doc-stat-callout {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-color);
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-primary);
}

/* Flowchart Mockup */
.mock-flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.flow-step {
    background: #18181b;
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    width: 80%;
}

.flow-step.highlight {
    border-color: var(--accent-violet);
    background: rgba(139, 92, 246, 0.08);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.flow-arrow {
    color: var(--accent-violet);
    font-size: 1.2rem;
}

/* Newsletter Mockup */
.mock-newsletter {
    background: #18181b;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    padding: 1.25rem;
    text-align: left;
}

.news-header {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-cyan);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.news-item {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-date {
    color: var(--text-muted);
    font-weight: 700;
    margin-right: 0.25rem;
}

/* Pricing Section Toggle & Cards Styling */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

.pricing-toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-top: 1.5rem;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.toggle-label.active {
    color: var(--text-primary);
}

.badge-save {
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: var(--accent-green);
    font-size: 0.75rem;
    padding: 0.1rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
    margin-left: 0.25rem;
}

.pricing-toggle-btn {
    width: 50px;
    height: 26px;
    border-radius: 50px;
    background: #27272a;
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background var(--transition-fast);
}

.toggle-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-violet);
    position: absolute;
    top: 3px;
    left: 4px;
    transition: transform var(--transition-fast);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

.pricing-toggle-btn.active .toggle-circle {
    transform: translateX(22px);
    background: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
}

/* Pricing Grid & Card */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.highlighted {
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.03);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.pricing-card.highlighted:hover {
    border-color: var(--accent-violet);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.card-plan-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-plan-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-height: 48px;
    margin-bottom: 1.5rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.price-display .currency {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-display .price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.price-display .period {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.card-plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.card-plan-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.card-plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.card-plan-btn {
    width: 100%;
}

/* Interactive Calculator Section */
.calculator-section {
    padding: 80px 0;
}

.calculator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.slider-val-display {
    color: var(--accent-violet);
    font-weight: 700;
}

/* Custom Styled Range Sliders */
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 10px;
    background: #27272a;
    outline: none;
    transition: background 0.15s ease-in-out;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-violet);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
    transition: transform 0.1s;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-violet);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
    transition: transform 0.1s;
    border: none;
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.calc-output-group {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.output-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.output-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.output-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

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

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--transition-normal);
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-violet);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.process-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    transition: color var(--transition-normal);
}

.process-card:hover .process-num {
    color: rgba(139, 92, 246, 0.08);
}

.process-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.process-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Contact / Inbound Lead Section */
.contact-section {
    padding: 100px 0 140px 0;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.contact-desc {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.contact-icon {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Forms Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

/* Stylized Dropdown */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-status {
    font-size: 0.85rem;
    text-align: center;
}

.form-status.success { color: var(--accent-green); }
.form-status.error { color: var(--accent-red); }

/* Footer Styling */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #060608;
    padding: 2.5rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
}

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

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .services-hub {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .services-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .tab-btn {
        white-space: nowrap;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .nav {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-visual {
        height: 280px;
        order: -1;
    }
    
    .container {
        padding: 0 1.25rem;
    }
}

/* ==========================================================================
   Yearly Billing Display & Demo Modal Extensions
   ========================================================================== */

.price-display-wrapper {
    margin-bottom: 2rem;
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.price-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-height: 28px;
    display: flex;
    align-items: center;
    transition: opacity var(--transition-fast);
}

.price-subtext .equivalent-pill {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--accent-violet);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.05);
}

.view-demo-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--accent-cyan);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0 auto 1.25rem auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
    width: 100%;
}

.view-demo-btn:hover {
    color: var(--text-primary);
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.04);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.1);
    transform: translateY(-1px);
}

/* Demo Modal Styling */
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.demo-modal.active {
    opacity: 1;
    pointer-events: all;
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.demo-modal-container {
    position: relative;
    background: rgba(20, 20, 25, 0.98);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2);
    z-index: 1010;
    transform: scale(0.95);
    transition: transform var(--transition-normal);
    overflow: hidden;
}

.demo-modal.active .demo-modal-container {
    transform: scale(1);
}

.demo-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}

.demo-modal-close:hover {
    color: var(--accent-red);
}

.demo-modal-header {
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.demo-modal-tag {
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.demo-modal-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.demo-modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.demo-modal-body {
    padding: 2.5rem;
    overflow-y: auto;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Styled Content elements inside the Modal */
.demo-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    width: 100%;
}

.demo-table {
    width: 100%;
    min-width: 950px;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.85rem;
}

.demo-table th {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

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

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

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

.demo-email-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.demo-email-meta {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.demo-email-meta div {
    margin-bottom: 0.25rem;
}

.demo-email-meta strong {
    color: var(--text-primary);
}

.demo-email-body {
    white-space: pre-line;
    font-size: 0.9rem;
}

.demo-email-body blockquote {
    border-left: 2px solid var(--accent-violet);
    padding-left: 1rem;
    margin: 1rem 0;
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.03);
    padding: 0.75rem 1rem;
    border-radius: 4px;
}

.demo-strategy-section {
    margin-bottom: 1.5rem;
}

.demo-strategy-section h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.demo-strategy-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.demo-strategy-box strong {
    color: var(--text-primary);
}

.demo-diff-block {
    background: #0d0e15;
    border: 1px solid #1f2130;
    border-radius: 8px;
    padding: 1.25rem;
    font-family: monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 1rem 0;
    overflow-x: auto;
}

.demo-diff-line {
    display: block;
}

.demo-diff-add {
    color: var(--accent-green);
    background: rgba(52, 211, 153, 0.08);
}

.demo-diff-del {
    color: var(--accent-red);
    background: rgba(248, 113, 113, 0.08);
    text-decoration: line-through;
}

.demo-report-point {
    margin-bottom: 1.25rem;
}

.demo-report-point h4 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.demo-report-point p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Modal responsive mobile styling override */
@media (max-width: 768px) {
    .demo-modal-container {
        width: 95%;
        max-height: 90vh;
    }
    
    .demo-modal-header, .demo-modal-body {
        padding: 1.5rem;
    }
    
    .demo-modal-title {
        font-size: 1.4rem;
    }
}
