/* ========================================
   PR Platform - Premium Stylesheet
   Green/White Gradients, Glassmorphism, Hue Effects
   ======================================== */

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

:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;

    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;

    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;

    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;

    --bg-primary: #041a12;
    --bg-secondary: #062016;
    --bg-tertiary: #0a2e1f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);

    --border-color: rgba(74, 222, 128, 0.08);
    --border-light: rgba(74, 222, 128, 0.15);
    --border-green: rgba(74, 222, 128, 0.3);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);

    --gradient-primary: linear-gradient(135deg, var(--green-500), var(--emerald-500), var(--teal-400));
    --gradient-hero: linear-gradient(135deg, var(--green-600), var(--emerald-500), var(--teal-500));
    --gradient-subtle: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));

    --shadow-green: 0 0 40px rgba(34, 197, 94, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 80px rgba(34, 197, 94, 0.08);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--green-400); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-300); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 32px; }

/* ========================================
   ANIMATED BACKGROUND EFFECTS
   ======================================== */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 20s ease-in-out infinite;
}

.bg-orb-1 {
    width: 800px; height: 800px;
    top: -300px; right: -200px;
    background: radial-gradient(circle, rgba(74,222,128,0.12), transparent 70%);
}

.bg-orb-2 {
    width: 700px; height: 700px;
    bottom: -200px; left: -200px;
    background: radial-gradient(circle, rgba(52,211,153,0.1), transparent 70%);
    animation-delay: -10s;
}

.bg-orb-3 {
    width: 600px; height: 600px;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(45,212,191,0.08), transparent 70%);
    animation-delay: -5s;
}

.bg-orb-4 {
    width: 500px; height: 500px;
    top: 20%; left: -100px;
    background: radial-gradient(circle, rgba(34,197,94,0.08), transparent 70%);
    animation-delay: -15s;
}

.bg-orb-5 {
    width: 400px; height: 400px;
    bottom: 10%; right: 10%;
    background: radial-gradient(circle, rgba(16,185,129,0.06), transparent 70%);
    animation-delay: -8s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.02); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-glass-hover);
    border-color: var(--green-500);
    color: var(--green-300);
}

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

.btn-outline:hover {
    border-color: var(--green-500);
    color: var(--green-400);
    background: rgba(34, 197, 94, 0.05);
}

.btn-ghost {
    background: transparent;
    color: var(--green-400);
    padding: 14px 20px;
}

.btn-ghost:hover {
    color: var(--green-300);
    background: rgba(34, 197, 94, 0.08);
}

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-xl { padding: 20px 44px; font-size: 17px; }
.btn-block { width: 100%; }

/* ========================================
   FORMS
   ======================================== */
.form-group { margin-bottom: 24px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { min-height: 140px; resize: vertical; line-height: 1.6; }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.04);
}

select.form-control option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 8px;
}

.form-error { color: #f87171; font-size: 13px; margin-top: 6px; }

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap .form-control { padding-left: 48px; }

.input-icon-wrap .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
}

/* ========================================
   ALERTS
   ======================================== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--green-300);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

/* ========================================
   CARDS
   ======================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.card-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-glass:hover {
    background: var(--bg-glass-hover);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    margin-left: 8px;
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.25);
}

.lang-switch {
    margin-left: 4px;
    font-size: 13px !important;
    padding: 6px 14px !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-full) !important;
    color: var(--text-muted) !important;
    background: transparent !important;
    font-weight: 500 !important;
    transition: var(--transition);
}

.lang-switch:hover {
    border-color: var(--green-500) !important;
    color: var(--green-400) !important;
    background: rgba(74,222,128,0.05) !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--green-400);
    margin-bottom: 32px;
    position: relative;
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    position: relative;
    letter-spacing: -0.03em;
}

.hero h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 48px;
    position: relative;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    position: relative;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    display: block;
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 4px;
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-alt {
    background: var(--bg-secondary);
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-400);
    margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--green-500);
    opacity: 0.5;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   PUBLISHER BAR
   ======================================== */
.publisher-bar {
    padding: 110px 0 92px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(6,32,22,0.6), rgba(4,26,18,0.9), rgba(4,26,18,1));
}

.publisher-bar::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(74,222,128,0.08), transparent 60%);
    pointer-events: none;
}

.publisher-bar-label {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--green-400);
    margin-bottom: 64px;
    position: relative;
}

.publisher-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    max-width: 1560px;
    margin: 0 auto;
    position: relative;
}

.publisher-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 28px;
    background-color: #cfd6dd;
    background-image: linear-gradient(180deg, rgba(212, 218, 226, 0.98), rgba(191, 199, 209, 0.97));
    border: 1px solid rgba(160, 174, 192, 0.95);
    border-radius: 24px;
    transition: var(--transition);
    min-height: 132px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.publisher-logo-item:hover {
    background-color: #bec8d2;
    background-image: linear-gradient(180deg, rgba(198, 206, 216, 1), rgba(176, 186, 198, 0.98));
    border-color: var(--border-green);
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.18);
}

.publisher-logo-item img {
    max-height: 92px;
    max-width: min(100%, 220px);
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    transition: var(--transition);
}

.publisher-logo-item:hover img {
    transform: scale(1.05);
}

.publisher-logo-postmedia {
    padding-left: 20px;
    padding-right: 20px;
}

.publisher-logo-postmedia img {
    transform: scale(1.16);
}

.publisher-logo-postmedia:hover img {
    transform: scale(1.22);
}

/* ========================================
   SERVICES / PRICING
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 44px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--border-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

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

.service-card.featured {
    border-color: var(--border-green);
    background: linear-gradient(135deg, rgba(34,197,94,0.05), rgba(16,185,129,0.02));
}

.service-card.featured::before { opacity: 1; }

.badge-popular {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-subtle);
    border: 1px solid var(--border-green);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.service-price {
    font-size: 52px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.service-price span {
    font-size: 16px;
    font-weight: 400;
    -webkit-text-fill-color: var(--text-muted);
}

.service-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 36px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child { border-bottom: none; }

.service-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--gradient-subtle);
    border: 1px solid var(--border-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    border-color: var(--border-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-subtle);
    border: 1px solid var(--border-green);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--green-500), var(--emerald-500), var(--teal-400));
    opacity: 0.3;
}

.step-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--green-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    font-weight: 800;
    color: var(--green-400);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
    position: relative;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(34,197,94,0.05), rgba(16,185,129,0.03));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-value {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========================================
   CASE STUDIES
   ======================================== */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.case-study-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.case-study-card:hover {
    border-color: var(--border-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

.case-study-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--gradient-subtle);
}

.case-study-body { padding: 32px; }

.case-study-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.case-study-body > p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.metric {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--green-400);
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-top: 4px;
}

/* ========================================
   PROCESS DETAIL
   ======================================== */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.process-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.process-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.process-list {
    list-style: none;
}

.process-list li {
    padding: 14px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.process-list li:last-child { border-bottom: none; }

.process-list li::before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--gradient-subtle);
    border: 1px solid var(--border-green);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.process-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.process-visual::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-green);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: var(--green-400);
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: var(--bg-card);
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover { background: var(--bg-glass-hover); }

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--green-400); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 28px 24px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34,197,94,0.06), rgba(16,185,129,0.03));
    border-top: 1px solid var(--border-color);
}

.cta-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--green-400);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 13px;
}

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

/* ========================================
   BLOG
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--border-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--gradient-subtle);
}

.blog-card-content { padding: 28px; }

.blog-card-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.blog-card-content h3 a { color: var(--text-primary); }
.blog-card-content h3 a:hover { color: var(--green-400); }

.blog-card-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-400);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover { color: var(--green-300); gap: 10px; }

/* ========================================
   ORDER FORM WIZARD
   ======================================== */
.wizard {
    max-width: 720px;
    margin: 0 auto;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
}

.wizard-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.wizard-step .step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    color: var(--text-muted);
}

.wizard-step.active .step-circle {
    background: var(--gradient-primary);
    border-color: var(--green-500);
    color: var(--white);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.3);
}

.wizard-step.completed .step-circle {
    background: var(--green-500);
    border-color: var(--green-500);
    color: var(--white);
}

.wizard-step .step-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wizard-content { display: none; }
.wizard-content.active { display: block; animation: fadeIn 0.3s ease; }

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

.wizard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 44px;
}

.wizard-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.wizard-card > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 15px;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

/* Package Selection */
.package-options { display: grid; gap: 16px; }

.package-option {
    padding: 28px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-card);
}

.package-option:hover {
    border-color: var(--green-500);
    background: rgba(34, 197, 94, 0.03);
}

.package-option.selected {
    border-color: var(--green-500);
    background: rgba(34, 197, 94, 0.06);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
}

.package-option input { display: none; }

.pkg-radio {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
}

.package-option.selected .pkg-radio {
    border-color: var(--green-500);
    background: var(--green-500);
}

.package-option.selected .pkg-radio::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    background: var(--white);
    border-radius: 50%;
}

.pkg-info { flex: 1; }
.pkg-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.pkg-desc { font-size: 13px; color: var(--text-secondary); }
.pkg-price { font-size: 28px; font-weight: 800; color: var(--green-400); letter-spacing: -0.02em; }

/* ========================================
   ADMIN LAYOUT
   ======================================== */
.admin-body { background: var(--bg-primary); }

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
}

.sidebar-header {
    padding: 28px 24px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-logo { display: block; }
.sidebar-logo span {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
    letter-spacing: -0.02em;
}

.sidebar-logo small {
    font-size: 11px;
    color: var(--green-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.sidebar-nav { flex: 1; padding: 20px 12px; }

.sidebar-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: 16px 16px 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    margin-bottom: 2px;
    transition: var(--transition);
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.nav-item.active {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green-400);
    font-weight: 600;
}

.nav-item-icon {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.sidebar-footer {
    padding: 16px 12px;
    border-top: 1px solid var(--border-color);
}

.sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sidebar-footer a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.logout-link { color: #f87171 !important; }

.admin-content {
    flex: 1;
    margin-left: 280px;
    padding: 36px;
    min-height: 100vh;
    position: relative;
}

/* ========================================
   AUTH PAGES
   ======================================== */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    position: relative;
}

.auth-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(34,197,94,0.06), transparent 70%);
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    width: 100%;
    max-width: 440px;
    position: relative;
    backdrop-filter: blur(20px);
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.auth-header {
    text-align: center;
    margin-bottom: 36px;
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

.auth-form .form-group { margin-bottom: 20px; }

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ========================================
   DASHBOARD
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

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

.stat-card:hover {
    border-color: var(--border-green);
    transform: translateY(-2px);
}

.stat-card .stat-value {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ========================================
   TABLES
   ======================================== */
.table-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.table-header h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

table { width: 100%; border-collapse: collapse; }

th, td {
    padding: 16px 28px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.02);
}

td { color: var(--text-secondary); }

tr:hover td { background: rgba(255, 255, 255, 0.02); }

/* ========================================
   BADGES
   ======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge-pending { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.2); }
.badge-in_progress { background: rgba(59, 130, 246, 0.1); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }
.badge-awaiting_content { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.2); }
.badge-distributed { background: rgba(34, 197, 94, 0.1); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.badge-completed { background: rgba(34, 197, 94, 0.1); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.badge-cancelled { background: rgba(239, 68, 68, 0.1); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.2); }
.badge-paid { background: rgba(34, 197, 94, 0.1); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.badge-unpaid { background: rgba(239, 68, 68, 0.1); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.2); }
.badge-partial { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.2); }
.badge-new { background: rgba(59, 130, 246, 0.1); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }
.badge-contacted { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.2); }
.badge-qualified { background: rgba(34, 197, 94, 0.1); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.badge-converted { background: rgba(34, 197, 94, 0.1); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.badge-lost { background: rgba(239, 68, 68, 0.1); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.2); }
.badge-draft { background: rgba(255, 255, 255, 0.05); color: var(--text-muted); border: 1px solid var(--border-color); }
.badge-published { background: rgba(34, 197, 94, 0.1); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }

/* ========================================
   PAGINATION
   ======================================== */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 24px;
}

.page-link {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    background: var(--bg-card);
}

.page-link:hover {
    border-color: var(--green-500);
    color: var(--green-400);
}

.page-link.active {
    background: var(--gradient-primary);
    border-color: var(--green-500);
    color: var(--white);
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
}

.page-header h1 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* ========================================
   DETAIL VIEWS
   ======================================== */
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
}

.detail-section {
    margin-bottom: 32px;
}

.detail-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: -0.01em;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.info-row .label { color: var(--text-muted); font-weight: 500; }
.info-row .value { color: var(--text-primary); font-weight: 500; }

/* ========================================
   NOTES
   ======================================== */
.notes-list { max-height: 500px; overflow-y: auto; }

.note-item {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: var(--bg-card);
}

.note-item.internal {
    border-left: 3px solid #fbbf24;
    background: rgba(245, 158, 11, 0.03);
}

.note-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.note-content {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   FILES
   ======================================== */
.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: var(--bg-card);
    transition: var(--transition);
}

.file-item:hover {
    border-color: var(--border-light);
}

.file-info { display: flex; align-items: center; gap: 14px; }
.file-icon { font-size: 22px; }
.file-name { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.file-size { font-size: 12px; color: var(--text-muted); }

/* ========================================
   FORM ROW / FILTER BAR
   ======================================== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.filter-bar .form-control { width: auto; min-width: 180px; }
.filter-bar input[type="text"] { flex: 1; min-width: 240px; }

/* ========================================
   BLOG CONTENT
   ======================================== */
.blog-content { line-height: 1.8; font-size: 16px; }
.blog-content h1, .blog-content h2, .blog-content h3 { margin: 28px 0 16px; font-weight: 700; }
.blog-content p { margin-bottom: 18px; color: var(--text-secondary); }
.blog-content img { max-width: 100%; border-radius: var(--radius); margin: 20px 0; }
.blog-content a { color: var(--green-400); text-decoration: underline; }
.blog-content ul, .blog-content ol { margin: 18px 0; padding-left: 28px; }
.blog-content li { margin-bottom: 10px; color: var(--text-secondary); }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
    align-items: center;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--green-400); }
.breadcrumb-separator { opacity: 0.4; }

/* ========================================
   EMPTY STATE
   ======================================== */
.empty-state {
    text-align: center;
    padding: 80px 24px;
    color: var(--text-muted);
}

.empty-state h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-weight: 600;
}

.empty-state p { font-size: 14px; margin-bottom: 24px; }

/* ========================================
   QUICK ACTIONS
   ======================================== */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.quick-action {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.quick-action:hover {
    border-color: var(--green-500);
    transform: translateY(-2px);
}

.quick-action-icon { font-size: 28px; margin-bottom: 12px; }
.quick-action-label { font-size: 14px; font-weight: 600; color: var(--text-primary); }

/* ========================================
   SECTION CTA
   ======================================== */
.section-cta { text-align: center; margin-top: 48px; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .process-grid { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(3,7,18,0.95); backdrop-filter: blur(20px); flex-direction: column; padding: 24px; gap: 8px; border-bottom: 1px solid var(--border-color); }
    .nav-links.active { display: flex; }
    .mobile-menu-toggle { display: flex; }
    .hero { padding: 140px 0 80px; }
    .hero h1 { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .section { padding: 80px 0; }
    .section-title { font-size: 28px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .case-studies-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .admin-sidebar { width: 240px; }
    .admin-content { margin-left: 240px; padding: 20px; }
    .wizard-card { padding: 28px; }
    .auth-card { padding: 32px; }
    .stat-value { font-size: 40px; }
    .publisher-bar { padding: 84px 0 72px; }
    .publisher-bar-label { margin-bottom: 42px; }
    .publisher-logos {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 18px;
    }
    .publisher-logo-item {
        min-height: 112px;
        padding: 24px 20px;
    }
    .publisher-logo-item img {
        max-height: 76px;
        max-width: min(100%, 180px);
    }
}

@media (max-width: 480px) {
    .admin-sidebar { display: none; }
    .admin-content { margin-left: 0; }
    .hero-stat-value { font-size: 32px; }
    .service-card { padding: 28px; }
    .wizard-steps { gap: 4px; }
    .wizard-step .step-label { font-size: 10px; }
    .publisher-logos { grid-template-columns: 1fr 1fr; }
    .publisher-logo-item {
        min-height: 100px;
        padding: 20px 16px;
    }
    .publisher-logo-item img { max-height: 64px; }
}

/* ========================================
   UTILITY
   ======================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-green { color: var(--green-400); }
.text-muted { color: var(--text-muted); }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
