/* ============================================================
   OTOFLOW - MAIN STYLESHEET (Redesigned)
   Fonts: Instrument Serif (display) + Inter (body) + JetBrains Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    /* Color tokens */
    --bg:               #f5f4f0;
    --bg-elev:          #ffffff;
    --bg-soft:          #ebe9e2;
    --ink:              #0a0a0a;
    --ink-2:            #2a2a28;
    --muted:            #6b6b66;
    --line:             #e3e1da;
    --accent:           #a8e6c9;
    --accent-ink:       #0a3a26;
    --accent-deep:      #5fc99a;
    --warn:             #ffd166;
    --danger:           #ff6b6b;

    /* Legacy brand tokens (used by existing HTML) */
    --brand-primary:    #0a0a0a;
    --brand-accent:     #a8e6c9;
    --brand-accent-2:   #5fc99a;
    --brand-gradient:   linear-gradient(135deg, #a8e6c9 0%, #5fc99a 100%);
    --bg-light:         #f5f4f0;
    --bg-card:          #ffffff;
    --text-primary:     #0a0a0a;
    --text-secondary:   #2a2a28;
    --text-muted:       #6b6b66;
    --border-color:     #e3e1da;
    --shadow-sm:        0 1px 2px rgba(20,20,18,.04), 0 1px 1px rgba(20,20,18,.03);
    --shadow-md:        0 8px 24px -8px rgba(20,20,18,.10), 0 2px 6px rgba(20,20,18,.04);
    --shadow-lg:        0 24px 48px -16px rgba(20,20,18,.18), 0 6px 16px rgba(20,20,18,.06);
    --radius-sm:        10px;
    --radius-md:        16px;
    --radius-lg:        24px;
    --font-display:     'Instrument Serif', 'Times New Roman', serif;
    --font-body:        'Inter', -apple-system, 'Segoe UI', sans-serif;
    --font-mono:        'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    --transition:       .2s ease;
}

[data-theme="dark"] {
    --bg:           #0e0f0d;
    --bg-elev:      #181a17;
    --bg-soft:      #1f2220;
    --ink:          #f5f4f0;
    --ink-2:        #d6d4cc;
    --muted:        #8e8e85;
    --line:         #2a2d2a;
    --bg-light:     #0e0f0d;
    --bg-card:      #181a17;
    --text-primary: #f5f4f0;
    --text-secondary:#d6d4cc;
    --text-muted:   #8e8e85;
    --border-color: #2a2d2a;
    --brand-primary:#0e0f0d;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'cv11', 'ss01';
    letter-spacing: -0.005em;
}

::selection { background: var(--accent); color: var(--accent-ink); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
}

a { color: inherit; text-decoration: none; text-underline-offset: 3px; transition: var(--transition); }
a:hover { color: var(--accent-deep); }

img { max-width: 100%; }

.serif { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.015em; }

.skip-link {
    position: absolute; top: 0; left: 0;
    background: var(--ink); color: var(--bg);
    padding: 8px 16px; border-radius: 0 0 8px 0; z-index: 9999;
    font-size: .85rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-main {
    background: transparent;
    padding: 16px 0 0;
    transition: var(--transition);
    border-bottom: none;
    position: sticky;
    top: 16px;
    z-index: 50;
}

.navbar-main .container {
    max-width: 1100px;
}

/* pill shell wraps the inner nav content */
.navbar-main > .container {
    max-width: 1100px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 8px 8px 22px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-main .navbar-collapse {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.navbar-main.scrolled {
    top: 8px;
}

.navbar-brand {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-body);
    font-size: 1rem; font-weight: 600;
    color: var(--ink) !important;
    letter-spacing: -0.01em;
}

.brand-icon {
    width: 28px; height: 28px;
    background: var(--ink);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; color: var(--accent);
    font-family: var(--font-mono);
    font-weight: 700;
    flex-shrink: 0;
}

.brand-name { color: var(--ink); }

.navbar-main .nav-link {
    color: var(--ink-2) !important;
    font-size: .875rem; font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 999px;
    transition: var(--transition);
    letter-spacing: 0;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
    color: var(--ink) !important;
    background: var(--bg-soft);
    font-weight: 500;
}

.dropdown-menu-sectors {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
}

.dropdown-menu-sectors .dropdown-item {
    color: var(--ink-2);
    border-radius: 10px; padding: 10px 14px;
    font-size: .875rem; display: flex; align-items: center; gap: 10px;
    transition: var(--transition);
}

.dropdown-menu-sectors .dropdown-item:hover {
    background: var(--bg-soft);
    color: var(--ink);
}

.dropdown-menu-sectors .dropdown-item i { color: var(--accent-deep); font-size: 1rem; }

.navbar-toggler { border: none; padding: 4px; background: none; }
.toggler-line {
    display: block; width: 24px; height: 2px;
    background: var(--ink); margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Primary button */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ink);
    border: none; color: var(--bg);
    font-family: var(--font-body); font-weight: 500;
    border-radius: 999px; padding: 10px 20px;
    font-size: .875rem; letter-spacing: -0.01em;
    transition: transform .15s ease, background .15s ease, box-shadow .2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--bg);
    background: var(--ink-2);
}

.btn-outline-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--font-body); font-weight: 500;
    border-radius: 999px; padding: 10px 20px; font-size: .875rem;
    transition: transform .15s ease, background .15s ease;
    cursor: pointer;
}

.btn-outline-primary:hover {
    background: var(--bg-soft);
    color: var(--ink);
    transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    background: var(--bg);
    min-height: 85vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 100px 0 80px;
    text-align: center;
}

/* Subtle dot grid background */
.hero-bg-grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(10,10,10,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute; top: -120px; right: -120px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(168,230,201,.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute; bottom: -80px; left: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(168,230,201,.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ink);
    color: var(--bg);
    padding: 5px 14px 5px 6px; border-radius: 999px;
    font-size: .8rem; font-weight: 500;
    margin-bottom: 28px;
}

.hero-badge i {
    display: inline-flex;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent); color: var(--accent-ink);
    align-items: center; justify-content: center;
    font-size: .65rem; font-weight: 700;
}

.hero-title {
    font-size: clamp(2.5rem, 6.5vw, 5.25rem);
    font-weight: 600; line-height: 1.0;
    color: var(--ink);
    margin: 0 auto 22px;
    max-width: 14ch;
    letter-spacing: -0.03em;
}

.hero-title .accent {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-ink);
    padding: 0 .35em;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.06rem; color: var(--muted);
    max-width: 52ch; margin: 0 auto 36px; line-height: 1.7;
}

.hero-cta-group {
    display: inline-flex; gap: 10px; flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 52px;
}

.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ink);
    border: none; color: var(--bg);
    font-family: var(--font-body); font-weight: 500;
    border-radius: 999px; padding: 14px 28px; font-size: .95rem;
    transition: transform .15s ease, box-shadow .2s ease;
    letter-spacing: -0.01em;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--bg);
}

.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--font-body); font-weight: 500;
    border-radius: 999px; padding: 14px 28px; font-size: .95rem;
    transition: transform .15s ease, background .15s ease;
    letter-spacing: -0.01em;
    cursor: pointer;
}

.btn-hero-secondary:hover {
    background: var(--bg-soft);
    color: var(--ink);
    transform: translateY(-2px);
}

.hero-stats {
    display: inline-flex; gap: 32px; flex-wrap: wrap;
    justify-content: center;
    color: var(--muted);
    font-size: .8rem;
    align-items: center;
}

.hero-stat-item { }

.hero-stat-number {
    font-family: var(--font-body); font-size: 1.6rem;
    font-weight: 600; color: var(--ink); line-height: 1;
    letter-spacing: -0.03em;
}

.hero-stat-number span {
    color: var(--accent-deep);
}

.hero-stat-label { font-size: .75rem; color: var(--muted); margin-top: 3px; font-family: var(--font-mono); letter-spacing: .02em; }

/* Hero visual */
.hero-visual {
    position: relative; display: flex; justify-content: center;
}

.hero-flow-card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    width: 100%; max-width: 440px;
    box-shadow: var(--shadow-lg);
}

.flow-step {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    animation: fadeInUp .5s ease both;
}

.flow-step:last-child { border-bottom: none; }
.flow-step:nth-child(1) { animation-delay: .05s; }
.flow-step:nth-child(2) { animation-delay: .15s; }
.flow-step:nth-child(3) { animation-delay: .25s; }
.flow-step:nth-child(4) { animation-delay: .35s; }

.flow-step-icon {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    background: var(--bg-soft);
    border: 1px solid var(--line);
}

.flow-step-icon.c1 { color: var(--accent-deep); }
.flow-step-icon.c2 { color: var(--ink-2); }
.flow-step-icon.c3 { color: #059669; }
.flow-step-icon.c4 { color: #d97706; }

.flow-step-text h6 {
    font-family: var(--font-body); font-size: .875rem;
    color: var(--ink); margin: 0 0 3px; font-weight: 600;
    letter-spacing: -0.01em;
}

.flow-step-text p {
    font-size: .75rem; color: var(--muted);
    margin: 0; line-height: 1.5;
}

.flow-connector {
    width: 2px; background: var(--line);
    height: 16px; margin: 0 17px;
    border-left: 2px dashed var(--line);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-elev);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--bg-elev);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600; margin-bottom: 14px;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.06rem; color: var(--muted);
    max-width: 56ch; margin: 0 auto 60px; line-height: 1.7;
}

.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

/* Bootstrap column çakışmasını düzelt */
.process-steps > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding-left: 0;
    padding-right: 0;
}

.process-step {
    height: 100%;
}

.process-steps::before {
    display: none;
}

.process-step {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: left;
    opacity: 0; transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease, box-shadow .25s ease;
    cursor: default;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.process-step.visible { opacity: 1; transform: translateY(0); }
.process-step.visible:hover { transform: translateY(-3px); }

.step-number-wrap {
    position: relative; display: inline-block; margin-bottom: 18px;
}

.step-icon-ring {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--accent-deep);
    position: relative; z-index: 1;
}

.step-num {
    position: absolute; top: -5px; right: -7px;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--ink); color: var(--bg);
    font-family: var(--font-mono); font-size: .65rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--bg-elev); z-index: 2;
}

.process-step h5 {
    font-size: .95rem; font-weight: 600; margin-bottom: 8px;
    letter-spacing: -0.015em;
}

.process-step p {
    font-size: .825rem; color: var(--muted); line-height: 1.6;
}

/* ============================================================
   SECTORS GRID
   ============================================================ */
.sectors-section {
    padding: 100px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.sector-card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 24px 48px;
    display: block; text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
    position: relative; overflow: hidden;
    color: var(--ink);
}

.sector-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
}

.sector-card:hover {
    border-color: var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    color: var(--ink);
}

.sector-card:hover::before { transform: scaleX(1); }

.sector-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 18px;
    transition: var(--transition);
    color: var(--accent-deep);
}

.sector-card:hover .sector-icon {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: transparent;
}

.sector-card h4 {
    font-size: 1.05rem; font-weight: 600; margin-bottom: 8px;
    color: var(--ink); letter-spacing: -0.015em;
}

.sector-card p {
    font-size: .825rem; color: var(--muted);
    line-height: 1.6; margin: 0;
}

.sector-card .sector-arrow {
    position: absolute; bottom: 20px; right: 20px;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: .85rem;
    transition: var(--transition);
}

.sector-card:hover .sector-arrow {
    background: var(--ink); color: var(--bg);
    border-color: transparent;
    transform: translateX(3px);
}

/* ============================================================
   SECTOR PAGE
   ============================================================ */
.sector-hero {
    background: var(--ink);
    padding: 80px 0 60px;
    position: relative; overflow: hidden;
}

.sector-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(168,230,201,.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

.breadcrumb-nav { margin-bottom: 20px; }

.breadcrumb {
    background: none; padding: 0; margin: 0;
    --bs-breadcrumb-divider: '›';
}

.breadcrumb-item a { color: rgba(245,244,240,.5); font-size: .825rem; }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item.active { color: rgba(245,244,240,.8); font-size: .825rem; }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(245,244,240,.3); }

.sector-hero-icon {
    width: 64px; height: 64px; border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--accent);
    margin-bottom: 22px;
}

.sector-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--bg); font-weight: 600;
    margin-bottom: 14px; letter-spacing: -0.03em;
}

.sector-hero .lead {
    color: rgba(245,244,240,.6); font-size: 1.05rem; max-width: 58ch;
}

/* Importance text section */
.importance-section {
    padding: 70px 0 50px;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--line);
}

.importance-text {
    font-size: 1.05rem; color: var(--muted);
    line-height: 1.85; white-space: pre-line;
}

/* Automations list */
.automations-section {
    padding: 60px 0 100px;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
}

/* Sidebar */
.sidebar-card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 20px;
}

.sidebar-card h6 {
    font-family: var(--font-body);
    font-size: .72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--muted); margin-bottom: 14px;
}

.sidebar-auto-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: var(--transition);
    color: var(--ink);
}

.sidebar-auto-item:last-child { border-bottom: none; }

.sidebar-auto-item:hover { color: var(--accent-deep); }

.sidebar-auto-thumb {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: .9rem; color: var(--accent-deep);
}

.sidebar-auto-info h6 {
    font-size: .825rem; font-weight: 600; color: var(--ink);
    margin: 0 0 3px; text-transform: none; letter-spacing: 0;
}

.sidebar-auto-info span {
    font-size: .75rem; color: var(--accent-deep); font-weight: 700;
    font-family: var(--font-mono);
}

/* Automation card */
.automation-card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative; overflow: hidden;
    text-decoration: none; display: block; color: var(--ink);
    height: 100%;
}

.automation-card:hover {
    border-color: var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px); color: var(--ink);
}

.automation-card .badge-featured {
    position: absolute; top: 16px; right: 16px;
    background: var(--accent);
    color: var(--accent-ink); font-size: .7rem; font-weight: 700;
    padding: 3px 10px; border-radius: 999px;
    letter-spacing: .02em;
    font-family: var(--font-mono);
}

.automation-card h4 {
    font-size: 1.05rem; margin-bottom: 8px; font-weight: 600;
    letter-spacing: -0.015em;
}

.automation-card p {
    font-size: .85rem; color: var(--muted);
    line-height: 1.6; margin-bottom: 18px;
}

.automation-features-list {
    list-style: none; padding: 0; margin: 0 0 22px;
}

.automation-features-list li {
    font-size: .8rem; color: var(--muted);
    padding: 4px 0;
    display: flex; align-items: flex-start; gap: 8px;
}

.automation-features-list li i { color: var(--accent-deep); font-size: .8rem; flex-shrink: 0; margin-top: 2px; }

.automation-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 18px; border-top: 1px solid var(--line);
}

.price-display .original {
    font-size: .78rem; color: var(--muted);
    text-decoration: line-through; display: block;
    font-family: var(--font-mono);
}
.price-display .current {
    font-family: var(--font-body); font-size: 1.3rem;
    font-weight: 700; color: var(--ink); letter-spacing: -0.02em;
}
.price-display .currency { font-size: .85rem; font-weight: 500; color: var(--muted); }

.btn-card-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--ink); border: none; color: var(--bg);
    font-family: var(--font-body); font-size: .825rem; font-weight: 500;
    padding: 10px 18px; border-radius: 999px;
    transition: transform .15s ease, box-shadow .2s ease;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-card-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); color: var(--bg); }

/* ============================================================
   AUTOMATION DETAIL PAGE
   ============================================================ */
.detail-hero {
    background: var(--ink);
    padding: 80px 0 70px;
    position: relative; overflow: hidden;
}

.detail-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(168,230,201,.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

.detail-hero h1 {
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    color: var(--bg); font-weight: 600;
    letter-spacing: -0.03em;
}

/* Sticky purchase card */
.purchase-card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
    position: sticky; top: 90px;
    box-shadow: var(--shadow-md);
}

.purchase-card .price-big {
    font-family: var(--font-body); font-size: 2.4rem;
    font-weight: 700; color: var(--ink);
    line-height: 1; letter-spacing: -0.04em;
}

.btn-buy {
    width: 100%; background: var(--ink);
    border: none; color: var(--bg);
    font-family: var(--font-body); font-weight: 600;
    font-size: 1rem; padding: 15px; border-radius: 999px;
    transition: transform .15s ease, box-shadow .2s ease;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    cursor: pointer; letter-spacing: -0.01em;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md); color: var(--bg);
}

.trust-badges {
    display: flex; flex-direction: column; gap: 10px; margin-top: 18px;
}

.trust-badge {
    display: flex; align-items: center; gap: 10px;
    font-size: .8rem; color: var(--muted);
}

.trust-badge i { color: var(--accent-deep); font-size: .95rem; flex-shrink: 0; }

/* Feature grid */
.feature-item {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex; gap: 14px;
    height: 100%;
}

.feature-icon {
    width: 40px; height: 40px; border-radius: 11px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--accent-deep); flex-shrink: 0;
}

.feature-item h6 { font-size: .875rem; font-weight: 600; margin-bottom: 5px; letter-spacing: -0.01em; }
.feature-item p { font-size: .8rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ============================================================
   PAYMENT / DOWNLOAD PAGES
   ============================================================ */
.payment-section { padding: 80px 0; background: var(--bg); }

.payment-form-card {
    background: var(--bg-elev); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-label { font-size: .825rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }

.form-control {
    border: 1px solid var(--line); border-radius: 10px;
    padding: 11px 14px; font-size: .875rem; transition: var(--transition);
    background: var(--bg-elev); color: var(--ink);
    font-family: var(--font-body);
}

.form-control:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(10,10,10,.06);
    outline: none;
}

.download-success {
    background: var(--bg-elev); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 50px 40px; text-align: center;
    box-shadow: var(--shadow-md);
}

.download-success .success-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(95,201,154,.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--accent-deep);
    margin: 0 auto 22px;
    border: 1px solid rgba(95,201,154,.2);
}

.btn-download {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--ink);
    border: none; color: var(--bg);
    font-family: var(--font-body); font-weight: 600;
    padding: 14px 26px; border-radius: 999px; font-size: .95rem;
    transition: transform .15s ease, box-shadow .2s ease;
    cursor: pointer; letter-spacing: -0.01em;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md); color: var(--bg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--ink);
    color: var(--bg);
    border-radius: 32px 32px 0 0;
    margin-top: 40px;
}

.footer-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-size: 1.1rem; font-weight: 600;
    color: var(--bg); text-decoration: none;
    letter-spacing: -0.01em;
}

.footer-desc { font-size: .85rem; line-height: 1.7; color: rgba(245,244,240,.5); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(245,244,240,.55); font-size: .95rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent); color: var(--accent-ink);
    border-color: transparent;
}

.footer-heading {
    font-family: var(--font-body); font-size: .72rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .07em;
    color: rgba(245,244,240,.5); margin-bottom: 18px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(245,244,240,.7); font-size: .85rem;
    transition: var(--transition);
    text-decoration: none;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .85rem; margin-bottom: 10px; color: rgba(245,244,240,.6);
}
.footer-contact i { color: var(--accent-deep); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(245,244,240,.6); text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom { padding: 20px 0; }
.footer-bottom p { font-size: .78rem; color: rgba(245,244,240,.35); margin: 0; }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-sidebar {
    width: 250px; min-height: 100vh; background: var(--ink);
    position: fixed; top: 0; left: 0; z-index: 1000;
    display: flex; flex-direction: column;
    transition: var(--transition);
    border-right: 1px solid rgba(255,255,255,.06);
}

.admin-sidebar-header {
    padding: 22px 18px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.admin-nav { padding: 14px 10px; flex: 1; }

.admin-nav-section {
    font-size: .65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .09em; color: rgba(245,244,240,.3);
    padding: 14px 10px 6px; margin-top: 6px;
    font-family: var(--font-mono);
}

.admin-nav-section:first-child { margin-top: 0; }

.admin-nav-link {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: 10px; margin-bottom: 2px;
    color: rgba(245,244,240,.6); font-size: .85rem; font-weight: 500;
    text-decoration: none; transition: var(--transition);
}

.admin-nav-link:hover { background: rgba(255,255,255,.07); color: var(--bg); }
.admin-nav-link.active { background: var(--accent); color: var(--accent-ink); }
.admin-nav-link i { font-size: 1rem; flex-shrink: 0; }

.admin-main {
    margin-left: 250px;
    min-height: 100vh;
    background: var(--bg);
}

.admin-topbar {
    background: var(--bg-elev); border-bottom: 1px solid var(--line);
    padding: 14px 26px; display: flex; align-items: center;
    justify-content: space-between; position: sticky; top: 0; z-index: 100;
    box-shadow: var(--shadow-sm);
}

.admin-content { padding: 30px 26px; }

.admin-stat-card {
    background: var(--bg-elev); border: 1px solid var(--line);
    border-radius: var(--radius-md); padding: 22px;
    display: flex; align-items: flex-start; gap: 14px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.admin-stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.admin-stat-icon {
    width: 48px; height: 48px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
    border: 1px solid var(--line);
}

.admin-stat-icon.blue { background: rgba(168,230,201,.12); color: var(--accent-deep); }
.admin-stat-icon.purple { background: rgba(168,230,201,.12); color: var(--accent-deep); }
.admin-stat-icon.green { background: rgba(95,201,154,.12); color: #059669; }
.admin-stat-icon.orange { background: rgba(255,209,102,.12); color: #d97706; }

.admin-stat-number { font-family: var(--font-body); font-size: 1.7rem; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.admin-stat-label { font-size: .78rem; color: var(--muted); margin-top: 4px; font-family: var(--font-mono); }

/* ============================================================
   ALERTS & BADGES
   ============================================================ */
.alert { border-radius: var(--radius-sm); border: 1px solid var(--line); font-size: .875rem; }
.alert-success { background: rgba(95,201,154,.1); color: #065f46; border-color: rgba(95,201,154,.25); }
.alert-danger { background: rgba(255,107,107,.08); color: #991b1b; border-color: rgba(255,107,107,.2); }

.badge { border-radius: 6px; font-weight: 600; font-family: var(--font-mono); font-size: .7rem; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-deep), var(--ink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.divider-gradient {
    height: 1px; background: var(--line);
    border: none; margin: 40px 0;
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 3px rgba(168,230,201,.2); }
    50% { box-shadow: 0 0 0 6px rgba(168,230,201,.12); }
}

/* ============================================================
   EYEBROW / SECTION LABEL (new design tokens)
   ============================================================ */
.eyebrow {
    display: inline-flex;
    align-items: center; gap: 8px;
    padding: 5px 12px 5px 7px;
    background: var(--ink); color: var(--bg);
    border-radius: 999px;
    font-size: .78rem; font-weight: 500;
}

.eyebrow .dot {
    display: inline-flex;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent); color: var(--accent-ink);
    font-size: .65rem; font-weight: 700;
    align-items: center; justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
     .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .admin-sidebar { transform: translateX(-250px); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
}

@media (max-width: 768px) {
    .hero-section { padding: 80px 0 60px; min-height: auto; text-align: left; }
    .hero-cta-group { justify-content: flex-start; }
    .hero-stats { justify-content: flex-start; gap: 20px; }
    .hero-flow-card { display: none; }
    .purchase-card { position: static; }
    .payment-form-card { padding: 22px; }
    .process-steps { grid-template-columns: 1fr; }
    .site-footer { border-radius: 24px 24px 0 0; }
    .navbar-main { top: 8px; }
	
	
	.navbar-main > .container {
    border-radius: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 14px 18px;
}

.navbar-main .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.navbar-main .navbar-nav {
    width: 100%;
    gap: 8px;
}

.navbar-main .nav-link {
    padding: 10px 0 !important;
    font-size: 1rem;
}

.navbar-main .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}
	
}