:root {
    --bg: #f7efe4;
    --bg-soft: #fbf6ef;
    --ink: #2f1c12;
    --ink-soft: #5a3f2d;
    --brand: #a4602f;
    --brand-strong: #7a4019;
    --accent: #dfb279;
    --line: rgba(74, 43, 24, 0.12);
    --radius-lg: 26px;
    --radius-md: 18px;
    --shadow-soft: 0 12px 35px rgba(67, 40, 21, 0.12);
    --shadow-strong: 0 18px 60px rgba(67, 40, 21, 0.2);
    --container: min(1140px, 92vw);
}

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

body {
    font-family: 'Manrope', sans-serif;
    background: radial-gradient(circle at 15% -10%, #ffe7ca 0%, var(--bg) 48%, #f4eadf 100%);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}


img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin-inline: auto; }


/* ════════ GRAIN ════════ */
.grain-layer {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(75,45,27,0.06) 0.5px, transparent 0.5px);
    background-size: 2px 2px;
    opacity: 0.35;
    pointer-events: none;
    z-index: -1;
}

/* ════════ HEADER ════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    transition: 0.3s ease;
    backdrop-filter: blur(0px);
}

.site-header.scrolled {
    background: rgba(251,246,239,0.78);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    letter-spacing: 0.08em;
}

.nav-badge {
    background: linear-gradient(120deg, var(--brand), var(--brand-strong));
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.main-nav a {
    font-weight: 700;
    font-size: 0.88rem;
    opacity: 0.85;
    position: relative;
    white-space: nowrap;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
}

.nav-ziyaret {
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--brand), var(--brand-strong));
    color: #fff !important;
    opacity: 1 !important;
    font-weight: 800;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-ziyaret:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    opacity: 1 !important;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: 0.3s ease;
}

/* ════════ SECTION ════════ */
.section { padding: clamp(70px, 10vw, 120px) 0; }

.eyebrow {
    letter-spacing: 0.17em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--brand-strong);
    font-size: 0.78rem;
    margin-bottom: 14px;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1;
    margin-bottom: 16px;
}

.section-head.center { text-align: center; margin-bottom: 34px; }
.section-note { max-width: 64ch; margin-inline: auto; }

.dark {
    background: linear-gradient(160deg, #4e2f1a 0%, #2f1a11 100%);
    color: #fdf6ee;
}

.dark .eyebrow { color: #f6c68f; }
.dark p { color: rgba(253,246,238,0.88); }

/* ════════ HERO ════════ */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(18px, 4vw, 44px);
    align-items: center;
}

.hero-copy h1 {
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.95;
    letter-spacing: 0.03em;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    margin-bottom: 18px;
}

.hero-copy h1 span { color: var(--brand-strong); }
.hero-desc { max-width: 58ch; color: var(--ink-soft); margin-bottom: 28px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: 0.3s ease;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(120deg, var(--brand), var(--brand-strong));
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-strong); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,0.65); }
.btn-ghost:hover { background: #fff; }
.btn-full { width: 100%; }

.hero-points { list-style: none; display: grid; gap: 10px; }

.hero-points li {
    background: rgba(255,255,255,0.64);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 0.92rem;
}

.hero-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    color: var(--brand);
}

.card-icon svg { width: 100%; height: 100%; }

.hero-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.hero-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* ════════ FARK KARŞILAŞTIRMA ════════ */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 34px;
}

.diff-card {
    border-radius: var(--radius-md);
    padding: 28px;
    backdrop-filter: blur(4px);
}

.diff-no {
    border: 1px solid rgba(252,226,196,0.24);
    background: rgba(255,255,255,0.04);
}

.diff-yes {
    border: 2px solid #f6c68f;
    background: rgba(246,198,143,0.08);
}

.diff-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(252,226,196,0.2);
}

.diff-yes .diff-label { border-bottom-color: rgba(246,198,143,0.4); }

.diff-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.diff-card li {
    font-size: 0.92rem;
    color: rgba(253,246,238,0.88);
    padding-left: 24px;
    position: relative;
}

.diff-no li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #e57373;
    font-weight: 800;
}

.diff-yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #81c784;
    font-weight: 800;
}

/* ════════ HIGHLIGHT ════════ */
.highlight-box {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(252,226,196,0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
    align-items: flex-start;
}

.highlight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: #f6c68f;
}

.highlight-icon svg { width: 100%; height: 100%; }

.highlight-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

/* ════════ ÜRÜN KARTLARI ════════ */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 12px;
}

.adv-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.adv-icon {
    width: 44px;
    height: 44px;
    color: var(--brand);
    margin-bottom: 14px;
}

.adv-icon svg { width: 100%; height: 100%; }

.adv-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.03em;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.adv-card p { color: var(--ink-soft); font-size: 0.9rem; }

/* ════════ GÜVEN BÖLÜMÜ ════════ */
.trust-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.city-tag {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--brand-strong);
    transition: transform 0.3s, box-shadow 0.3s;
}

.city-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--brand-strong);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--ink-soft);
    font-weight: 600;
}

.trust-quote {
    margin-top: 28px;
    text-align: center;
}

.trust-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--ink-soft);
    max-width: 60ch;
    margin-inline: auto;
    padding: 24px 32px;
    border-left: 4px solid var(--brand);
    background: var(--bg-soft);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ════════ ADIM KARTLARI ════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.step-card {
    border: 1px solid rgba(252,226,196,0.24);
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(120deg, #a4602f, #7a4019);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.step-card p { color: rgba(253,246,238,0.85); font-size: 0.92rem; }

/* ════════ TRUST BANNER ════════ */
.trust-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(252,226,196,0.2);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
}

.trust-item { text-align: center; }
.trust-item strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: #f6c68f;
    letter-spacing: 0.04em;
}
.trust-item span { font-size: 0.85rem; color: rgba(253,246,238,0.7); }
.trust-divider { width: 1px; height: 48px; background: rgba(252,226,196,0.3); }

/* ════════ FİYATLANDIRMA ════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
    background: linear-gradient(160deg, #fff8ef, #f4ddc1);
    border-color: var(--accent);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: linear-gradient(120deg, var(--brand), var(--brand-strong));
    color: #fff;
    padding: 6px 16px;
    border-radius: 0 0 12px 12px;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.pricing-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--brand-strong);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(74,43,24,0.12);
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-features li::before {
    content: '+ ';
    color: var(--brand);
    font-weight: 800;
}

/* ════════ KÂR HESABI ════════ */
.calc-box {
    margin-top: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.calc-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    margin-bottom: 18px;
    text-align: center;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.calc-item {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-label { font-size: 0.85rem; font-weight: 600; }
.calc-value { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--brand-strong); }

/* ════════ İLETİŞİM ════════ */
.contact-box { text-align: center; }
.contact-box p { max-width: 55ch; margin-inline: auto; margin-bottom: 20px; }
.contact-links { display: flex; justify-content: center; gap: 12px; }

/* ════════ FOOTER ════════ */
.site-footer {
    background: #21130c;
    color: rgba(255,245,231,0.92);
    padding: 28px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: center;
}

.footer-grid strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
}

.footer-grid a { margin-right: 12px; opacity: 0.9; }
.footer-grid a:hover { opacity: 1; color: #ffd8ad; }

/* ════════ REVEAL ════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .adv-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .trust-banner { flex-wrap: wrap; gap: 20px; }
    .trust-divider { display: none; }
    .trust-stats { grid-template-columns: 1fr 1fr 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .menu-toggle { display: flex; }

    .nav-wrap {
        height: auto;
        display: grid;
        grid-template-columns: 1fr auto auto;
        align-items: center;
        gap: 10px;
        padding: 10px 0 12px;
    }

    .brand { justify-self: start; }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(251,246,239,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 16px;
        gap: 8px;
        border-bottom: 1px solid var(--line);
        display: none;
    }

    .main-nav.open { display: flex; }

    .main-nav a {
        padding: 10px 14px;
        border-radius: 12px;
        background: rgba(255,255,255,0.6);
        text-align: center;
    }

    .nav-ziyaret {
        background: linear-gradient(120deg, var(--brand), var(--brand-strong)) !important;
        color: #fff !important;
    }

    .adv-grid,
    .steps-grid,
    .pricing-grid,
    .calc-grid,
    .trust-stats,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .highlight-box { flex-direction: column; text-align: center; }
    .highlight-icon { margin: 0 auto; }
    .trust-banner { flex-direction: column; }
    .trust-quote blockquote { padding: 20px; font-size: 0.95rem; }

    .pricing-card { padding: 24px 20px; }
    .pricing-amount { font-size: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}