/* ════════════════════════════════════════════════════
   LayERP — Ana Stil Dosyası
   ════════════════════════════════════════════════════ */

/* ── Değişkenler ─────────────────────────────────────── */
:root {
    --primary:       #c41e1a;
    --primary-dark:  #9f1613;
    --primary-light: rgba(196, 30, 26, 0.12);
    --dark:          #0d1117;
    --dark-2:        #161b22;
    --text:          #1e293b;
    --text-muted:    #64748b;
    --border:        #e2e8f0;
    --bg:            #ffffff;
    --bg-alt:        #f8fafc;
    --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
    --shadow-md:     0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:     0 12px 40px rgba(0,0,0,.14);
    --radius:        12px;
    --radius-lg:     20px;
    --nav-h:         68px;
    --transition:    all .25s ease;
}

/* ── Reset & Base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Container ───────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Butonlar ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.4rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(196,30,26,.35); }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }

.btn-outline-light {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: rgba(255,255,255,.3);
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--text-muted); border-color: transparent; }
.btn-ghost:hover { color: var(--text); background: var(--bg-alt); }

.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: #f1f5f9; transform: translateY(-1px); }

.btn-lg { padding: .85rem 2rem; font-size: 1rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section ortak ───────────────────────────────────── */
.section { padding: 6rem 0; background: var(--bg); }
.section-alt { background: var(--bg-alt); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}
.section-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: .75rem;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 100px;
    margin-bottom: .9rem;
    border: 1px solid rgba(196,30,26,.2);
}

/* ── Gradient Text ───────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, #e8524f 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background .3s ease, box-shadow .3s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}
.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-link:hover { color: var(--primary); }
.navbar.scrolled .nav-logo { color: var(--text); }
.navbar.scrolled .btn-ghost { color: var(--text-muted); }

.nav-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}
.logo-icon {
    width: 34px; height: 34px;
    background: var(--primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .9rem;
}
.logo-text { letter-spacing: -.02em; }

.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-left: auto;
}
.nav-link {
    display: block;
    padding: .4rem .85rem;
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    border-radius: 6px;
    transition: var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.1); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0;
}
.nav-actions .btn-ghost { color: rgba(255,255,255,.7); }
.nav-actions .btn-ghost:hover { color: #fff; background: rgba(255,255,255,.1); }
.navbar.scrolled .nav-actions .btn-ghost { color: var(--text-muted); }
.navbar.scrolled .nav-actions .btn-ghost:hover { color: var(--text); background: var(--bg-alt); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: .4rem;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 23px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
}

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 44px 44px;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.hero-glow-1 {
    width: 600px; height: 600px;
    top: -100px; left: -100px;
    background: radial-gradient(circle, rgba(196,30,26,.25) 0%, transparent 70%);
}
.hero-glow-2 {
    width: 500px; height: 500px;
    bottom: -100px; right: -50px;
    background: radial-gradient(circle, rgba(59,130,246,.18) 0%, transparent 70%);
}

.hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex: 1;
    padding-top: calc(var(--nav-h) + 4rem);
    padding-bottom: 5rem;
}

.hero-content { flex: 1; max-width: 560px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(196,30,26,.15);
    border: 1px solid rgba(196,30,26,.3);
    color: #f87171;
    font-size: .82rem;
    font-weight: 600;
    padding: .35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    letter-spacing: -.03em;
    margin-bottom: 1.4rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin-bottom: 2.2rem;
    max-width: 480px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.hero-stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: .2rem;
}
.hero-stat span { font-size: .8rem; color: rgba(255,255,255,.5); }
.hero-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

.hero-visual {
    flex: 0 0 auto;
    width: 480px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: #1a1f2e;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.08),
        0 30px 80px rgba(0,0,0,.55);
    animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.dm-bar {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .7rem 1rem;
    background: #111520;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.dm-dots { display: flex; gap: 5px; }
.dm-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
}
.dm-dots span:nth-child(1) { background: #ef4444; }
.dm-dots span:nth-child(2) { background: #f59e0b; }
.dm-dots span:nth-child(3) { background: #10b981; }
.dm-url {
    font-size: .72rem;
    color: rgba(255,255,255,.3);
    background: rgba(255,255,255,.05);
    border-radius: 4px;
    padding: .2rem .6rem;
    flex: 1;
    text-align: center;
}

.dm-body { display: flex; height: 300px; }

.dm-sidebar {
    width: 44px;
    background: #111520;
    border-right: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding: .75rem 0;
}
.dm-si {
    width: 26px; height: 26px;
    border-radius: 7px;
    background: rgba(255,255,255,.06);
}
.dm-si.active { background: var(--primary); }

.dm-main {
    flex: 1;
    padding: .75rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    overflow: hidden;
}

.dm-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: .45rem; }
.dm-card {
    background: rgba(255,255,255,.05);
    border-radius: 6px;
    padding: .5rem;
    border-top: 2px solid var(--c);
}
.dm-card-ico {
    width: 18px; height: 18px;
    border-radius: 4px;
    background: var(--c);
    opacity: .7;
    margin-bottom: .35rem;
}
.dm-card-val {
    height: 8px;
    background: rgba(255,255,255,.2);
    border-radius: 3px;
    margin-bottom: .25rem;
    width: 60%;
}
.dm-card-lbl {
    height: 5px;
    background: rgba(255,255,255,.08);
    border-radius: 3px;
    width: 80%;
}

.dm-chart {
    flex: 1;
    background: rgba(255,255,255,.03);
    border-radius: 6px;
    padding: .6rem .6rem .4rem;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.dm-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: .3rem;
    width: 100%;
    height: 100%;
}
.dm-bar-item {
    flex: 1;
    height: var(--h);
    background: linear-gradient(180deg, #c41e1a 0%, rgba(196,30,26,.4) 100%);
    border-radius: 3px 3px 0 0;
    animation: barGrow 1.2s ease-out both;
}
@keyframes barGrow {
    from { transform: scaleY(0); transform-origin: bottom; }
    to   { transform: scaleY(1); transform-origin: bottom; }
}

.dm-table { flex-shrink: 0; }
.dm-tr {
    display: flex;
    gap: .35rem;
    margin-bottom: .3rem;
}
.dm-tr span {
    flex: 1;
    height: 7px;
    border-radius: 3px;
    background: rgba(255,255,255,.07);
}
.dm-th span { background: rgba(255,255,255,.14); height: 8px; }
.dm-tr span:first-child { flex: 2; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.4);
    font-size: .75rem;
    animation: bounce 2s ease-in-out infinite;
    transition: color .2s;
}
.hero-scroll:hover { color: rgba(255,255,255,.7); }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════════════════════════════════
   SEKTÖR BANDI
════════════════════════════════════════════════════ */
.sector-bar {
    background: var(--dark-2);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 1.1rem 0;
    overflow: hidden;
}
.sector-track { overflow: hidden; }
.sector-items {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: scrollLeft 22s linear infinite;
    width: max-content;
}
.sector-items span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255,255,255,.45);
}
.sector-items i { color: var(--primary); opacity: .8; }
@keyframes scrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════
   ÖZELLİKLER
════════════════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}
.feature-card:hover {
    border-color: rgba(196,30,26,.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-icon {
    width: 52px; height: 52px;
    border-radius: 13px;
    background: rgba(0,0,0,.06);
    background: color-mix(in srgb, var(--ic) 14%, transparent);
    border: 1px solid rgba(0,0,0,.08);
    border: 1px solid color-mix(in srgb, var(--ic) 24%, transparent);
    display: flex; align-items: center; justify-content: center;
    color: var(--ic);
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════════════════
   MODÜLLER
════════════════════════════════════════════════════ */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.module-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
}
.module-card:hover {
    border-color: rgba(196,30,26,.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.module-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.module-card h3 { font-size: .97rem; font-weight: 700; margin-bottom: .4rem; }
.module-card > p { font-size: .82rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.55; }

.mod-list { display: flex; flex-direction: column; gap: .35rem; }
.mod-list li {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    color: var(--text-muted);
}
.mod-list i { color: var(--primary); font-size: .7rem; flex-shrink: 0; }

/* ════════════════════════════════════════════════════
   İSTATİSTİKLER
════════════════════════════════════════════════════ */
.stats-section {
    background: var(--dark);
    padding: 5rem 0;
}
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 1rem 2.5rem; }
.stat-val {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: .5rem;
}
.stat-lbl { font-size: .88rem; color: rgba(255,255,255,.45); font-weight: 500; }
.stat-sep { width: 1px; height: 60px; background: rgba(255,255,255,.1); }

/* ════════════════════════════════════════════════════
   NASIL ÇALIŞIR
════════════════════════════════════════════════════ */
.steps-grid {
    display: flex;
    align-items: center;
    gap: 0;
}
.step-card {
    flex: 1;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
}
.step-card:hover { border-color: rgba(196,30,26,.3); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.step-num {
    position: absolute;
    top: -1px; left: -1px;
    background: var(--primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    padding: .25rem .55rem;
    border-radius: var(--radius-lg) 0 var(--radius) 0;
}
.step-icon-wrap {
    width: 64px; height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0 auto 1.2rem;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; }
.step-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

.step-arrow {
    flex-shrink: 0;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    opacity: .5;
}

/* ════════════════════════════════════════════════════
   TESTİMONİALS
════════════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testi-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}
.testi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #f59e0b);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.testi-stars { color: #f59e0b; font-size: .85rem; margin-bottom: 1rem; letter-spacing: 1px; }
.testi-card > p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--av);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; font-weight: 700; }
.testi-author span   { font-size: .78rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════
   FİYATLANDIRMA
════════════════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.price-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.price-card.featured {
    background: linear-gradient(145deg, var(--primary) 0%, #9f1613 100%);
    border-color: transparent;
    color: #fff;
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(196,30,26,.4);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.price-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--primary);
    font-size: .72rem;
    font-weight: 800;
    padding: .3rem .9rem;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.price-head { margin-bottom: 1.5rem; }
.price-head h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; }
.price-card.featured .price-head h3 { color: rgba(255,255,255,.9); }
.price-card.featured .price-head p  { color: rgba(255,255,255,.65); }

.price-amount {
    display: flex;
    align-items: baseline;
    gap: .2rem;
    margin-bottom: .4rem;
}
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.price-card.featured .price-currency { color: rgba(255,255,255,.85); }
.price-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -.03em;
    line-height: 1;
}
.price-card.featured .price-num { color: #fff; }
.price-per { font-size: .9rem; color: var(--text-muted); }
.price-card.featured .price-per { color: rgba(255,255,255,.65); }
.price-head p { font-size: .85rem; color: var(--text-muted); }

.price-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 1.75rem;
    min-height: 220px;
}
.price-list li {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .875rem;
}
.price-list li i { font-size: .75rem; flex-shrink: 0; }
.price-list li.ok i { color: var(--primary); }
.price-card.featured .price-list li.ok i { color: rgba(255,255,255,.95); }
.price-list li.no { opacity: .4; }
.price-list li.no i { color: currentColor; }

/* ════════════════════════════════════════════════════
   SSS / FAQ
════════════════════════════════════════════════════ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item.open { border-color: rgba(196,30,26,.3); }

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.15rem 1.4rem;
    background: none;
    border: none;
    text-align: left;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: color .2s;
}
.faq-q:hover { color: var(--primary); }
.faq-icon { font-size: .75rem; flex-shrink: 0; transition: transform .3s ease; color: var(--text-muted); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}
.faq-a p {
    padding: 0 1.4rem 1.2rem;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ════════════════════════════════════════════════════
   DEMO FORM
════════════════════════════════════════════════════ */
.demo-section { background: var(--bg); padding: 6rem 0; }

.demo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.demo-content .section-badge { display: inline-block; }
.demo-content h2 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    font-weight: 800;
    margin: .7rem 0 1rem;
    line-height: 1.2;
}
.demo-content > p { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }

.demo-benefits { display: flex; flex-direction: column; gap: .75rem; }
.demo-benefit {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .92rem;
}
.demo-benefit i { color: var(--primary); font-size: .9rem; }

.demo-form-wrap {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select {
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .9rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    transition: border-color .2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(196,30,26,.1); }
.form-group input::placeholder { color: #c0c8d2; }

.form-note {
    text-align: center;
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
}

.form-success {
    text-align: center;
    padding: 3rem 1rem;
}
.form-success i { font-size: 3rem; color: #10b981; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .5rem; }
.form-success p  { color: var(--text-muted); }

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: .6rem; }
.footer-socials a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: .85rem;
    transition: var(--transition);
}
.footer-socials a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    color: rgba(255,255,255,.9);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
}
.footer-col i { color: var(--primary); opacity: .7; width: 14px; font-size: .8rem; flex-shrink: 0; }
.footer-col a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col span { color: rgba(255,255,255,.45); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: .82rem;
    color: rgba(255,255,255,.3);
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.3); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════════════════
   SCROLL ANİMASYONLARI
════════════════════════════════════════════════════ */
[data-aos] {
    opacity: 0;
    transition: opacity .55s ease, transform .55s ease;
}
[data-aos="fade-up"]    { transform: translateY(28px); }
[data-aos="fade-left"]  { transform: translateX(36px); }
[data-aos="fade-right"] { transform: translateX(-36px); }
[data-aos="zoom-in"]    { transform: scale(.88); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-visual { width: 400px; }
}

@media (max-width: 992px) {
    .hero-inner { flex-direction: column; text-align: center; padding-top: calc(var(--nav-h) + 3rem); gap: 3rem; }
    .hero-content { max-width: 100%; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { width: 100%; max-width: 460px; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { flex-direction: column; gap: 1rem; }
    .step-arrow { transform: rotate(90deg); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-4px); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .demo-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn-ghost { display: none; }
    .hamburger { display: flex; }
    .navbar .nav-actions .btn-ghost { display: none; }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(13,17,23,.97);
        backdrop-filter: blur(16px);
        padding: 1.5rem;
        gap: .25rem;
        z-index: 999;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .nav-links.mobile-open .nav-link {
        color: rgba(255,255,255,.8);
        padding: .75rem 1rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    .nav-links.mobile-open .nav-link:hover { background: rgba(255,255,255,.08); color: #fff; }
    .nav-overlay { display: block; }

    .features-grid { grid-template-columns: 1fr; }
    .modules-grid  { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { flex-direction: column; gap: 0; }
    .stat-sep { width: 120px; height: 1px; }
    .stat-item { padding: 1.25rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { gap: 1rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn-lg { width: 100%; justify-content: center; }
    .hero-title { font-size: 2.5rem; }
    .demo-form-wrap { padding: 1.5rem; }
}
