/* Custom CSS Styles for MartMower AI Landing Page */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Variables */
:root {
    --bg-dark: #08080c;
    --bg-slate: #0f1016;
    --bg-card: #141520;
    --border-color: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(0, 230, 118, 0.2);
    
    --primary: #00e676; /* WhatsApp Emerald */
    --primary-hover: #00c853;
    --primary-glow: rgba(0, 230, 118, 0.35);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --glow-violet: rgba(124, 58, 237, 0.15);
    --glow-emerald: rgba(0, 230, 118, 0.1);
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

button {
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}

/* Global Glowing Backgrounds */
.glow-backdrop {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.glow-top-left {
    top: -10%;
    left: -10%;
    background: var(--glow-emerald);
}

.glow-center-right {
    top: 40%;
    right: -10%;
    background: var(--glow-violet);
}

.glow-bottom-left {
    bottom: 5%;
    left: -15%;
    background: var(--glow-emerald);
}

/* Utility Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Navigation Bar */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 8, 12, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(8, 8, 12, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

.logo-block {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text span {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

.logo-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: -2px;
}

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

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

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

/* CTA Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00b0ff 100%);
    background-size: 200% auto;
    color: #022c22;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-position: right center;
    box-shadow: 0 6px 25px rgba(0, 230, 118, 0.5);
}

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

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

.btn-whatsapp-outline {
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-whatsapp-outline:hover {
    background: var(--primary);
    color: #022c22;
    box-shadow: 0 4px 20px var(--primary-glow);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-cols: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid var(--border-glow);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 30%, #e2e8f0 70%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.direct-contact-row {
    font-size: 0.85rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.direct-contact-row a {
    color: var(--text-muted);
    font-weight: 500;
    text-decoration: underline;
}

.direct-contact-row a:hover {
    color: var(--primary);
}

/* Dashboard Mockup Visual */
.hero-visual {
    position: relative;
    width: 100%;
    perspective: 1000px;
}

.dashboard-wrapper {
    position: relative;
    background: radial-gradient(120% 120% at 50% 10%, rgba(20, 21, 32, 0.4) 0%, rgba(8, 8, 12, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8),
                0 0 50px -10px rgba(0, 230, 118, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.dashboard-card {
    background: var(--bg-slate);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    overflow: hidden;
    position: relative;
}

.card-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

/* Scraper Card Styling */
.scraper-card {
    grid-column: span 1;
}

.scraping-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 0.4rem;
    transition: all 0.3s;
}

.scraping-item.new-item {
    animation: fade-slide-in 0.5s ease backwards;
}

@keyframes fade-slide-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.scraping-item span {
    font-family: monospace;
}

.scraping-item .success-badge {
    color: var(--primary);
    background: rgba(0, 230, 118, 0.1);
    padding: 1px 4px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: bold;
}

.scraper-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 1rem;
    overflow: hidden;
}

.scraper-progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--primary) 0%, #00b0ff 100%);
    border-radius: 10px;
    animation: progress-slide 2.5s infinite linear;
}

@keyframes progress-slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(150%); }
}

/* AI Filter Card */
.filter-card {
    grid-column: span 1;
}

.ai-pipeline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 105px;
    justify-content: center;
}

.pipeline-node {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.pipeline-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #a78bfa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

.pipeline-icon.done {
    background: rgba(0, 230, 118, 0.1);
    border-color: rgba(0, 230, 118, 0.3);
    color: var(--primary);
}

.pipeline-icon.spin {
    animation: rotate-spin 2s infinite linear;
}

@keyframes rotate-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pipeline-line {
    width: 2px;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    margin-left: 9px;
}

.pipeline-line.active {
    background: linear-gradient(180deg, var(--primary) 0%, rgba(124, 58, 237, 0.5) 100%);
}

/* WhatsApp Mobile Preview Card */
.whatsapp-mobile-mock {
    grid-column: span 2;
    background: #0b141a; /* WhatsApp Dark Mode Background */
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    height: 190px;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.5rem;
}

.avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #202c33;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aebac1;
    font-size: 0.65rem;
    font-weight: bold;
}

.chat-contact {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #e9edef;
}

.chat-status {
    font-size: 0.55rem;
    color: #8696a0;
}

.chat-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: hidden;
    padding-right: 0.25rem;
}

.chat-bubble {
    max-width: 85%;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    font-size: 0.7rem;
    line-height: 1.4;
    position: relative;
    animation: chat-popup 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}

@keyframes chat-popup {
    from { opacity: 0; transform: scale(0.9) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.bubble-received {
    align-self: flex-start;
    background: #202c33;
    color: #e9edef;
    border-top-left-radius: 0;
}

.bubble-sent {
    align-self: flex-end;
    background: #005c4b; /* WhatsApp Green Sent Bubble */
    color: #e9edef;
    border-top-right-radius: 0;
}

.chat-time {
    display: block;
    text-align: right;
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.2rem;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(20, 21, 32, 0.9);
    border: 1px solid var(--border-glow);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 20;
    backdrop-filter: blur(5px);
}

.badge-extract {
    top: -20px;
    left: -30px;
    animation: float-slow 4s ease-in-out infinite alternate;
}

.badge-leads {
    bottom: -15px;
    right: -20px;
    animation: float-slow 4.5s ease-in-out infinite alternate-reverse;
}

@keyframes float-slow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* Scroll Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Common Styling */
section {
    padding: 6rem 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 40%, #e2e8f0 70%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Comparison Section */
.comparison-container {
    background: var(--bg-slate);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.table-responsive {
    overflow-x: auto;
}

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

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

.comparison-table th {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.comparison-table td {
    font-size: 0.95rem;
}

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

.comparison-table th.col-feature { width: 30%; }
.comparison-table th.col-mart { 
    width: 35%;
    background: rgba(0, 230, 118, 0.03); 
    border-left: 1px solid rgba(0, 230, 118, 0.1);
    border-right: 1px solid rgba(0, 230, 118, 0.1);
}
.comparison-table th.col-other { width: 35%; }

.comparison-table td.col-mart-val {
    background: rgba(0, 230, 118, 0.02);
    border-left: 1px solid rgba(0, 230, 118, 0.15);
    border-right: 1px solid rgba(0, 230, 118, 0.15);
    font-weight: 600;
    color: var(--text-main);
}

.comparison-table td.col-other-val {
    color: var(--text-dim);
}

.table-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-check {
    color: var(--primary);
}

.status-cross {
    color: #ef4444;
}

/* Feature Cards Section */
.features-grid {
    display: grid;
    grid-template-cols: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(20, 21, 32, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    background: rgba(20, 21, 32, 0.9);
    box-shadow: 0 15px 35px -10px rgba(0, 230, 118, 0.1);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: #022c22;
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--primary-glow);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

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

/* ROI Calculator / Value Prop Section */
.value-prop {
    background-color: var(--bg-slate);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.value-grid {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.calculator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    position: relative;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #00b0ff 100%);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.calc-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calc-input-group {
    margin-bottom: 2rem;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.calc-value-display {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.range-slider-wrapper {
    position: relative;
    width: 100%;
}

input[type=range].calc-slider {
    -webkit-appearance: none;
    width: 100%;
    background: #1e293b;
    height: 8px;
    border-radius: 4px;
    outline: none;
}

input[type=range].calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: transform 0.1s;
}

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

/* ROI Results Display */
.calc-results-grid {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.result-box {
    display: flex;
    flex-direction: column;
}

.result-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
}

.result-val {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
}

.result-val.primary-val {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
}

.calc-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.4;
    text-align: center;
}

/* How It Works Section */
.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(255,255,255,0.02) 100%);
    z-index: 0;
}

.step-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-slate);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.step-item:hover .step-num {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.05);
}

.step-content {
    padding-top: 1rem;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Ultimate CTA Block */
.ultimate-cta {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: radial-gradient(100% 200% at 50% 0%, rgba(20, 21, 32, 0.8) 0%, rgba(8, 8, 12, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, rgba(0,0,0,0) 70%);
    filter: blur(50px);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-box p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.cta-subtext a {
    color: var(--text-muted);
    text-decoration: underline;
}

.cta-subtext a:hover {
    color: var(--primary);
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0;
    background: #050508;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

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

.footer-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    color: var(--text-main);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-cols: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .direct-contact-row {
        justify-content: center;
    }
    
    .value-grid {
        grid-template-cols: 1fr;
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-cols: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        position: relative;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border-color);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-cols: 1fr;
    }
    
    .steps-timeline::before {
        left: 20px;
    }
    
    .step-item {
        gap: 1.5rem;
    }
    
    .step-num {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
    
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Excel Spreadsheet Preview Styles */
.excel-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.excel-card {
    background: #0a0b12;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(0, 230, 118, 0.02);
}

.excel-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.excel-title-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.excel-badge {
    background: rgba(0, 230, 118, 0.08);
    color: var(--primary);
    border: 1px solid var(--border-glow);
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.excel-download-btn {
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.excel-download-btn:hover {
    background: var(--primary);
    color: #022c22;
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-1px);
}

.excel-table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #0f1017;
}

.excel-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    text-align: left;
    white-space: nowrap;
}

.excel-table th {
    background: #151622;
    color: var(--text-muted);
    font-weight: 600;
    padding: 0.85rem 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-heading);
}

.excel-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    color: #cbd5e1;
}

.excel-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.01);
}

.excel-table tbody tr:hover {
    background: rgba(0, 230, 118, 0.03);
}

.excel-table td.col-phone {
    font-family: monospace;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.excel-table td.col-date {
    font-family: monospace;
    color: #a78bfa;
}

/* Blog Styles */
.blog-post {
    padding: 6rem 0;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.blog-back-btn:hover {
    color: var(--primary);
}

.blog-header {
    margin-bottom: 3.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h2 {
    font-size: 1.85rem;
    margin: 3rem 0 1.25rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin: 2.25rem 0 1rem;
    color: var(--text-main);
}

.blog-content ul, .blog-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.75rem;
}

.blog-content blockquote {
    border-left: 4px solid var(--primary);
    background: rgba(0, 230, 118, 0.03);
    padding: 1.25rem 1.75rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #e2e8f0;
    border-radius: 0 8px 8px 0;
    border-top: 1px solid rgba(0, 230, 118, 0.05);
    border-bottom: 1px solid rgba(0, 230, 118, 0.05);
    border-right: 1px solid rgba(0, 230, 118, 0.05);
}

.blog-cta-box {
    margin-top: 5rem;
    padding: 4rem 3rem;
    background: radial-gradient(100% 100% at 50% 0%, rgba(20, 21, 32, 0.7) 0%, rgba(8, 8, 12, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.blog-cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-cta-box p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
