/*
Theme Name: ViewCounter
Theme URI: https://view-counter.com
Author: Hurrell CPU
Author URI: https://view-counter.com
Description: Official marketing theme for the View Counter WP plugin. A single-page landing site with hero, features, pricing, testimonials, and CTA sections. Built with the View Counter brand identity — purple palette, DM Sans typography, clean minimal design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: viewcounter-theme
Tags: one-page, custom-colors, custom-logo, featured-images
*/

/* =========================================================================
   RESET & BASE
   ========================================================================= */
:root {
    --purple-50: #faf5ff; --purple-100: #f3e8ff; --purple-200: #e9d5ff;
    --purple-300: #d8b4fe; --purple-400: #c084fc; --purple-500: #a855f7;
    --purple-600: #8b2fc6; --purple-700: #7c3aed; --purple-800: #5b21b6;
    --purple-900: #4c1d95; --purple-950: #2e1065;
    --slate-50: #f8fafc; --slate-100: #f1f5f9; --slate-200: #e2e8f0;
    --slate-300: #cbd5e1; --slate-400: #94a3b8; --slate-500: #64748b;
    --slate-600: #475569; --slate-700: #334155; --slate-800: #1e293b;
    --slate-900: #0f172a;
    --mint: #34d399; --amber: #fbbf24; --rose: #fb7185;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--slate-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: var(--slate-50);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.8); opacity: 0; }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   NAV
   ========================================================================= */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s;
}
nav.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--purple-600); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple-600); }
.nav-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    background: var(--purple-600);
    color: white !important;
    border-radius: 9px;
    transition: all 0.2s !important;
    box-shadow: 0 2px 8px rgba(139,47,198,0.2);
}
.nav-cta:hover {
    background: var(--purple-700) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(139,47,198,0.3);
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--slate-50) 0%, white 50%, var(--purple-50) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(139,47,198,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--purple-200);
    padding: 6px 16px 6px 8px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--purple-700);
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease both;
    box-shadow: 0 2px 12px rgba(139,47,198,0.08);
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--mint);
    border-radius: 50%;
    position: relative;
}
.hero-badge-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--mint);
    animation: pulse-ring 2s ease-out infinite;
}
.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--slate-900);
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease 0.1s both;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--slate-500);
    max-width: 540px;
    margin: 0 auto 40px;
    animation: fadeUp 0.6s ease 0.2s both;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: fadeUp 0.6s ease 0.3s both;
    flex-wrap: wrap;
}
.btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}
.btn-primary {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    color: white;
    box-shadow: 0 4px 20px rgba(139,47,198,0.25), 0 0 0 0 rgba(139,47,198,0);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139,47,198,0.3), 0 0 0 4px rgba(139,47,198,0.08);
}
.btn-secondary {
    background: white;
    color: var(--slate-700);
    border: 1.5px solid var(--slate-200);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn-secondary:hover {
    border-color: var(--purple-300);
    color: var(--purple-700);
    background: var(--purple-50);
    transform: translateY(-2px);
}
.hero-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--slate-400);
    animation: fadeUp 0.6s ease 0.4s both;
}

/* Hero Dashboard Preview */
.hero-preview {
    position: relative;
    margin-top: 72px;
    animation: fadeUp 0.8s ease 0.5s both;
}
.hero-preview-window {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
    overflow: hidden;
}
.window-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
}
.window-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--slate-300);
}
.window-dot:first-child { background: #ff5f57; }
.window-dot:nth-child(2) { background: #febc2e; }
.window-dot:nth-child(3) { background: #28c840; }
.window-url {
    flex: 1;
    margin-left: 12px;
    background: white;
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--slate-400);
    border: 1px solid var(--slate-200);
}
.dashboard-mock {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 380px;
}
.dash-sidebar {
    background: var(--slate-900);
    padding: 20px 0;
}
.dash-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--slate-400);
}
.dash-sidebar-item.active {
    color: white;
    background: rgba(139,47,198,0.15);
    border-right: 2px solid var(--purple-500);
}
.dash-sidebar-item svg { opacity: 0.5; }
.dash-sidebar-item.active svg { opacity: 1; }
.dash-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 20px 24px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-sidebar-brand span {
    font-size: 14px;
    font-weight: 600;
    color: white;
}
.dash-sidebar-brand .vc-text { color: var(--purple-400); }
.dash-main {
    padding: 24px 28px;
    background: var(--slate-50);
}
.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.dash-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
}
.dash-date-pill {
    font-size: 12px;
    background: white;
    border: 1px solid var(--slate-200);
    padding: 5px 14px;
    border-radius: 8px;
    color: var(--slate-500);
    font-weight: 500;
}
.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.dash-stat {
    background: white;
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid var(--slate-200);
}
.dash-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--slate-400);
    font-weight: 500;
    margin-bottom: 4px;
}
.dash-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--slate-900);
}
.dash-stat-change {
    font-size: 11px;
    font-weight: 600;
    color: var(--mint);
    margin-top: 2px;
}
.dash-stat-change.down { color: var(--rose); }
.dash-chart {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--slate-200);
    height: 160px;
    position: relative;
    overflow: hidden;
}
.dash-chart-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 16px;
}

/* =========================================================================
   SOCIAL PROOF
   ========================================================================= */
.social-proof {
    padding: 56px 0;
    text-align: center;
    border-bottom: 1px solid var(--slate-200);
    background: white;
}
.social-proof p {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--slate-400);
    margin-bottom: 28px;
}
.proof-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.35;
}
.proof-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-800);
    letter-spacing: -0.5px;
}

/* =========================================================================
   FEATURES
   ========================================================================= */
.features {
    padding: 100px 0;
    background: white;
}
.features-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 64px;
}
.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--purple-600);
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--slate-900);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 17px;
    color: var(--slate-500);
    font-weight: 300;
    line-height: 1.7;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    padding: 36px 28px;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    background: var(--slate-50);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-400), var(--purple-600));
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover {
    border-color: var(--purple-200);
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139,47,198,0.06);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--purple-100), var(--purple-50));
    color: var(--purple-600);
}
.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.7;
}

/* =========================================================================
   HOW IT WORKS
   ========================================================================= */
.how-it-works {
    padding: 100px 0;
    background: var(--slate-50);
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--purple-200), var(--purple-400), var(--purple-200));
}
.step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--purple-600);
    background: white;
    border: 2px solid var(--purple-200);
    box-shadow: 0 4px 16px rgba(139,47,198,0.08);
    transition: all 0.3s;
}
.step:hover .step-num {
    background: var(--purple-600);
    color: white;
    border-color: var(--purple-600);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(139,47,198,0.2);
}
.step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.step p {
    font-size: 14px;
    color: var(--slate-500);
    max-width: 260px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =========================================================================
   FEATURE HIGHLIGHT
   ========================================================================= */
.highlight {
    padding: 100px 0;
    background: white;
}
.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.highlight-text .section-label { text-align: left; }
.highlight-text .section-title { font-size: 36px; text-align: left; margin-bottom: 20px; }
.highlight-text p { font-size: 16px; color: var(--slate-500); line-height: 1.8; margin-bottom: 28px; }
.checklist { list-style: none; margin-bottom: 32px; }
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--slate-700);
    margin-bottom: 12px;
    font-weight: 500;
}
.check-icon {
    width: 22px; height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: var(--purple-100);
    color: var(--purple-600);
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.highlight-card {
    background: var(--slate-900);
    border-radius: 16px;
    padding: 32px;
    color: white;
    position: relative;
    overflow: hidden;
}
.highlight-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(139,47,198,0.2), transparent 70%);
}
.hl-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--purple-300);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.hl-top-posts { list-style: none; }
.hl-top-posts li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hl-top-posts li:last-child { border-bottom: none; }
.hl-post-info { display: flex; align-items: center; gap: 12px; }
.hl-post-rank { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--slate-500); width: 20px; }
.hl-post-title { font-size: 14px; font-weight: 500; color: var(--slate-200); }
.hl-post-views { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--purple-400); font-weight: 500; }
.hl-floating-card {
    position: absolute;
    bottom: -24px;
    right: -16px;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}
.hl-floating-card .fl-label { font-size: 11px; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 2px; }
.hl-floating-card .fl-value { font-size: 24px; font-weight: 700; color: var(--slate-900); }
.hl-floating-card .fl-change { font-size: 12px; font-weight: 600; color: var(--mint); }

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--slate-50) 0%, var(--purple-50) 100%);
}
.pricing-header { text-align: center; max-width: 500px; margin: 0 auto 56px; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.price-card {
    background: white;
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid var(--slate-200);
    position: relative;
    transition: all 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.price-card.featured {
    border-color: var(--purple-300);
    box-shadow: 0 8px 40px rgba(139,47,198,0.1);
    background: linear-gradient(180deg, white 0%, var(--purple-50) 100%);
}
.price-card.featured:hover { box-shadow: 0 16px 50px rgba(139,47,198,0.15); }
.price-popular {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(139,47,198,0.25);
}
.price-card h3 { font-size: 18px; font-weight: 700; color: var(--slate-900); margin-bottom: 4px; }
.price-desc { font-size: 13px; color: var(--slate-400); margin-bottom: 20px; }
.price-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.price-currency { font-size: 18px; font-weight: 600; color: var(--slate-500); }
.price-value { font-family: 'Fraunces', serif; font-size: 48px; font-weight: 700; color: var(--slate-900); letter-spacing: -2px; }
.price-period { font-size: 14px; color: var(--slate-400); margin-bottom: 24px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li { font-size: 14px; color: var(--slate-600); padding: 6px 0; display: flex; align-items: flex-start; gap: 10px; }
.price-features li svg { min-width: 16px; margin-top: 3px; }
.price-features li.muted { color: var(--slate-400); }
.price-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}
.price-btn-primary {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    color: white;
    box-shadow: 0 4px 16px rgba(139,47,198,0.2);
}
.price-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(139,47,198,0.3); }
.price-btn-secondary {
    background: var(--slate-50);
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
}
.price-btn-secondary:hover { background: var(--purple-50); border-color: var(--purple-200); color: var(--purple-700); }
.free-label { font-family: 'Fraunces', serif; font-size: 48px; font-weight: 700; color: var(--slate-900); letter-spacing: -1px; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonials { padding: 100px 0; background: white; }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    background: var(--slate-50);
    transition: all 0.3s;
}
.testimonial-card:hover { background: white; box-shadow: 0 8px 30px rgba(0,0,0,0.04); transform: translateY(-2px); }
.tc-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--amber); }
.tc-quote { font-size: 15px; color: var(--slate-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-200), var(--purple-400));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
}
.tc-name { font-size: 14px; font-weight: 600; color: var(--slate-800); }
.tc-role { font-size: 12px; color: var(--slate-400); }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.final-cta {
    padding: 100px 0;
    background: var(--purple-950);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(139,47,198,0.15) 0%, transparent 50%);
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta h2 {
    font-family: 'Fraunces', serif;
    font-size: 44px;
    font-weight: 600;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.15;
}
.final-cta p {
    font-size: 17px;
    color: var(--purple-200);
    max-width: 460px;
    margin: 0 auto 36px;
    font-weight: 300;
    line-height: 1.7;
}
.final-cta .btn-primary {
    background: white;
    color: var(--purple-700);
    font-size: 16px;
    padding: 16px 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.final-cta .btn-primary:hover {
    background: var(--purple-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
footer {
    background: var(--slate-900);
    padding: 56px 0 32px;
    color: var(--slate-400);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-200);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: var(--slate-400); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--purple-400); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 900px) {
    .hero h1 { font-size: 42px; letter-spacing: -1px; }
    .hero p { font-size: 17px; }
    .section-title { font-size: 32px; }
    .features-grid, .testimonial-grid, .pricing-grid, .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .highlight-grid { grid-template-columns: 1fr; gap: 40px; }
    .dashboard-mock { grid-template-columns: 1fr; }
    .dash-sidebar { display: none; }
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nav-links { display: none; }
    .final-cta h2 { font-size: 32px; }
}

/* WP Admin Bar spacing */
body.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
    body.admin-bar nav { top: 46px; }
}
