/* ============================================================
   HukukPanelim — Açık tema, mavi/lacivert (güven + prestij)
   ============================================================ */

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

:root {
    /* --- Açık zemin tonları --- */
    --bg:           #FBF9F5;
    --bg-2:         #FFFFFF;
    --bg-3:         #F5F1E8;
    --bg-card:      #FFFFFF;

    /* --- Lacivert metin --- */
    --text:         #18212D;
    --text-2:       #4A5563;
    --text-3:       #8B95A3;

    /* --- Altın/Turuncu vurgu (logodan) --- */
    --accent:       #BE8C50;
    --accent-2:     #D2A05A;
    --accent-3:     #AA783C;
    --accent-soft:  rgba(190, 140, 80, 0.10);
    --accent-soft-2:rgba(190, 140, 80, 0.15);
    --accent-glow:  rgba(190, 140, 80, 0.30);

    --border:       rgba(24, 33, 45, 0.08);
    --border-2:     rgba(24, 33, 45, 0.14);
    --border-accent:rgba(190, 140, 80, 0.35);

    --grad:         linear-gradient(135deg, #BE8C50 0%, #D2A05A 100%);
    --grad-deep:    linear-gradient(135deg, #1E2A38 0%, #18212D 100%);
    --grad-text:    linear-gradient(135deg, #AA783C 0%, #D2A05A 100%);
    --grad-hero:    linear-gradient(180deg, #F9F5EC 0%, #FBF9F5 100%);

    --success:      #16A34A;
    --success-soft: rgba(22, 163, 74, 0.10);
    --partial:      #D97706;
    --partial-soft: rgba(217, 119, 6, 0.12);
    --danger:       #DC2626;
    --danger-soft:  rgba(220, 38, 38, 0.10);

    --whatsapp:     #25D366;
    --whatsapp-d:   #1FB855;

    /* --- Font --- */
    --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    --radius:       14px;
    --radius-lg:    20px;
    --radius-sm:    10px;
    --container:    1200px;
    --container-narrow: 820px;

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow:    0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 10px 30px -5px rgba(15, 23, 42, 0.12), 0 8px 16px -8px rgba(15, 23, 42, 0.10);
    --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
    --ease:      cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; }

::selection { background: var(--accent-soft-2); color: var(--accent-3); }

/* Özel scrollbar — ince, şık, otomatik gizlenen */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--accent-3);
    border-radius: 8px;
    border: 2px solid transparent;
    background-clip: content-box;
    transition: background .25s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
    background-clip: content-box;
}
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-3) transparent;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0;
    background: var(--grad);
    z-index: 200;
    transition: width .1s linear;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* ============================================================
   LOGO
   ============================================================ */
.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--text);
}
.logo-mark { display: inline-flex; flex-shrink: 0; }
.logo-mark svg { border-radius: 8px; }
.logo-word { color: var(--text); }
.logo-word--accent { color: var(--accent); }

/* Gerçek logo görseli */
.logo-img {
    height: 68px;
    width: auto;
    display: block;
    object-fit: contain;
}
@media (max-width: 768px) {
    .logo-img { height: 52px; }
}
@media (max-width: 480px) {
    .logo-img { height: 44px; }
}

/* Footer logo — "Hukuk" kısmı beyaz (logo filter ile parlaklık açılır) */
.footer .logo-img {
    filter: brightness(0) invert(1) opacity(0.95);
    height: 58px;
}
.footer:hover .logo-img { opacity: 1; filter: brightness(0) invert(1); }
@media (max-width: 768px) {
    .footer .logo-img { height: 48px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .3s var(--ease);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn svg { transition: transform .3s var(--ease); flex-shrink: 0; }
.btn--primary {
    background: var(--grad);
    color: #fff;
    box-shadow: var(--shadow);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px var(--accent-glow);
}
.btn--primary:hover svg { transform: translateX(3px); }
.btn--whatsapp {
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover {
    transform: translateY(-2px);
    background: var(--whatsapp-d);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}
.btn--ghost {
    background: var(--bg-2);
    color: var(--text);
    border-color: var(--border-2);
}
.btn--ghost:hover {
    background: var(--bg-3);
    border-color: var(--accent);
    color: var(--accent);
}
.btn--ghost:hover svg { transform: translateX(3px); }
.btn--ghost-light {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text);
    border-color: var(--border-2);
    backdrop-filter: blur(10px);
}
.btn--ghost-light:hover {
    background: #fff;
    border-color: var(--accent);
    color: var(--accent);
}
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }

.text-gold {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all .35s var(--ease);
    background: transparent;
}
.nav--scrolled {
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-2);
    position: relative;
    transition: color .25s var(--ease);
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--grad);
    transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav__toggle span {
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 160px 0 90px;
    overflow: hidden;
    background: var(--grad-hero);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.25; }
.hero__glow--1 { width: 600px; height: 600px; background: #D2A05A; top: -200px; right: -100px; }
.hero__glow--2 { width: 500px; height: 500px; background: #E0B870; bottom: -150px; left: -100px; opacity: 0.2; }
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(190, 140, 80, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 140, 80, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
}
.hero__inner { position: relative; z-index: 1; text-align: center; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--bg-2);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}
.hero__badge-dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text);
}
.hero__subtitle {
    max-width: 680px;
    margin: 0 auto 36px;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--text-2);
    line-height: 1.7;
}
.hero__subtitle strong { color: var(--accent); font-weight: 600; }

.hero__cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; margin-bottom: 64px; }
.hero__trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--text-2); }
.hero__trust-item svg { color: var(--accent); }

.hero__preview { position: relative; max-width: 980px; margin: 0 auto; }
.hero__preview-glow {
    position: absolute;
    inset: -20px;
    background: var(--grad);
    border-radius: var(--radius-lg);
    filter: blur(60px);
    opacity: 0.12;
    z-index: -1;
}
.browser {
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.browser__bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 18px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
}
.browser__bar > span { width: 12px; height: 12px; border-radius: 50%; background: var(--border-2); }
.browser__bar > span:nth-child(1) { background: #FF5F57; }
.browser__bar > span:nth-child(2) { background: #FEBC2E; }
.browser__bar > span:nth-child(3) { background: #28C840; }
.browser__url {
    margin-left: 16px;
    padding: 5px 16px;
    background: var(--bg-3);
    border-radius: 8px;
    font-size: 12.5px;
    color: var(--text-3);
    font-family: ui-monospace, 'SF Mono', monospace;
}
.browser__body { padding: 18px; }

.mock { display: grid; grid-template-columns: 64px 1fr; gap: 14px; min-height: 340px; }
.mock__sidebar { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 10px; display: flex; flex-direction: column; gap: 8px; }
.mock__brand { width: 32px; height: 32px; background: var(--grad); border-radius: 8px; margin-bottom: 8px; }
.mock__nav { display: flex; flex-direction: column; gap: 6px; }
.mock__nav-item { height: 28px; background: var(--bg-3); border-radius: 7px; }
.mock__nav-item--active { background: var(--accent-soft); border: 1px solid var(--accent); }
.mock__main { display: flex; flex-direction: column; gap: 14px; }
.mock__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mock__card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mock__card span:nth-child(1) { height: 8px; width: 60%; background: var(--bg-3); border-radius: 4px; }
.mock__card span:nth-child(2) { height: 22px; width: 80%; background: var(--accent-soft); border-radius: 5px; }
.mock__chart {
    flex: 1;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    align-items: flex-end;
    min-height: 160px;
}
.mock__chart-bars { display: flex; align-items: flex-end; gap: 10px; width: 100%; height: 100%; }
.mock__chart-bars span {
    flex: 1;
    background: var(--grad);
    border-radius: 5px 5px 0 0;
    opacity: 0.9;
    animation: barRise 1.2s var(--ease) backwards;
}
@keyframes barRise { from { height: 0 !important; opacity: 0; } }

/* ============================================================
   HERO MOCKUP — Gerçek admin panel layout'u (beyaz tema, 1:1)
   ============================================================ */
.adm {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 480px;
    background: var(--bg-2);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-2);
    pointer-events: none; /* tıklanmaz */
    user-select: none;
    box-shadow: var(--shadow-lg);
    text-align: left; /* hero__inner'ın text-align:center'ını eze */
}

/* --- SIDEBAR (gerçek panel mantığı: 8px 12px padding) --- */
.adm__sidebar {
    background: var(--bg-3);
    border-right: 1px solid var(--border);
    padding: 8px 12px 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.adm__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 6px;
}
.adm__mono {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    background: var(--grad);
    border-radius: 6px;
    padding: 5px 8px;
    flex-shrink: 0;
}
.adm__brand-text {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-2);
}
.adm__nav { display: flex; flex-direction: column; gap: 1px; }
.adm__nav-group {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-3);
    padding: 12px 14px 6px;
}
.adm__nav-group:first-child { padding-top: 4px; }
.adm__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    border-radius: 6px;
    color: var(--text-2);
    font-size: 12px;
    font-weight: 500;
    position: relative;
}
.adm__link--active {
    background: var(--accent-soft);
    color: var(--accent);
}
.adm__link--active::before {
    content: '';
    position: absolute;
    left: 0; top: 6px; bottom: 6px;
    width: 3px;
    background: var(--accent);
    border-radius: 0 2px 2px 0;
}
.adm__ic {
    width: 16px;
    height: 16px;
    color: var(--accent);
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
}
.adm__link--active .adm__ic { opacity: 1; }
.adm__lbl { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adm__badge {
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* --- ANA İÇERİK --- */
.adm__main { display: flex; flex-direction: column; min-width: 0; background: var(--bg-2); }
.adm__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
}
.adm__page-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}
.adm__user { display: flex; flex-direction: column; align-items: flex-end; }
.adm__user-name { font-size: 12px; font-weight: 600; color: var(--text); }
.adm__user-role { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }

/* --- İÇERİK: krem zemin (gerçek panel gibi) --- */
.adm__content {
    flex: 1;
    padding: 22px;
    background: var(--bg-3);
    overflow: hidden;
}

/* KPI kartları — gerçek paneldeki koyu kartlar */
.adm__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}
.adm__stat {
    background: #1A1A1A;
    color: #E8E1D4;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.adm__stat-ic {
    color: rgba(232,225,212,0.5);
    display: inline-flex;
    margin-bottom: 2px;
}
.adm__stat--accent {
    background: var(--grad);
    color: #fff;
}
.adm__stat--accent .adm__stat-ic { color: rgba(255,255,255,0.85); }
.adm__stat-val {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
.adm__stat-lbl {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(232,225,212,0.55);
}
.adm__stat--accent .adm__stat-lbl { color: rgba(255,255,255,0.9); }

/* Widget'lar — gerçek paneldeki beyaz kartlar */
.adm__widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.adm__widget {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
}
.adm__widget-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.adm__widget-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}
.adm__widget-link {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
}
.adm__rows { display: flex; flex-direction: column; gap: 2px; }
.adm__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.adm__row:last-child { border-bottom: none; }
.adm__row-main {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.adm__row-ic {
    color: var(--accent);
    display: inline-flex;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}
.adm__row-ic--gavel { color: #7C3AED; }
.adm__row-ic--clock { color: #0891B2; }
.adm__row-ic--cal { color: #DC2626; }
.adm__row-sub {
    font-size: 10.5px;
    color: var(--text-3);
    white-space: nowrap;
    font-weight: 500;
    flex-shrink: 0;
}

/* ============================================================
   TRUST STRIP — yeniden tasarim
   ============================================================ */
.trust-strip {
    padding: 56px 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
}
.trust-strip__inner { text-align: center; }
.trust-strip__label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
}
.trust-strip__logos {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 14px;
}
.trust-strip__chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--text-2);
    transition: all .25s var(--ease);
}
.trust-strip__chip:hover {
    background: var(--accent-soft);
    border-color: var(--border-accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.trust-strip__chip svg { color: var(--accent); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 96px 0; }
.section--tinted { background: var(--bg-3); }
.section--alt { background: var(--bg-2); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}
.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
}
.section__title--left { text-align: left; }
.section__desc { font-size: 1.05rem; color: var(--text-2); line-height: 1.7; }
.section__desc--left { text-align: left; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card__icon {
    width: 56px; height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    color: var(--accent);
    margin-bottom: 20px;
}
.feature-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; color: var(--text); }
.feature-card p { color: var(--text-2); font-size: 0.96rem; line-height: 1.65; }

/* ============================================================
   MODULES
   ============================================================ */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.module-group {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.module-group__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.module-group__icon {
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    color: var(--accent);
    flex-shrink: 0;
}
.module-group__head h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.module-group__desc { font-size: 0.82rem; color: var(--text-3); margin-top: 2px; }
.module-list li { display: flex; align-items: center; gap: 12px; padding: 9px 0; font-size: 0.95rem; color: var(--text-2); }
.module-list__dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

/* ============================================================
   SPLIT (Why us) — yeniden tasarim
   ============================================================ */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why__text { }
.why__list { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.why__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s var(--ease);
    box-shadow: var(--shadow-sm);
}
.why__item:hover {
    transform: translateX(6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow);
}
.why__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    color: var(--accent);
}
.why__item strong { display: block; font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.why__item span { font-size: 0.94rem; color: var(--text-2); line-height: 1.6; }

.why__visual { display: flex; justify-content: center; }
.why__visual-card {
    width: 100%;
    max-width: 420px;
    position: relative;
    padding-top: 20px;
}

/* Canlı panel kartı */
.why__panel {
    background: var(--bg-card);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}
.why__panel-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.why__panel-pulse {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--success-soft);
    animation: pulse 2s ease-in-out infinite;
}
.why__panel-status {
    font-size: 11px;
    font-weight: 600;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.why__panel-time {
    margin-left: auto;
    font-family: 'Georgia', serif;
    font-size: 13px;
    color: var(--text-3);
}
.why__panel-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}
.why__panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.why__panel-stat {
    background: var(--bg-3);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
}
.why__panel-stat--accent { background: var(--grad-deep); }
.why__panel-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}
.why__panel-stat--accent .why__panel-num { color: #fff; }
.why__panel-lbl {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.why__panel-stat--accent .why__panel-lbl { color: rgba(255,255,255,0.85); }
.why__panel-chart {
    background: var(--bg-3);
    border-radius: var(--radius-sm);
    padding: 12px;
}
.why__panel-chart svg { width: 100%; height: 50px; }

/* Özellik rozetleri */
.why__badges {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.why__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-2);
    box-shadow: var(--shadow-sm);
    flex: 1;
    justify-content: center;
    min-width: 0;
}
.why__badge-ic { color: var(--accent); display: inline-flex; }

/* Yüzen rozet */
.why__float {
    position: absolute;
    top: -8px;
    right: -12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: floatBob 3s ease-in-out infinite;
}
@keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.why__float-ic {
    width: 26px; height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}
.why__float strong { display: block; font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.2; }
.why__float small { font-size: 10.5px; color: var(--text-3); }

/* Eski mini-panel class'ları (kullanımda değil ama referans için) */
.mini-panel { display: none; }

/* ============================================================
   STATS
   ============================================================ */
.section--stats { background: var(--grad-deep); color: #fff; }
.section--stats .section__eyebrow { color: var(--accent-2); }
.section--stats .section__title { color: #fff; }
.section--stats .section__desc { color: rgba(255,255,255,0.75); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat__num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 6px;
}
.stat__label { font-size: 0.92rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================================
   DEMOS
   ============================================================ */
.demo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.demo-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all .35s var(--ease);
    box-shadow: var(--shadow-sm);
}
.demo-card:hover { transform: translateY(-4px); border-color: var(--border-accent); box-shadow: var(--shadow-lg); }
.demo-card--featured {
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg-card) 100%);
    border: 2px solid var(--border-accent);
}
.demo-card__badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--grad);
    color: #fff;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.demo-card__icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    color: var(--accent);
}
.demo-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.demo-card p { color: var(--text-2); font-size: 0.95rem; line-height: 1.6; margin-bottom: 22px; }

.demo-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 16px 24px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-2);
    font-size: 0.93rem;
}
.demo-note svg { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.package {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: all .35s var(--ease);
    box-shadow: var(--shadow-sm);
}
.package:hover { transform: translateY(-4px); border-color: var(--border-accent); box-shadow: var(--shadow-lg); }
.package--featured {
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg-card) 100%);
    border: 2px solid var(--border-accent);
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
    z-index: 1;
}
.package--featured:hover { transform: scale(1.02) translateY(-4px); }
.package__badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    color: #fff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 4px 12px var(--accent-glow);
}
.package__head { margin-bottom: 20px; }
.package__head h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.package__tagline { font-size: 0.9rem; color: var(--accent); font-weight: 500; }
.package__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 14px; flex-wrap: wrap; }
.package__currency { font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.package__amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--text); line-height: 1; }
.package__period { font-size: 0.85rem; color: var(--text-3); margin-left: 6px; }
.package__desc { font-size: 0.92rem; color: var(--text-2); margin-bottom: 22px; line-height: 1.6; }
.package__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; flex: 1; }
.package__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text); line-height: 1.5; }
.package__features li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.package__features--no { color: var(--text-3) !important; }
.package__features--no svg { color: var(--text-3) !important; }
.package__cta { width: 100%; margin-top: auto; }

.packages__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    font-size: 0.95rem;
    color: var(--text-2);
}
.packages__note svg { color: var(--accent); }
.packages__note a { color: var(--accent); font-weight: 700; }
.packages__note a:hover { text-decoration: underline; }

/* ============================================================
   COMPARISON TABLE (rakip)
   ============================================================ */
.compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare__table {
    width: 100%;
    min-width: 640px;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.compare__table th,
.compare__table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.compare__table thead th {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    background: var(--bg-3);
    color: var(--text);
    border-bottom: 2px solid var(--border-2);
}
.compare__table th:first-child,
.compare__table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-2);
}
.compare__table th--hp,
.compare__table .col-hp {
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
}
.compare__table thead .col-hp {
    background: var(--accent);
    color: #fff;
}
.compare__table tbody tr:last-child td { border-bottom: none; }
.compare__table tbody tr:hover td { background: var(--bg-3); }
.compare__table tbody tr:hover .col-hp { background: var(--accent-soft-2); }
.compare__cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
}
.compare__cell--yes { background: var(--success-soft); color: var(--success); }
.compare__cell--no { background: var(--danger-soft); color: var(--danger); }
.compare__cell--partial { background: var(--partial-soft); color: var(--partial); }
.compare__cell--partial svg { width: 16px; height: 16px; }

.compare__legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--text-2);
}
.compare__legend span { display: inline-flex; align-items: center; gap: 8px; }
.compare__legend .compare__cell { width: 20px; height: 20px; }
.compare__legend .compare__cell svg { width: 12px; height: 12px; }

/* ============================================================
   FAQ — soft animasyon
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
    box-shadow: var(--shadow-sm);
}
.faq__item:hover { border-color: var(--border-2); }
.faq__item[open] { border-color: var(--border-accent); box-shadow: var(--shadow); }
.faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    transition: color .25s var(--ease);
    color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: 50%;
    color: var(--accent);
    transition: transform .4s var(--ease-out), background .3s var(--ease);
}
.faq__item[open] .faq__icon { transform: rotate(180deg); background: var(--accent); color: #fff; }
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease-out);
}
.faq__answer-inner { padding: 0 24px 22px; color: var(--text-2); font-size: 0.97rem; line-height: 1.7; }
.faq__item.faq__item--animating .faq__answer { transition: max-height .45s var(--ease-out); }

/* ============================================================
   CTA — yeniden tasarim
   ============================================================ */
.cta { padding: 96px 0; }
.cta__card {
    position: relative;
    background: linear-gradient(135deg, #18212D 0%, #1E2A38 50%, #2A3A4A 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 72px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.cta__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(224, 184, 112, 0.35) 0%, transparent 50%);
    pointer-events: none;
}
.cta__decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta__decor-1, .cta__decor-2 {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
}
.cta__decor-1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.cta__decor-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; border-color: rgba(255,255,255,0.06); }
.cta__content { position: relative; z-index: 1; }
.cta__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}
.cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.15;
}
.cta__title-accent {
    background: linear-gradient(135deg, #FCD34D 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta__desc { max-width: 560px; margin: 0 auto 36px; color: rgba(255,255,255,0.92); font-size: 1.05rem; }
.cta__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.cta__btn-primary {
    background: #fff;
    color: var(--accent-3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.cta__btn-primary:hover { background: var(--bg-3); transform: translateY(-2px); }
.cta__btn-wa {
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.cta__btn-wa:hover { background: var(--whatsapp-d); transform: translateY(-2px); }

.cta__contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 760px; margin: 0 auto; }
.cta__contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius);
    text-align: left;
    transition: all .25s var(--ease);
    backdrop-filter: blur(10px);
}
.cta__contact-item:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); transform: translateY(-3px); }
.cta__contact-ic {
    width: 42px; height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #fff;
    flex-shrink: 0;
}
.cta__contact-info { display: flex; flex-direction: column; min-width: 0; }
.cta__contact-label { font-size: 0.72rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; }
.cta__contact-val { font-size: 0.93rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.cta__hint { margin-top: 36px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.cta__hint a { color: #fff; font-weight: 600; }
.cta__hint a:hover { text-decoration: underline; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-fab {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 90;
    width: 60px; height: 60px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    transition: all .3s var(--ease);
}
.whatsapp-fab svg { position: relative; z-index: 2; }
.whatsapp-fab:hover { transform: scale(1.08); background: var(--whatsapp-d); }
.whatsapp-fab__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--whatsapp);
    animation: waPulse 2s ease-out infinite;
    z-index: 1;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}
.whatsapp-fab__tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease);
}
.whatsapp-fab:hover .whatsapp-fab__tooltip { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--text); color: var(--bg); padding: 64px 0 32px; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer .nav__brand { color: #fff; }
.footer .logo-word { color: #fff; }
.footer .logo-word--accent { color: var(--accent-2); }
.footer__brand .nav__brand { margin-bottom: 14px; }
.footer__tagline { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 280px; margin-bottom: 16px; }
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer__contact svg { color: var(--accent-2); }
.footer__contact a:hover { color: var(--accent-2); }
.footer__col h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; color: #fff; }
.footer__col a { display: block; color: rgba(255,255,255,0.7); font-size: 0.93rem; padding: 5px 0; }
.footer__col a:hover { color: var(--accent-2); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
}
.footer__copy { margin: 0; }
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__credit { margin: 0; }
.footer__madeby {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: color .25s var(--ease);
}
.footer__madeby:hover { color: var(--accent-2); }
.footer__madeby:hover span { color: var(--accent-2); }
.footer__madeby span { transition: color .25s var(--ease); }
.footer__madeby-logo {
    height: 22px;
    width: auto;
    display: inline-block;
    opacity: 0.85;
    transition: opacity .25s var(--ease);
    filter: brightness(0) invert(1); /* koyu logoyu beyaz yap (footer koyu zemin) */
}
.footer__madeby:hover .footer__madeby-logo { opacity: 1; }
.footer__madeby-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    transition: all .25s var(--ease);
}
.footer__madeby:hover .footer__madeby-arrow {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.features .feature-card:nth-child(2) { transition-delay: .08s; }
.features .feature-card:nth-child(3) { transition-delay: .16s; }
.features .feature-card:nth-child(4) { transition-delay: .08s; }
.features .feature-card:nth-child(5) { transition-delay: .16s; }
.features .feature-card:nth-child(6) { transition-delay: .24s; }
.demo-grid .demo-card:nth-child(2) { transition-delay: .08s; }
.demo-grid .demo-card:nth-child(3) { transition-delay: .16s; }
.modules .module-group:nth-child(2) { transition-delay: .08s; }
.modules .module-group:nth-child(3) { transition-delay: .16s; }
.packages .package:nth-child(2) { transition-delay: .08s; }
.packages .package:nth-child(3) { transition-delay: .16s; }
.stats .stat:nth-child(2) { transition-delay: .08s; }
.stats .stat:nth-child(3) { transition-delay: .16s; }
.stats .stat:nth-child(4) { transition-delay: .24s; }

/* ============================================================
   RESPONSIVE — Mobil mükemmel
   ============================================================ */
@media (max-width: 968px) {
    .features, .modules, .demo-grid, .packages { grid-template-columns: 1fr 1fr; }
    .package--featured { transform: none; }
    .package--featured:hover { transform: translateY(-4px); }
    .why { grid-template-columns: 1fr; gap: 40px; }
    .why__visual-card { max-width: 100%; margin: 0 auto; }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .cta__contact-grid { grid-template-columns: 1fr 1fr; }
    .adm { grid-template-columns: 140px 1fr; }
    .adm__sidebar { padding: 12px 6px; }
    .adm__lbl { font-size: 10.5px; }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__actions .btn { display: none; }
    .nav__toggle { display: flex; }
    .nav.nav--open .nav__links {
        display: flex;
        flex-direction: column;
        position: absolute;
        background: var(--bg-2);
        top: 100%; left: 16px; right: 16px;
        border: 1px solid var(--border-2);
        border-radius: var(--radius);
        padding: 20px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
    }
    .hero { padding: 120px 0 56px; }
    .hero__cta { flex-direction: column; }
    .hero__cta .btn { width: 100%; }
    .hero__trust { gap: 14px 22px; justify-content: center; }
    .hero__trust-item span { font-size: 12px; }
    .hero__trust-item svg { width: 16px; height: 16px; }
    .section { padding: 56px 0; }
    .section__head { margin-bottom: 40px; }
    .features, .modules, .demo-grid, .packages, .stats { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 28px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cta__actions { flex-direction: column; }
    .cta__actions .btn { width: 100%; }
    .cta__contact-grid { grid-template-columns: 1fr; }
    .cta__card { padding: 48px 22px; }
    .why__list { gap: 12px; }
    .whatsapp-fab { bottom: 18px; right: 18px; width: 54px; height: 54px; }
    .whatsapp-fab svg { width: 26px; height: 26px; }
    .whatsapp-fab__tooltip { display: none; }
    .browser__url { font-size: 11px; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .compare__table { font-size: 0.82rem; }
    .compare__table th, .compare__table td { padding: 10px 8px; }
    .compare__table thead th small { font-size: 0.7rem; font-weight: 400; }

    /* Hero mockup: sidebar küçül, font küçül */
    .adm { grid-template-columns: 56px 1fr; min-height: 380px; }
    .adm__sidebar { padding: 10px 4px; }
    .adm__brand { padding: 0 4px 10px; gap: 0; justify-content: center; }
    .adm__brand-text { display: none; }
    .adm__nav-group { display: none; }
    .adm__link { padding: 8px 6px; justify-content: center; }
    .adm__lbl { display: none; }
    .adm__badge { display: none; }
    .adm__link--active::before { top: 6px; bottom: 6px; }
    .adm__topbar { padding: 10px 12px; }
    .adm__page-title { font-size: 13px; }
    .adm__user-name { font-size: 11px; }
    .adm__user-role { font-size: 9px; }
    .adm__content { padding: 12px; }
    .adm__stats { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 12px; }
    .adm__stat { padding: 10px; }
    .adm__stat-val { font-size: 22px; }
    .adm__stat-lbl { font-size: 9px; }
    .adm__widgets { grid-template-columns: 1fr; gap: 10px; }
    .adm__widget { padding: 10px; }
    .adm__widget-title { font-size: 11px; }
    .adm__widget-link { font-size: 9px; }
    .adm__row { padding: 6px 0; }
    .adm__row-no { font-size: 10px; }
    .adm__row-sub { font-size: 9px; }

    /* Why görsel */
    .why__float { right: 0; top: -4px; padding: 8px 11px; }
    .why__float strong { font-size: 11px; }
    .why__float small { font-size: 9.5px; }
    .why__float-ic { width: 22px; height: 22px; }
    .why__badge { padding: 7px 10px; font-size: 11px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .feature-card, .module-group, .demo-card { padding: 22px 18px; }
    .feature-card__icon { width: 48px; height: 48px; }
    .feature-card h3 { font-size: 1.08rem; }
    .faq__item summary { padding: 16px 18px; font-size: 0.96rem; }
    .faq__answer-inner { padding: 0 18px 18px; font-size: 0.92rem; }
    .package { padding: 26px 18px; }
    .package__amount { font-size: 1.9rem; }
    .package__currency { font-size: 1.1rem; }
    .hero__title { font-size: 1.85rem; }
    .hero__subtitle { font-size: 0.96rem; }
    .hero__badge { font-size: 12px; padding: 6px 14px; }
    .nav__brand { font-size: 18px; }
    .logo-mark svg { width: 28px; height: 28px; }
    .trust-strip__chip { padding: 9px 14px; font-size: 12.5px; }
    .cta__contact-item { padding: 14px; gap: 10px; }
    .cta__contact-ic { width: 36px; height: 36px; }
    .cta__contact-val { font-size: 0.85rem; }
    .cta__eyebrow { font-size: 11px; padding: 5px 14px; }
    .section__title { font-size: 1.55rem; }
    .section__eyebrow { font-size: 11.5px; }
    .stat__num { font-size: 1.9rem; }
    .compare__legend { flex-wrap: wrap; gap: 10px; font-size: 11.5px; }
}

/* Çok küçük ekranlar (iPhone SE) */
@media (max-width: 360px) {
    .hero__title { font-size: 1.7rem; }
    .hero__trust { gap: 10px 16px; }
    .adm__stats { grid-template-columns: 1fr 1fr; }
    .package__amount { font-size: 1.7rem; }
    .btn { padding: 11px 18px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}
