/* ===================================
   GİRESUN WEB TASARIM - MOBILE FIRST
   Palet: Fındık Yeşili + Karadeniz Lacivert
=================================== */

:root {
    /* Ana Renk - Fındık Yeşili (Giresun) */
    --primary: #0E5C3A;
    --primary-dark: #0A4429;
    --primary-light: #16A34A;
    --primary-50: #F0FDF4;
    --primary-100: #DCFCE7;
    --primary-200: #BBF7D0;

    /* Aksent - Karadeniz Lacivert */
    --accent: #0B3D5C;
    --accent-dark: #082A40;
    --accent-light: #145983;

    --white: #FFFFFF;
    --bg: #FAFAFA;
    --bg-soft: #F5F5F5;
    --bg-card: #FFFFFF;
    --border: #E5E5E5;
    --border-light: #F0F0F0;

    --text: #1A1A1A;
    --text-soft: #525252;
    --text-light: #A3A3A3;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(14, 92, 58, 0.12);
    --shadow-xl: 0 30px 70px rgba(14, 92, 58, 0.18);

    --gradient: linear-gradient(135deg, #0E5C3A 0%, #0A4429 100%);
    --gradient-soft: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 999px;

    --header-h: 64px;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

*::selection { background: var(--primary-100); color: var(--primary-dark); }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); /* sticky CTA + iPhone home indicator */
}

h1, h2, h3, h4, h5 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--text);
}

a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
    white-space: nowrap;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(14, 92, 58, 0.32);
    background-size: 200% 200%;
}

.btn-primary:active {
    transform: translateY(1px);
    background-position: 100% 50%;
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
}

.btn i { transition: transform 0.25s ease; }
.btn:active i.fa-arrow-right { transform: translateX(3px); }

/* === HEADER === */
/* === Top Bar — solid kırmızı bilgi bandı (marka renkleri) === */
.topbar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12.5px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 91;
}
.topbar-inner {
    display: none; /* mobile gizli, desktop'ta açılır */
    align-items: center;
    justify-content: space-between;
    height: 36px;
    gap: 18px;
}
.topbar-left,
.topbar-right {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.tb-item,
.tb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1;
}
.tb-item i,
.tb-link i {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    opacity: 1;
}
.tb-link:hover { color: var(--white); }
.tb-link:hover i { color: var(--white); }
.tb-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.28);
}
.tb-divider-strong { background: rgba(255, 255, 255, 0.40); }
.tb-socials {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.tb-socials a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.32);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.tb-socials a i { font-size: 11px; }
.tb-socials a:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-1px);
}

@media (min-width: 900px) {
    .topbar-inner { display: flex; }
}

.header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(14, 92, 58, 0.55) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.header.is-scrolled::after {
    opacity: 1;
}

/* Anchor link tıklamalarında header'ın altına gelmesin */
html { scroll-padding-top: 76px; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 19px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
}

/* Custom SVG Logo Mark - Minimal Brackets + Cursor */
.logo-mark {
    width: 30px;
    height: 22px;
    display: inline-block;
    overflow: visible;
    flex-shrink: 0;
}

.lm {
    transform-box: fill-box;
    transform-origin: center;
    will-change: transform, opacity;
}

/* Sol bracket (siyah) - sola/sağa kayar */
.lm-left {
    animation: lmLeft 2.4s ease-in-out infinite;
    -webkit-animation: lmLeft 2.4s ease-in-out infinite;
}

/* Sağ bracket (kırmızı) - tersine kayar */
.lm-right {
    animation: lmRight 2.4s ease-in-out infinite;
    -webkit-animation: lmRight 2.4s ease-in-out infinite;
}

/* Ortadaki nokta - cursor blink */
.lm-dot {
    animation: lmDot 1s ease-in-out infinite;
    -webkit-animation: lmDot 1s ease-in-out infinite;
}

@-webkit-keyframes lmLeft {
    0%, 100% { -webkit-transform: translateX(0) scale(1); }
    50% { -webkit-transform: translateX(-2px) scale(1.08); }
}
@keyframes lmLeft {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(-2px) scale(1.08); }
}

@-webkit-keyframes lmRight {
    0%, 100% { -webkit-transform: translateX(0) scale(1); }
    50% { -webkit-transform: translateX(2px) scale(1.08); }
}
@keyframes lmRight {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(2px) scale(1.08); }
}

@-webkit-keyframes lmDot {
    0%, 45%, 100% { opacity: 1; }
    50%, 95% { opacity: 0; }
}
@keyframes lmDot {
    0%, 45%, 100% { opacity: 1; }
    50%, 95% { opacity: 0; }
}

/* === Cursor Effects (desktop, hover-capable cihazlar) === */
.cursor-smoke-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 9998;
    contain: strict;
}
.cs-puff {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--cs-size, 26px);
    height: var(--cs-size, 26px);
    margin-left: calc(var(--cs-size, 26px) / -2);
    margin-top: calc(var(--cs-size, 26px) / -2);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 92, 58, 0.32) 0%, rgba(14, 92, 58, 0.10) 50%, transparent 72%);
    filter: blur(4px);
    mix-blend-mode: multiply;
    opacity: 0;
    will-change: transform, opacity;
    animation: cs-puff 900ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes cs-puff {
    0% { opacity: 0.7; transform: translate(var(--cs-x), var(--cs-y)) scale(0.5); }
    20% { opacity: 0.6; }
    100% { opacity: 0; transform: translate(calc(var(--cs-x) + var(--cs-tx)), calc(var(--cs-y) + var(--cs-ty))) scale(1.8); }
}

/* Custom cursor — yumuşak takip eden halka + iç nokta */
.cursor-follower {
    position: fixed;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    margin-left: -14px;
    margin-top: -14px;
    border-radius: 50%;
    border: 1.5px solid rgba(14, 92, 58, 0.55);
    background: radial-gradient(circle, rgba(14, 92, 58, 0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.3s ease, width 0.25s ease, height 0.25s ease, margin 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    mix-blend-mode: multiply;
    will-change: transform;
}
.cursor-follower.is-visible { opacity: 1; }
.cursor-follower.is-hover {
    width: 46px;
    height: 46px;
    margin-left: -23px;
    margin-top: -23px;
    background: radial-gradient(circle, rgba(14, 92, 58, 0.25) 0%, rgba(14, 92, 58, 0.05) 60%, transparent 80%);
    border-color: rgba(14, 92, 58, 0.85);
}
.cursor-dot {
    position: fixed;
    left: 0;
    top: 0;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    margin-top: -3px;
    border-radius: 50%;
    background: var(--primary);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.3s ease, transform 0.12s ease;
    will-change: transform;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6), 0 0 12px rgba(14, 92, 58, 0.55);
}
.cursor-dot.is-visible { opacity: 1; }
.cursor-dot.is-hover { transform: translate3d(0, 0, 0) scale(0); }

/* Custom cursor aktifken native cursor'u gizle */
html.has-custom-cursor,
html.has-custom-cursor * { cursor: none !important; }
html.has-custom-cursor a,
html.has-custom-cursor button,
html.has-custom-cursor [role="button"],
html.has-custom-cursor input,
html.has-custom-cursor textarea,
html.has-custom-cursor select,
html.has-custom-cursor label,
html.has-custom-cursor .faq-q { cursor: none !important; }

/* === Lead Magnet CTA Strip — buton modal açar === */
.lm-cta-strip {
    background: var(--bg-soft);
    padding: 36px 0 0;
}
.lm-cta-card {
    display: grid;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 22px 22px;
    border-top: 4px solid var(--primary);
}
.lm-cta-text { display: flex; flex-direction: column; gap: 4px; }
.lm-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    align-self: flex-start;
    margin-bottom: 4px;
}
.lm-cta-text strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.2px;
}
.lm-cta-text strong em {
    font-style: normal;
    color: var(--primary);
}
.lm-cta-sub {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
}
.lm-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 13px 22px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(14, 92, 58, 0.26);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.lm-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(14, 92, 58, 0.34);
}
.lm-cta-btn i { font-size: 13px; }

@media (min-width: 900px) {
    .lm-cta-strip { padding: 50px 0 0; }
    .lm-cta-card {
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 28px;
        padding: 28px 32px;
    }
    .lm-cta-text strong { font-size: 22px; }
}

/* === Trust Strip Partners — orijinal stilize logolar === */
.ts-partners {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ts-partners-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
}
.ts-partner-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.ts-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 14px 12px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 56px;
}
.ts-partner:hover {
    border-color: var(--primary-100);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.ts-p-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.5px;
    line-height: 1;
}
.ts-partner em {
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-soft);
    letter-spacing: 0.3px;
}

@media (min-width: 900px) {
    .ts-partner-list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
    .ts-partner-list { grid-template-columns: repeat(6, 1fr); gap: 8px; }
}

/* === Lead Magnet Modal === */
.lm-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.lm-modal[hidden] { display: none; }
.lm-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    animation: lmFadeIn 0.25s ease;
}
.lm-modal-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
    max-width: 480px;
    width: 100%;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    border-top: 4px solid var(--primary);
    animation: lmModalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes lmFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lmModalIn { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: none; } }
.lm-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-soft);
    border: none;
    color: var(--text-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 2;
}
.lm-modal-close:hover { background: var(--primary-50); color: var(--primary); }
.lm-modal-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
    padding-right: 30px;
}
.lm-modal-head h3 {
    font-size: 22px;
    line-height: 1.25;
    color: var(--text);
    letter-spacing: -0.4px;
    margin: 0;
    font-weight: 800;
}
.lm-modal-head h3 span { color: var(--primary); }
.lm-modal-head p {
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.55;
    margin: 0;
}
.lm-modal .lm-form {
    background: transparent;
    border: none;
    padding: 0;
}
body.lm-modal-open { overflow: hidden; }
.lm-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--primary);
    display: grid;
    gap: 24px;
}
.lm-text { display: flex; flex-direction: column; gap: 12px; }
.lm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-50);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    align-self: flex-start;
    border: 1px solid var(--primary-100);
}
.lm-badge i { font-size: 11px; }
.lm-text h2 {
    font-size: 24px;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.6px;
    margin: 0;
}
.lm-text h2 span { color: var(--primary); }
.lm-text p {
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.65;
    margin: 0;
}
.lm-text p strong { color: var(--text); font-weight: 700; }
.lm-bullets {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: grid;
    gap: 8px;
}
.lm-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text);
    font-weight: 500;
}
.lm-bullets li i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
}

.lm-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 20px 18px;
    border: 1px solid var(--border-light);
    position: relative;
}
.lm-field { display: flex; flex-direction: column; gap: 6px; }
.lm-field > span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.2px;
}
.lm-field > span em {
    font-style: normal;
    color: var(--text-light);
    font-weight: 500;
    font-size: 11px;
}
.lm-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.lm-input-wrap i {
    position: absolute;
    left: 14px;
    color: var(--text-light);
    font-size: 13px;
    pointer-events: none;
}
.lm-input-wrap input {
    width: 100%;
    padding: 12px 14px 12px 38px;
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    color: var(--text);
}
.lm-input-wrap input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-50);
}
.lm-input-wrap input:focus + i,
.lm-input-wrap:focus-within i { color: var(--primary); }
.lm-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 22px;
    border-radius: var(--radius-full);
    font-size: 14.5px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 4px;
    box-shadow: 0 8px 20px rgba(14, 92, 58, 0.26);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.lm-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(14, 92, 58, 0.34);
}
.lm-submit:active { transform: translateY(0); }
.lm-submit i { font-size: 13px; }
.lm-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--text-light);
    margin: 4px 0 0;
}
.lm-trust i { font-size: 11px; color: #10B981; }
.lm-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    margin-top: 8px;
}
.lm-success i { color: #10B981; font-size: 18px; }
.lm-success strong { font-size: 13.5px; color: var(--text); }
.lm-success span { font-size: 12px; color: var(--text-soft); }

@media (min-width: 900px) {
    .lm-card {
        grid-template-columns: 1.2fr 1fr;
        gap: 48px;
        padding: 44px 48px;
        align-items: center;
    }
    .lm-text h2 { font-size: 32px; }
    .lm-form { padding: 26px 24px; }
}

/* === Trust Strip — Destek vaadi + Sertifika rozetleri === */
.trust-strip {
    background: var(--white);
    padding: 40px 0 50px;
    border-top: 1px solid var(--border-light);
}
.trust-grid {
    display: grid;
    gap: 24px;
}
.ts-promise {
    background: #0F0F0F;
    color: var(--white);
    padding: 22px 22px;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary);
}
.ts-promise-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(14, 92, 58, 0.40);
    flex-shrink: 0;
}
.ts-promise-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
    min-width: 0;
}
.ts-promise-eyebrow {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.ts-promise-text strong {
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.2px;
}
.ts-promise-text strong em {
    font-style: normal;
    color: var(--primary-light);
}
.ts-promise-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-top: 4px;
}
.ts-promise-cta {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 11px 18px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: 4px;
}
.ts-promise-cta:hover { background: #1FB855; transform: translateY(-2px); }
.ts-promise-cta i { font-size: 16px; }

.ts-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ts-badges-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
}
.ts-badge-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.ts-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text);
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.ts-badge:hover {
    border-color: var(--primary-100);
    transform: translateY(-2px);
}
.ts-badge i {
    font-size: 18px;
    color: var(--primary);
    width: 28px;
    text-align: center;
}

@media (min-width: 900px) {
    .trust-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 28px;
        align-items: stretch;
    }
    .ts-promise {
        grid-template-columns: 64px 1fr auto;
        padding: 24px 28px;
    }
    .ts-promise-cta { grid-column: auto; margin-top: 0; }
    .ts-badges { justify-content: center; gap: 14px; }
    .ts-badge-list { grid-template-columns: repeat(4, 1fr); }
    .ts-badges-title { text-align: left; }
}

/* === Footer Yasal Bilgiler === */
.footer-legal-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 18px;
    padding: 18px 0;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 11.5px;
}
/* Mobilde yasal bilgiler gizli (kalabalık görünmesin) */
@media (max-width: 767px) {
    .footer-legal-info { display: none; }
}
.fli-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}
.fli-label {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.fli-value {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}
@media (min-width: 900px) {
    .footer-legal-info {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px 28px;
        padding: 22px 0;
    }
}
@media (max-width: 899px) {
    .footer-legal-info {
        background: rgba(0, 0, 0, 0.04);
        border-radius: 10px;
        padding: 14px 16px;
        margin: 16px 0 0;
        border: 1px solid var(--border-light);
    }
    .fli-label { color: var(--text-light); }
    .fli-value { color: var(--text); }
}

/* === Hizmetler — 3 Fazlı Yapı === */
.services-phases {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 36px;
}
.phase-block {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 22px 18px 24px;
    position: relative;
    overflow: hidden;
}
.phase-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}
.phase-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
}
.phase-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1px;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}
.phase-head-text { display: flex; flex-direction: column; gap: 4px; }
.phase-head-text h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.phase-head-text p {
    font-size: 13px;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.5;
}
.phase-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

/* Yeni service-card içinde icon-only visual */
.service-visual-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
    background: var(--primary-50);
    border-radius: 14px;
    position: relative;
}
.sv-icon-bg {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 12px 24px rgba(14, 92, 58, 0.30);
}
.sv-icon-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #10B981;
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: var(--radius-full);
    letter-spacing: 0.6px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.30);
}

@media (min-width: 640px) {
    .phase-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (min-width: 900px) {
    .services-phases {
        gap: 32px;
        margin-top: 48px;
    }
    .phase-block {
        padding: 28px 28px 32px;
    }
    .phase-head {
        padding-bottom: 22px;
        margin-bottom: 26px;
        gap: 18px;
    }
    .phase-num { font-size: 44px; width: 60px; }
    .phase-head-text h3 { font-size: 22px; }
    .phase-head-text p { font-size: 14px; }
    .phase-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}

/* === Position Bar — Hero altı 3 fazlı konum bandı === */
.position-bar {
    background: var(--white);
    padding: 28px 0 8px;
    position: relative;
}
.position-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.pb-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    line-height: 1.4;
    letter-spacing: -0.3px;
}
.pb-headline strong {
    color: var(--text);
    font-weight: 800;
}
.pb-headline span {
    color: var(--primary);
    font-weight: 800;
}
.pb-phases {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 920px;
}
.pb-phase {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 14px 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pb-phase:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.pb-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    min-width: 32px;
}
.pb-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}
.pb-text strong {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.1px;
}
.pb-text span {
    font-size: 12px;
    color: var(--text-soft);
    font-weight: 500;
}
.pb-arrow {
    display: none; /* mobilde dikey akış, ok gizli */
    color: var(--primary-100);
    font-size: 14px;
}

@media (min-width: 900px) {
    .position-bar { padding: 50px 0 10px; }
    .pb-headline { font-size: 22px; }
    .pb-phases {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 12px;
        max-width: 1080px;
    }
    .pb-phase {
        flex: 1;
        min-width: 0;
        border-left: 1px solid var(--border-light);
        border-top: 4px solid var(--primary);
        border-radius: 14px;
        padding: 18px 22px;
    }
    .pb-arrow {
        display: inline-flex;
        align-items: center;
        align-self: center;
        color: var(--primary);
        font-size: 14px;
        opacity: 0.6;
    }
}

/* === Floating Action Stack — sağ alt köşe hızlı erişim === */
.fab-stack {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 95;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.fab-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--text);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14), 0 2px 6px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    position: relative;
}

.fab-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.fab-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Hover'da sol tarafa tooltip */
.fab-btn[data-tip]::before {
    content: attr(data-tip);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 26, 0.92);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 11px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-50%) translateX(6px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.fab-btn[data-tip]:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Specific colors */
.fab-tel { color: #2563EB; }
.fab-wa { color: #25D366; }
.fab-chat { color: var(--primary); }
.fab-ig {
    color: var(--white);
    background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
}
.fab-up { color: var(--text-soft); }

.fab-tel:hover { background: #2563EB; color: var(--white); }
.fab-wa { background: #25D366; color: var(--white); }
.fab-wa:hover { background: #1FB855; color: var(--white); }
.fab-ig:hover { color: var(--white); }
.fab-up:hover { background: var(--text); color: var(--white); }

/* WhatsApp button: yeşil online göstergesi */
.fab-wa-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fab-online-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22C55E;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
    animation: fabOnlinePulse 2s ease-out infinite;
    pointer-events: none;
}
@keyframes fabOnlinePulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    100% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* Çevrimiçi Destek tooltip — WhatsApp butonunun solunda */
.fab-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--white);
    color: var(--text);
    padding: 12px 36px 12px 36px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fab-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}
.fab-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.04);
}
.fab-tooltip-pulse {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
    animation: fabOnlinePulse 2s ease-out infinite;
    flex-shrink: 0;
}
.fab-tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.2;
}
.fab-tooltip-content strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.1px;
}
.fab-tooltip-content span {
    font-size: 11.5px;
    color: var(--text-soft);
    font-weight: 500;
}
.fab-tooltip-close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background 0.2s ease, color 0.2s ease;
}
.fab-tooltip-close:hover {
    background: var(--bg-soft);
    color: var(--text);
}

@media (max-width: 899px) {
    .fab-tooltip {
        right: calc(100% + 10px);
        padding: 10px 32px 10px 30px;
    }
    .fab-tooltip-content strong { font-size: 12.5px; }
    .fab-tooltip-content span { font-size: 11px; }
}

/* Yukarı butonu sayfanın üstündeyken gizli */
.fab-up {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.7);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fab-stack.is-scrolled .fab-up {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Canlı destek pulse halkası */
.fab-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: fabPulse 2.4s ease-out infinite;
    pointer-events: none;
}
@keyframes fabPulse {
    0% { opacity: 0.6; transform: scale(0.85); }
    100% { opacity: 0; transform: scale(1.4); }
}

/* Toggle butonu (mobilde menüyü açıp kapatır) */
.fab-toggle {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 10px 26px rgba(14, 92, 58, 0.40), 0 4px 10px rgba(14, 92, 58, 0.18);
    width: 54px;
    height: 54px;
    font-size: 18px;
    display: none; /* mobilde göster (aşağıda media query) */
}
.fab-toggle:hover {
    background: var(--gradient);
    color: var(--white);
}
.fab-toggle .fab-toggle-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.fab-toggle .fab-toggle-close { opacity: 0; transform: rotate(-90deg); }
.fab-stack.is-open .fab-toggle .fab-toggle-icon:not(.fab-toggle-close) { opacity: 0; transform: rotate(90deg); }
.fab-stack.is-open .fab-toggle .fab-toggle-close { opacity: 1; transform: rotate(0); }

/* Mobil davranış: liste sadece toggle açıkken görünür */
@media (max-width: 899px) {
    .fab-stack { right: 14px; bottom: 14px; gap: 10px; }
    .fab-toggle { display: flex; order: 999; }
    .fab-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(0.85);
        transform-origin: bottom right;
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .fab-stack.is-open .fab-list {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
    .fab-btn { width: 44px; height: 44px; font-size: 14px; }
    .fab-toggle { width: 52px; height: 52px; font-size: 18px; }
    .fab-btn[data-tip]::before { display: none; }
}

@media (min-width: 900px) {
    .fab-stack { right: 24px; bottom: 24px; gap: 14px; }
    .fab-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }
    .fab-btn { width: 50px; height: 50px; font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
    .fab-pulse { animation: none; }
    .fab, .fab-up, .fab-list, .fab-toggle .fab-toggle-icon { transition: none !important; }
}

/* === Reveal on scroll — ince fade + yukarı kayma === */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .logo-code { animation: none; }
    .cursor-smoke-layer { display: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
}

.logo-text em {
    font-style: normal;
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--primary-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 1000;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
    z-index: 2;
}

.menu-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.mobile-nav {
    flex: 1 1 auto;
    min-height: 0;
    padding: 16px 12px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav > li > a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-soft);
    transition: all 0.2s;
}

.mobile-nav > li > a i {
    width: 32px;
    height: 32px;
    background: var(--bg-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 13px;
}

.mobile-nav > li > a.active,
.mobile-nav > li > a:active {
    background: var(--primary-50);
    color: var(--primary-dark);
}

.mobile-nav > li > a.active i,
.mobile-nav > li > a:active i {
    background: var(--gradient);
    color: var(--white);
}

.mobile-nav > li > a em {
    margin-left: auto;
    font-style: normal;
    font-size: 11px;
    color: var(--text-light);
    transition: transform 0.3s;
}

.mobile-nav > li.open > a em {
    transform: rotate(180deg);
}

.mobile-nav .has-sub > ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding-left: 16px;
    list-style: none;
}

.mobile-nav .has-sub.open > ul {
    max-height: 1000px;
    padding-top: 4px;
    padding-bottom: 8px;
}

.mobile-nav .has-sub > ul > li {
    padding: 0;
}

.mobile-nav .has-sub > ul > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px 9px 38px;
    font-size: 13.5px;
    color: var(--text-soft);
    border-radius: 8px;
    margin-bottom: 1px;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav .has-sub > ul > li > a:active {
    background: var(--primary-50);
    color: var(--primary-dark);
}

/* Mobile - kategori başlığı (Web & E-Ticaret, Yazılım & AI vb.) */
.mobile-nav .has-sub > ul > li.m-cat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 14px 6px 14px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--primary);
    border-bottom: 1.5px solid var(--primary-50);
    margin-bottom: 6px;
}

.mobile-nav .has-sub > ul > li.m-cat:first-child {
    padding-top: 4px;
}

.mobile-nav .has-sub > ul > li.m-cat i {
    font-size: 13px;
    color: var(--primary);
}

.mobile-nav .has-sub > ul > li.m-cat .ai-badge {
    background: linear-gradient(135deg, #0E5C3A, #0A4429);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    margin-left: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(14, 92, 58, 0.30);
}

/* Mobile dropdown links - YENİ etiketi */
.mobile-nav .has-sub > ul > li > a .new-tag {
    background: #10B981;
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    margin-left: auto;
    letter-spacing: 0.5px;
}

.mobile-menu-footer {
    flex: 0 0 auto;
    padding: 16px 20px;
    border-top: 1px solid var(--border-light);
    background: var(--white);
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}

.mobile-contact {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.mobile-contact a {
    flex: 1;
    padding: 12px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mobile-contact a:first-child { color: var(--primary-dark); }
.mobile-contact a:last-child { color: #25D366; }

.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Menü açıkken arkadaki hamburger ikonunu gizle */
body.menu-open .menu-toggle {
    visibility: hidden;
    pointer-events: none;
}

/* === HERO === */
/* === HERO === */
.hero {
    padding: 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease;
}

/* Slayt içeriğine göre tek renk arka plan (slider + dots tek parça) */
.hero[data-slide="0"] { background: #EFF6FF; } /* Vesentur — Kurumsal: soft mavi */
.hero[data-slide="1"] { background: #ECFDF5; } /* Metabilet — E-Ticaret: soft mint */
.hero[data-slide="2"] { background: #F0FDF4; } /* Zenrota — Yazılım: soft kırmızı */

/* Hero alt kenarında ince düz çizgi */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    z-index: 3;
    pointer-events: none;
}

/* Slider ve Track */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100%;
    min-width: 100%;
    overflow: hidden;
    background: transparent; /* arka plan .hero[data-slide] üzerinden gelir — slider+dots tek parça */
}

.hero-slide-inner {
    padding-top: 30px;
    padding-bottom: 24px;
}

/* Sol metin */
.hero-text {
    position: relative;
    z-index: 2;
    text-align: left;
    margin-bottom: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
    border: 1px solid var(--primary-100);
}

.badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.05); }
}

.hero h1 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
    min-height: 80px; /* typewriter sırasında buton sabit kalsın */
}

.hero h1 span {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.hero p {
    color: var(--text-soft);
    font-size: 14.5px;
    margin-bottom: 22px;
    line-height: 1.65;
}

.hero .btn {
    margin-bottom: 0;
}

/* Sağ görsel */
.hero-visual {
    position: relative;
    z-index: 2;
}

/* Browser-frame mockup — nötr gölge (kırmızı parıltı yok) */
.hero-frame {
    position: relative;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 18px 40px rgba(0, 0, 0, 0.10),
        0 6px 14px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-frame-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 32px;
    padding: 0 12px;
    background: #F5F5F5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.hf-dots {
    display: inline-flex;
    gap: 6px;
}

.hf-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #DDD;
    display: inline-block;
}

.hf-dots i:nth-child(1) { background: #FF5F57; }
.hf-dots i:nth-child(2) { background: #FEBC2E; }
.hf-dots i:nth-child(3) { background: #28C840; }

.hf-url {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    max-width: 280px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 11px;
    color: var(--text-light);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    justify-content: center;
}

.hf-url i { font-size: 9px; color: #4CAF50; }

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

/* Mobilde okları gizle (otomatik döner, dot ile kontrol) */
.hero-arrow {
    display: none;
}

/* Hero dots wrapper - slider'ın altında, hero'nun sonunda */
.hero-dots-wrap {
    display: flex;
    justify-content: center;
    padding: 14px 20px 24px;
    position: relative;
    z-index: 2;
}

.hero-dots {
    display: flex;
    gap: 8px;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(14, 92, 58, 0.22);
    transition: all 0.3s ease;
    padding: 0;
    cursor: pointer;
    border: none;
}

.hero-dot.active {
    width: 30px;
    border-radius: var(--radius-full);
    background: var(--primary);
}

/* Typewriter cursor - kod yazılıyormuş gibi imleç */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.95em;
    background: var(--primary);
    vertical-align: text-bottom;
    margin-left: 3px;
    border-radius: 1px;
    animation: blinkCursor 0.85s step-end infinite;
    transform: translateY(2px);
}

@keyframes blinkCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* === SECTIONS === */
section { padding: 60px 0; position: relative; }

.section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 36px;
}

.section-head .badge {
    margin-bottom: 14px;
}

.section-head h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.section-head h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-head p {
    color: var(--text-soft);
    font-size: 14px;
}

/* === SERVICES === */
.services {
    background: var(--bg);
    padding-top: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 22px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-light);
}

.service-card:active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.service-visual {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 24px;
}

.service-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0%, transparent 40%);
    z-index: 1;
}

.service-visual svg,
.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 2;
}

.visual-pink,
.visual-blue,
.visual-orange,
.visual-green,
.visual-violet {
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
}

.service-info {
    padding: 24px 22px;
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.service-tag,
.tag-purple, .tag-pink, .tag-blue,
.tag-orange, .tag-green, .tag-violet {
    background: var(--primary-50);
    color: var(--primary-dark);
}

.service-info h3 {
    font-size: 19px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-info p {
    color: var(--text-soft);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    transition: gap 0.25s;
}

.service-link:active {
    gap: 10px;
    color: var(--primary-dark);
}

.tagline {
    background: var(--white);
    color: var(--text);
    padding: 24px 22px;
    border-radius: var(--radius-lg);
    margin-top: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    border: 1.5px solid var(--primary-100);
    border-left: 4px solid var(--primary);
}

.tagline i {
    font-size: 20px;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 8px;
}

.tagline p {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.tagline strong {
    font-weight: 800;
    color: var(--primary);
}

/* === TIMELINE / SÜREÇ === */
.timeline-sec {
    background: var(--white);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}


.timeline {
    position: relative;
    padding: 8px 0;
    margin: 0 0 28px;
    z-index: 1;
}

/* Mobile: sol dikey rail (kesik gradient) */
.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background-image: linear-gradient(180deg, var(--primary) 0%, var(--primary) 50%, transparent 100%);
    -webkit-mask-image: repeating-linear-gradient(180deg, #000 0, #000 6px, transparent 6px, transparent 11px);
            mask-image: repeating-linear-gradient(180deg, #000 0, #000 6px, transparent 6px, transparent 11px);
    opacity: 0.55;
}

.tl-progress { display: none; }

.tl-item {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--white), 0 6px 16px rgba(14, 92, 58, 0.10);
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s, color 0.25s, box-shadow 0.25s;
}

.tl-dot-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed var(--primary-200);
    opacity: 0.7;
    pointer-events: none;
}

.tl-step {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: var(--radius-full);
    background: var(--gradient);
    color: var(--white);
    font-size: 10.5px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(14, 92, 58, 0.30);
    z-index: 3;
}

.tl-step .fa-infinity { font-size: 10px; }

.tl-dot-final {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 0 0 4px var(--white), 0 10px 22px rgba(14, 92, 58, 0.30);
}

.tl-dot-final .tl-dot-ring {
    border-color: var(--primary);
    opacity: 0.45;
}

.tl-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 14px 16px 14px 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s;
    overflow: hidden;
}

.tl-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--gradient);
    opacity: 0.85;
}

.tl-card:active {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-100);
}

.tl-card-final {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%);
    border-color: var(--primary-100);
}

.tl-card-final::before {
    background: linear-gradient(180deg, #0E5C3A 0%, #16A34A 100%);
    width: 4px;
    opacity: 1;
}

.tl-day {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 6px;
    padding: 4px 10px;
    background: var(--primary-50);
    border-radius: var(--radius-full);
    line-height: 1;
}

.tl-day i {
    font-size: 9px;
    opacity: 0.75;
}

.tl-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text);
    line-height: 1.25;
}

.tl-card p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.55;
    margin: 0;
}

/* Section CTA (genel kullanım) */
.sec-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: var(--radius-full);
    background: var(--gradient);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 22px rgba(14, 92, 58, 0.28);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 0 auto;
    width: 100%;
    max-width: 320px;
}

.sec-cta:active {
    transform: translateY(1px);
    box-shadow: 0 4px 12px rgba(14, 92, 58, 0.32);
}

/* === PRICING / FİYAT PAKETLERİ === */
.pricing {
    background: var(--bg-soft);
    padding: 50px 0 60px;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 24px 22px;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-100);
}

/* Popular card - vurgulu */
.price-card-popular {
    border: 2px solid var(--primary);
    box-shadow: 0 14px 30px rgba(14, 92, 58, 0.10);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFAFA 100%);
}

.price-popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.7px;
    box-shadow: 0 4px 12px rgba(14, 92, 58, 0.30);
    white-space: nowrap;
}

.price-header {
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--border-light);
}

.price-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-50);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.price-card-popular .price-tag {
    background: var(--primary);
    color: var(--white);
}

.price-header h3 {
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--text);
    line-height: 1.2;
}

.price-header p {
    font-size: 13px;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.5;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-amount .currency {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}

.price-amount .value {
    font-size: 38px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -1.2px;
}

.price-amount .value-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.price-amount .period {
    font-size: 12px;
    color: var(--text-soft);
    margin-left: 4px;
    font-weight: 500;
}

.price-card-popular .price-amount .value {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-list {
    margin-bottom: 22px;
    display: grid;
    gap: 8px;
}

.price-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-size: 13.5px;
    line-height: 1.5;
}

.price-list i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
    margin-top: 2px;
}

.price-card-popular .price-list i {
    background: var(--primary);
    color: var(--white);
}

.price-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary-100);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s;
}

.price-cta:active {
    background: var(--primary-50);
    border-color: var(--primary);
}

.price-cta-primary {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(14, 92, 58, 0.30);
}

.price-cta-primary:active {
    background: var(--primary-dark);
    color: var(--white);
}

.price-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--text-soft);
    line-height: 1.6;
    background: var(--white);
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    margin: 0;
}

.price-note i {
    color: var(--primary);
    margin-right: 6px;
}

.price-note strong {
    color: var(--text);
}

/* === COMPARE / NEDEN BİZ === */
.why-us {
    background: var(--white);
    padding: 50px 0;
}

.compare-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cmp-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Bizim kart - vurgulu */
.cmp-us {
    border: 2px solid var(--primary);
    box-shadow: 0 18px 40px rgba(14, 92, 58, 0.12);
}

.cmp-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #FCD34D;
    color: #78350F;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(252, 211, 77, 0.4);
}

.cmp-head {
    padding: 26px 22px 22px;
    text-align: center;
    position: relative;
}

.cmp-us .cmp-head {
    background: var(--gradient);
    color: var(--white);
}

.cmp-them .cmp-head {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-light);
}

.cmp-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 24px;
}

.cmp-us .cmp-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #FCD34D;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.cmp-them .cmp-icon {
    background: var(--white);
    color: var(--text-light);
    border: 1.5px solid var(--border);
}

.cmp-head h3 {
    font-size: 20px;
    margin-bottom: 4px;
    line-height: 1.2;
}

.cmp-us .cmp-head h3 {
    color: var(--white);
}

.cmp-them .cmp-head h3 {
    color: var(--text);
}

.cmp-head span {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.cmp-us .cmp-head span {
    color: rgba(255, 255, 255, 0.85);
}

.cmp-them .cmp-head span {
    color: var(--text-light);
}

.cmp-list {
    padding: 18px 22px 22px;
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
}

.cmp-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: flex-start;
    font-size: 13.5px;
    line-height: 1.55;
}

.cmp-list li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}

.cmp-us .cmp-list li {
    color: var(--text);
}

.cmp-us .cmp-list li i {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 3px 8px rgba(14, 92, 58, 0.30);
}

.cmp-them .cmp-list li {
    color: var(--text-soft);
}

.cmp-them .cmp-list li i {
    background: var(--bg);
    color: var(--text-light);
    border: 1.5px solid var(--border);
    box-shadow: none;
}

.cmp-list strong {
    color: var(--text);
    font-weight: 700;
}

.cmp-them .cmp-list strong {
    color: var(--text-soft);
    text-decoration: line-through;
    text-decoration-color: rgba(0, 0, 0, 0.2);
}

/* === SERVICES DESKTOP WRAPPER (mobile'da etkisiz) === */
.services-mockup { display: none; }
.desktop-nav { display: none; }
.header-cta { display: none; }
.header-actions { display: none; }

/* === MOBILE: Dil seçici (mobile menu içinde) === */
.mobile-lang {
    display: flex;
    gap: 8px;
    padding: 14px 22px 0;
}
.m-lang-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-soft);
    transition: all 0.2s ease;
}
.m-lang-btn .lang-flag {
    font-size: 16px;
    line-height: 1;
}
.m-lang-btn.is-active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(14, 92, 58, 0.25);
}
.m-lang-btn:active:not(.is-active) {
    background: var(--primary-50);
    color: var(--primary);
    border-color: var(--primary-100);
}

/* === BRANDS / REFERANSLAR === */
.brands {
    background: var(--bg-soft);
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

/* Telefonlarda tek sütun — görsel tam genişlikte ve büyük */
@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.brand-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s;
    border: 1px solid var(--border-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.brand-item:active {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.brand-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
    padding: 0;
    box-sizing: border-box;
    display: block;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.brand-item:active .brand-image img {
    transform: scale(1.05);
}

.brand-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 4px 11px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.brand-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(14, 92, 58, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 12px 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.brand-overlay-cta {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.brand-overlay-cta i { font-size: 10px; }

.brand-item:active .brand-overlay { opacity: 1; }

.brand-info {
    padding: 14px 14px 16px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.brand-info h4 {
    font-size: 15px;
    margin-bottom: 3px;
    color: var(--text);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.2px;
}

.brand-info > span {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.brand-tags {
    list-style: none;
    padding: 0;
    margin: auto 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.brand-tags li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary-50);
    color: var(--primary-dark);
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    border: 1px solid var(--primary-100);
    line-height: 1;
}

.brand-tags li i { font-size: 9px; opacity: 0.85; }

/* CTA kart — boş 4. slot yerine "Senin Markan" daveti */
.brand-item-cta {
    background: linear-gradient(135deg, #0E5C3A 0%, #0A4429 100%);
    border-color: transparent;
    color: var(--white);
    min-height: 100%;
}

.brand-item-cta:active {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(14, 92, 58, 0.35);
}

.brand-cta-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.brand-cta-inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.brand-cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 18px;
    margin-bottom: 4px;
}

.brand-item-cta h4 {
    font-size: 17px;
    color: var(--white);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.3px;
}

.brand-item-cta p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    line-height: 1.5;
    max-width: 220px;
}

.brand-cta-link {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 7px 14px;
    border-radius: var(--radius-full);
    transition: background 0.25s ease;
}

.brand-cta-link i { font-size: 10px; }

.brands-stat {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.brands-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 0 0 3px 3px;
}

.brands-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
}

.brands-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 92, 58, 0.18);
}

.brands-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    margin: 0 auto 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.5px;
    max-width: 580px;
}

.brands-stat strong em {
    font-style: normal;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brands-stat-sub {
    display: block;
    color: var(--text-soft);
    font-size: 14.5px;
    margin: 0 auto 20px;
    line-height: 1.6;
    max-width: 520px;
}

/* === ABOUT DETAIL === */
.about-detail {
    background: var(--white);
}

.about-detail .section-head {
    text-align: left;
    margin-bottom: 28px;
}

.about-detail .section-head h2 {
    font-size: 26px;
}

.info-block {
    background: var(--bg);
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.info-block:active {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 19px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
}

.icon-purple,
.icon-pink,
.icon-orange,
.icon-blue,
.icon-green,
.icon-teal,
.icon-violet {
    background: var(--primary-50);
    color: var(--primary);
    box-shadow: none;
    border: 1px solid var(--primary-100);
}

.info-block h3 {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.info-block p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

/* === NASIL YAPIYORUZ === */
.how {
    background: var(--bg);
    padding: 50px 0;
}

.section-head h2 .hash,
h2 .hash {
    color: var(--primary);
    font-weight: 900;
    margin-right: 4px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    display: inline-block;
    transform: translateY(-2px);
}

/* CTA içinde # sarı (kırmızı zemin üzerinde görünür) */
.cta-card h2 .hash {
    color: #FCD34D;
}

.how-list {
    display: grid;
    gap: 12px;
}

.how-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 18px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.how-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.how-item:active {
    transform: translateX(3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-100);
}

.how-item:active::before {
    transform: scaleY(1);
}

.how-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid var(--primary-100);
    flex-shrink: 0;
    transition: all 0.3s;
}

.how-item:active .how-icon {
    background: var(--primary);
    color: var(--white);
    border-color: transparent;
    transform: rotate(-6deg) scale(1.05);
}

.how-text h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--text);
    font-weight: 700;
    line-height: 1.3;
}

.how-text p {
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
}

/* === PARTNERS / API ENTEGRASYONLARI === */
.partners {
    background: var(--white);
    padding: 50px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.partner-card {
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c, var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.partner-card:active::before,
.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:active,
.partner-card:hover {
    background: var(--white);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: var(--c, var(--primary-100));
}

.partner-logo {
    margin-bottom: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.partner-logo i,
.partner-logo .p-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c, var(--primary-50));
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    font-style: normal;
    line-height: 1;
    box-shadow: 0 4px 10px color-mix(in srgb, var(--c, var(--primary)) 28%, transparent);
}

.partner-logo .p-mark {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    letter-spacing: -0.5px;
}

.partner-logo strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    font-weight: 800;
    line-height: 1.2;
    transition: color 0.25s ease;
    letter-spacing: -0.3px;
}

.partner-card:hover .partner-logo strong {
    color: var(--c, var(--primary));
}

.partner-cat {
    font-size: 10.5px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.partners-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
    background: var(--bg-soft);
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    margin: 0;
}

.partners-note i {
    color: var(--primary);
    margin-right: 6px;
}

.partners-note a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

/* === REVIEWS === */
.reviews {
    background: var(--bg-soft);
    padding: 50px 0 40px;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 20px 8px;
    margin: 0;
}

.reviews-track::-webkit-scrollbar { display: none; }

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.r-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s;
    cursor: pointer;
}

.r-dot.active {
    width: 22px;
    border-radius: var(--radius-full);
    background: var(--primary);
}

.review-card {
    flex: 0 0 calc(100% - 24px);
    min-width: calc(100% - 24px);
    scroll-snap-align: center;
    background: var(--white);
    padding: 22px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
    box-sizing: border-box;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 22px;
    font-size: 60px;
    color: var(--primary-100);
    line-height: 1;
    font-family: serif;
}

.review-rating {
    color: var(--orange);
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.review-card p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    background: var(--primary-50);
    border: 1.5px solid var(--primary-100);
}

.review-author h4 {
    font-size: 14px;
    margin-bottom: 1px;
}

.review-author span {
    font-size: 12px;
    color: var(--text-soft);
}

/* === SSS / FAQ === */
.faq {
    background: var(--bg-soft);
    padding: 50px 0 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.faq-item.open {
    box-shadow: 0 8px 24px rgba(14, 92, 58, 0.08);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    color: var(--text);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.2s;
}

.faq-q:active {
    color: var(--primary);
}

.faq-q span {
    flex: 1;
}

.faq-icon {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 22px;
    text-align: center;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.open .faq-a {
    max-height: 500px;
    padding: 0 20px 20px 56px;
}

.faq-a p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.faq-a strong {
    color: var(--text);
    font-weight: 700;
}

.faq-link {
    color: #2563EB;
    font-weight: 700;
    text-decoration: none;
}

.faq-link:active {
    text-decoration: underline;
}

/* === BLOG === */
.blog {
    background: var(--white);
}

.blog-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--bg);
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.blog-item:active {
    background: var(--primary-50);
    transform: translateX(3px);
}

.blog-date {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    padding: 4px;
}

.blog-item > div {
    flex: 1;
    min-width: 0;
}

.blog-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.35;
    color: var(--text);
}

.blog-meta {
    font-size: 11px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-item > i {
    color: var(--text-light);
    font-size: 12px;
}

.blog-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    margin-top: 8px;
    border: 1.5px dashed var(--primary-100);
}

/* === CTA === */
.cta {
    padding: 50px 0;
    background: var(--bg);
}

.cta-card {
    background: var(--gradient);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-card::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

.cta-card h2 {
    color: var(--white);
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.cta-card h2 span {
    background: linear-gradient(135deg, #FCD34D, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-card p {
    opacity: 0.92;
    font-size: 14px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.cta-card .btn {
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.cta-card .btn:last-child { margin-bottom: 0; }

/* === FOOTER WEB (sadece 900px+'ta görünür, mobile'da gizli) === */
.footer-web { display: none; }
.footer-mobile-only { display: block; }

/* Stats band — sadece desktop'ta görünür */
.stats-band-sec { display: none; }

/* === FOOTER (Mobile App Style) === */
.footer {
    background: var(--white);
    padding: 32px 0 18px;
    border-top: 1px solid var(--border-light);
}

/* Top: Logo + Tagline + Social */
.footer-top {
    text-align: center;
    margin-bottom: 22px;
}

.footer-top .logo {
    justify-content: center;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 auto 18px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    transition: all 0.25s;
    font-size: 14px;
}

.footer-social a:active {
    background: var(--primary);
    color: var(--white);
    border-color: transparent;
    transform: scale(0.94);
}

/* Pill Nav */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 18px;
}

.footer-nav a {
    padding: 7px 13px;
    border-radius: var(--radius-full);
    background: var(--bg-soft);
    color: var(--text-soft);
    font-size: 12.5px;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.footer-nav a:active {
    background: var(--primary-50);
    color: var(--primary-dark);
    border-color: var(--primary-100);
}

/* Contact Card (App Style List) */
.footer-contact-card {
    background: var(--bg-soft);
    border-radius: 18px;
    padding: 5px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}

.fcc-item {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 11px 12px;
    border-radius: 13px;
    transition: background 0.2s;
    color: inherit;
}

a.fcc-item:active {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.fcc-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid var(--border-light);
}

.fcc-text {
    min-width: 0;
}

.fcc-text span {
    display: block;
    font-size: 10.5px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 1px;
}

.fcc-text strong {
    display: block;
    font-size: 13px;
    color: var(--text);
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fcc-chev {
    color: var(--text-light);
    font-size: 11px;
    flex-shrink: 0;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--text-soft);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom strong {
    color: var(--text);
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-soft);
    transition: color 0.2s;
}

.footer-legal a:active {
    color: var(--primary);
}

.footer-legal span {
    color: var(--text-light);
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    right: 16px;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 70;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.2s, color 0.2s;
    cursor: pointer;
    font-size: 15px;
    padding: 0;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:active {
    background: var(--primary);
    color: var(--white);
    border-color: transparent;
    transform: scale(0.94);
}

/* === STICKY CTA (Mobile Bottom Bar) — 2 buton === */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 80;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
    box-sizing: border-box;
}

.sticky-btn {
    flex: 1 1 0;
    min-width: 0;
    height: 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 12px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: var(--white);
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.sticky-btn i {
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1;
}

.sticky-btn span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    color: var(--white);
}

.sticky-btn:active {
    transform: scale(0.97);
    filter: brightness(0.92);
}

/* Hemen Ara — kırmızı */
.sticky-btn.call-btn {
    background: linear-gradient(135deg, #0E5C3A 0%, #0A4429 100%);
    box-shadow: 0 6px 16px rgba(14, 92, 58, 0.30);
}

/* WhatsApp — yeşil */
.sticky-btn.wa-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.30);
}

.sticky-btn.wa-btn i {
    font-size: 20px;
}

/* Menü açıkken alt barı gizle - karışıklık olmasın */
body.menu-open .sticky-cta {
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-btn.primary:active {
    transform: scale(0.97);
    box-shadow: 0 3px 10px rgba(14, 92, 58, 0.4);
}

/* ====================================
   ÇOK KÜÇÜK TELEFONLAR (380px altı)
==================================== */
@media (max-width: 380px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 24px; line-height: 1.18; letter-spacing: -0.6px; }
    .hero p { font-size: 13.5px; }
    .section-head h2 { font-size: 22px; }
    .badge { font-size: 11px; padding: 6px 12px; }
    .btn-lg { padding: 14px 22px; font-size: 14px; }

    .header-inner { height: 56px; }
    :root { --header-h: 56px; }

    .menu-toggle { width: 38px; height: 38px; }
    .logo { font-size: 17px; }
    .logo-mark { width: 26px; height: 18px; }

    .service-info h3 { font-size: 17px; }
    .price-amount .value { font-size: 32px; }

    .sticky-btn { font-size: 13px; height: 50px; padding: 0 10px; }
    .sticky-btn span { font-size: 13px; }
}

/* ====================================
   BÜYÜK TELEFON / KÜÇÜK TABLET (640px+)
==================================== */
@media (min-width: 640px) {
    .container { max-width: 600px; padding: 0 24px; }

    .hero h1 { font-size: 36px; }
    .hero p { font-size: 16px; }
    .section-head h2 { font-size: 32px; }

    .brands-grid { grid-template-columns: repeat(3, 1fr); }

    /* Hizmet kartları 2 sütun olsun büyük telefonlarda */
    .services-grid-web {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .services-mockup { display: none; }

    .services-grid-web .service-card .service-visual { display: block; }
}

/* ====================================
   TABLET (768px+)
==================================== */
@media (min-width: 768px) {
    .container { max-width: 720px; padding: 0 28px; }

    .hero h1 { font-size: 40px; }

    /* Nasıl Yapıyoruz 2 sütun */
    .how-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 20px;
    }

    /* Compare 2 sütun yan yana */
    .compare-cards {
        flex-direction: row;
        gap: 16px;
    }

    /* Pricing tablet'te alt alta — sıkıştırma yok */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer linkler 2 sütun */
    .footer-block ul {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Yorumlar 2 kart yan yana */
    .reviews-track {
        gap: 16px;
        padding: 6px 24px 8px;
    }

    .review-card {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }

    /* Brand grid 3 sütun */
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    /* Hero üst boşluk */
    .hero-slide-inner {
        padding-top: 50px;
        padding-bottom: 40px;
    }
}

/* ====================================
   DESKTOP (900px+) — sadece minimal
==================================== */
/* ====================================
   DESKTOP (900px+) — sadece web düzeni
   Mobile'i etkilemez
==================================== */
@media (min-width: 900px) {
    body { padding-bottom: 0; }
    .sticky-cta,
    .scroll-top { display: none; }

    .container { max-width: 1200px; padding: 0 40px; }

    /* === HEADER === */
    .menu-toggle { display: none; }

    .header-inner {
        height: 78px;
        gap: 32px;
    }

    /* Desktop Yatay Nav */
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 6px;
        flex: 1;
        justify-content: center;
    }

    .desktop-nav .dn-link {
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        color: var(--text);
        position: relative;
        transition: color 0.2s, background 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    .desktop-nav .dn-link i {
        font-size: 9px;
        opacity: 0.65;
        transition: transform 0.25s;
    }

    .desktop-nav .dn-link:hover {
        color: var(--primary);
        background: var(--primary-50);
    }

    .desktop-nav .has-sub:hover > i,
    .desktop-nav .has-sub:hover .fa-chevron-down {
        transform: rotate(180deg);
    }

    /* Desktop Mega Menu */
    .dn-item {
        position: relative;
    }

    .desktop-nav .has-sub > .dn-link i {
        transition: transform 0.25s ease;
    }

    .dn-item.has-sub:hover > .dn-link i {
        transform: rotate(180deg);
    }

    .dn-mega {
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
        width: 980px;
        max-width: calc(100vw - 40px);
        background: var(--white);
        border-radius: 22px;
        padding: 0;
        box-shadow:
            0 30px 70px rgba(0, 0, 0, 0.16),
            0 10px 24px rgba(0, 0, 0, 0.06),
            0 1px 0 rgba(255, 255, 255, 0.6) inset;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
        border: 1px solid var(--border-light);
        z-index: 200;
        overflow: hidden;
    }

    .dn-mega::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 14px;
        height: 14px;
        background: var(--white);
        border-top: 1px solid var(--border-light);
        border-left: 1px solid var(--border-light);
        z-index: 2;
    }

    .dn-item.has-sub:hover .dn-mega {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    /* Header bar — eyebrow + tagline */
    .dn-mega-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 16px 26px;
        background: linear-gradient(135deg, #FEF7F7 0%, #FEFEFE 60%);
        border-bottom: 1px solid var(--border-light);
    }
    .dn-mega-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 800;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 1.2px;
    }
    .dn-mega-eyebrow i { font-size: 11px; }
    .dn-mega-title {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--text);
        font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .dn-mega-title em {
        font-style: normal;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
    }

    /* Columns container */
    .dn-mega-cols {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding: 22px 12px;
    }

    .dn-mega-col {
        padding: 0 14px;
        position: relative;
    }
    .dn-mega-col + .dn-mega-col::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        bottom: 8px;
        width: 1px;
        background: linear-gradient(180deg, transparent 0%, var(--border-light) 20%, var(--border-light) 80%, transparent 100%);
    }

    .dn-mega-col h4 {
        font-size: 11.5px;
        margin: 0 0 4px;
        color: var(--text);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.9px;
        display: flex;
        align-items: center;
        gap: 8px;
        line-height: 1.2;
    }

    .dn-mega-col h4 i {
        width: 26px;
        height: 26px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 7px;
        background: var(--primary-50);
        color: var(--primary);
        font-size: 12px;
        flex-shrink: 0;
    }

    .dn-phase-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        border-radius: 7px;
        background: var(--primary);
        color: var(--white);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.4px;
        flex-shrink: 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .dn-col-sub {
        display: block;
        font-size: 11.5px;
        color: var(--text-light);
        margin: 0 0 12px 34px;
        font-weight: 500;
        line-height: 1.4;
    }

    .dn-mega-col a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        font-size: 13px;
        color: var(--text-soft);
        border-radius: 9px;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
        font-weight: 600;
        margin-bottom: 1px;
        position: relative;
    }

    .dn-mega-col a .dn-link-text {
        flex: 1;
        min-width: 0;
        line-height: 1.3;
    }

    .dn-mega-col a .ic {
        width: 32px;
        height: 32px;
        border-radius: 9px;
        background: var(--bg-soft);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12.5px;
        flex-shrink: 0;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .dn-mega-col a:hover {
        background: linear-gradient(90deg, var(--primary-50) 0%, rgba(254, 242, 242, 0) 100%);
        color: var(--primary-dark);
        transform: translateX(3px);
    }

    .dn-mega-col a:hover .ic {
        background: var(--gradient);
        color: var(--white);
        transform: scale(1.05);
        box-shadow: 0 4px 10px rgba(14, 92, 58, 0.25);
    }

    /* Footer CTA bar */
    .dn-mega-foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 16px 26px;
        background: linear-gradient(135deg, #F0FDF4 0%, #D8F5DF 100%);
        border-top: 1px solid var(--primary-100);
    }
    .dn-foot-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
        flex: 1;
        min-width: 0;
    }
    .dn-foot-text strong {
        font-size: 13.5px;
        font-weight: 800;
        color: var(--text);
        line-height: 1.3;
    }
    .dn-foot-text span {
        font-size: 12px;
        color: var(--text-soft);
        line-height: 1.4;
    }
    .dn-foot-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--gradient);
        color: var(--white);
        padding: 10px 18px;
        border-radius: var(--radius-full);
        font-size: 13px;
        font-weight: 800;
        white-space: nowrap;
        box-shadow: 0 6px 16px rgba(14, 92, 58, 0.30);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        flex-shrink: 0;
    }
    .dn-foot-cta i { font-size: 11px; }
    .dn-foot-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(14, 92, 58, 0.40);
    }

    /* AI badge - özel vurgu */
    .ai-badge {
        background: linear-gradient(135deg, #0E5C3A, #0A4429);
        color: var(--white);
        font-size: 9px;
        font-weight: 800;
        padding: 2px 7px;
        border-radius: var(--radius-full);
        margin-left: auto;
        letter-spacing: 0.6px;
        box-shadow: 0 3px 8px rgba(14, 92, 58, 0.30);
    }

    .new-tag {
        background: #10B981;
        color: var(--white);
        font-size: 9px;
        font-weight: 800;
        padding: 2px 6px;
        border-radius: var(--radius-full);
        margin-left: auto;
        letter-spacing: 0.5px;
    }

    /* Header sağ aksiyon grubu */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* === Dil Seçici (desktop) === */
    .lang-switch {
        position: relative;
    }
    .lang-toggle {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 12px;
        background: transparent;
        border: 1px solid var(--border-light);
        border-radius: var(--radius-full);
        font-size: 13px;
        font-weight: 700;
        color: var(--text-soft);
        font-family: inherit;
        cursor: pointer;
        transition: all 0.2s ease;
        line-height: 1;
    }
    .lang-toggle .fa-globe {
        font-size: 13px;
        color: var(--primary);
    }
    .lang-toggle .lang-current {
        font-family: 'Plus Jakarta Sans', sans-serif;
        letter-spacing: 0.4px;
    }
    .lang-toggle .lang-caret {
        font-size: 9px;
        opacity: 0.6;
        transition: transform 0.25s ease;
    }
    .lang-toggle:hover {
        background: var(--primary-50);
        border-color: var(--primary-100);
        color: var(--primary);
    }
    .lang-switch.is-open .lang-toggle {
        background: var(--primary-50);
        border-color: var(--primary-100);
        color: var(--primary);
    }
    .lang-switch.is-open .lang-caret {
        transform: rotate(180deg);
    }

    .lang-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        min-width: 168px;
        background: var(--white);
        border: 1px solid var(--border-light);
        border-radius: 14px;
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10), 0 6px 14px rgba(0, 0, 0, 0.04);
        padding: 6px;
        list-style: none;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
        z-index: 200;
    }
    .lang-switch.is-open .lang-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .lang-menu li { margin: 0; }
    .lang-opt {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 12px;
        background: transparent;
        border: none;
        border-radius: 10px;
        font-size: 13.5px;
        font-weight: 600;
        color: var(--text-soft);
        font-family: inherit;
        cursor: pointer;
        transition: all 0.18s ease;
        text-align: left;
    }
    .lang-opt .lang-flag {
        font-size: 15px;
        line-height: 1;
    }
    .lang-opt .fa-check {
        margin-left: auto;
        color: var(--primary);
        font-size: 11px;
    }
    .lang-opt:hover {
        background: var(--primary-50);
        color: var(--primary-dark);
    }
    .lang-opt.is-active {
        background: var(--primary-50);
        color: var(--primary);
        font-weight: 700;
    }

    /* Header CTA Button — solid kırmızı (gradient yok) */
    .header-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 22px;
        background: var(--primary);
        color: var(--white);
        border-radius: var(--radius-full);
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        box-shadow: 0 6px 16px rgba(14, 92, 58, 0.26);
        transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .header-cta:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(14, 92, 58, 0.34);
    }

    /* === HERO (her slayt'ta sol-text + sağ-görsel) === */
    .hero { padding: 0; }

    .hero-slide-inner {
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 60px;
        align-items: center;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-text { margin-bottom: 0; min-height: 280px; display: flex; flex-direction: column; justify-content: center; }
    .hero h1 { font-size: 46px; line-height: 1.1; margin-bottom: 18px; min-height: 110px; }
    .hero p { font-size: 17px; max-width: 480px; margin-bottom: 28px; min-height: 56px; }

    .hero-frame {
        border-radius: 16px;
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.6) inset,
            0 24px 50px rgba(0, 0, 0, 0.12),
            0 10px 22px rgba(0, 0, 0, 0.06);
    }
    .hero-frame-bar { height: 38px; padding: 0 14px; }
    .hf-url { font-size: 12px; max-width: 320px; padding: 4px 12px; }
    .hf-dots i { width: 11px; height: 11px; }

    /* Desktop'ta refined slider okları görünür */
    .hero-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(14, 92, 58, 0.18);
        color: var(--primary);
        cursor: pointer;
        z-index: 5;
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        box-shadow: 0 8px 24px rgba(14, 92, 58, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
        transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    }
    .hero-arrow i { font-size: 14px; }
    .hero-prev { left: 18px; }
    .hero-next { right: 18px; }
    .hero-arrow:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-50%) scale(1.06);
        box-shadow: 0 12px 30px rgba(14, 92, 58, 0.30);
    }
    .hero-arrow:active {
        transform: translateY(-50%) scale(0.96);
    }

    /* Dots ortada altta - sliderın hemen altında */
    .hero-dots-wrap {
        padding: 4px 20px 30px;
    }

    /* === SECTION HEADS === */
    .section-head h2 { font-size: 40px; }
    .section-head p { font-size: 16px; max-width: 560px; margin: 0 auto; }

    /* === NELER YAPIYORUZ — Split Layout (telefon ortada) === */
    .services .container {
        position: relative;
    }

    .services-grid-web {
        display: grid;
        grid-template-columns: 1fr 260px 1fr;
        gap: 30px 70px;
        align-items: center;
        margin-top: 60px;
        position: relative;
    }

    .services-col {
        display: flex;
        flex-direction: column;
        gap: 50px;
        position: relative;
        z-index: 5;
    }

    .services-col.left { text-align: right; align-items: flex-end; padding-right: 16px; }
    .services-col.right { text-align: left; align-items: flex-start; padding-left: 16px; }

    /* Service card simplification on desktop */
    .services-grid-web .service-card {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        max-width: 320px;
        transition: transform 0.35s ease;
    }

    .services-grid-web .service-card:hover {
        transform: translateY(-6px);
    }

    .services-grid-web .service-card:hover h3 {
        color: var(--primary);
    }

    .services-grid-web .service-card .service-visual {
        display: none;
    }

    .services-grid-web .service-card .service-info {
        padding: 0;
    }

    .services-grid-web .service-card h3 {
        font-size: 22px;
        margin-bottom: 10px;
        transition: color 0.25s ease;
    }

    .services-grid-web .service-card p {
        font-size: 14.5px;
        line-height: 1.65;
        color: var(--text-soft);
    }

    .services-grid-web .service-card .service-tag {
        display: none;
    }

    .services-grid-web .service-card .service-link {
        margin-top: 8px;
    }

    .services-col.left .service-link { justify-content: flex-end; }

    /* Mockup ortada - z-index 1 (text üstte 5) */
    .services-mockup {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    /* Aura - telefon arkasında glow */
    .services-mockup::before {
        content: '';
        position: absolute;
        width: 360px;
        height: 360px;
        background: radial-gradient(circle, rgba(14, 92, 58, 0.18) 0%, transparent 70%);
        z-index: 0;
        animation: auraPulse 6s ease-in-out infinite;
    }

    @keyframes auraPulse {
        0%, 100% { transform: scale(1); opacity: 0.7; }
        50% { transform: scale(1.1); opacity: 1; }
    }

    .services-mockup-frame {
        position: relative;
        width: 245px;
        aspect-ratio: 9 / 18;
        background: linear-gradient(180deg, #1A1A1A 0%, #0F172A 100%);
        border-radius: 36px;
        padding: 10px;
        box-shadow: 0 35px 70px rgba(14, 92, 58, 0.25), 0 12px 30px rgba(0, 0, 0, 0.20),
                    inset 0 0 0 2px rgba(255, 255, 255, 0.05);
        z-index: 2;
        animation: phoneFloat 5s ease-in-out infinite;
    }

    @keyframes phoneFloat {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-10px) rotate(-1deg); }
    }

    .services-mockup-screen {
        width: 100%;
        height: 100%;
        background: var(--primary-50);
        border-radius: 28px;
        overflow: hidden;
        position: relative;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(8, 1fr);
        gap: 8px;
        padding: 26px 12px;
    }

    .services-mockup-screen .mi {
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
        aspect-ratio: 1;
        transition: transform 0.3s ease;
    }

    .services-mockup-screen .mi:hover {
        transform: scale(1.15);
    }

    /* Notch */
    .services-mockup-frame::before {
        content: '';
        position: absolute;
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 18px;
        background: #0F172A;
        border-radius: 0 0 14px 14px;
        z-index: 3;
    }

    /* Side floating icons - telefon kenarlarında, kart text'ini kapatmasın */
    .services-mockup-side {
        position: absolute;
        width: 56px;
        height: 56px;
        background: var(--white);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.04);
        z-index: 3;
        animation: sidePulse 4s ease-in-out infinite;
    }

    .ms-1 { top: 15%; left: -22px; color: var(--primary); }
    .ms-2 { top: 48%; right: -22px; color: #EC4899; animation-delay: -1.3s; }
    .ms-3 { bottom: 14%; left: -22px; color: #F59E0B; animation-delay: -2.6s; }

    @keyframes sidePulse {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-6px) scale(1.06); }
    }

    .services .tagline {
        margin-top: 50px;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        padding: 32px 40px;
    }
    .services .tagline p { font-size: 18px; }

    /* === NASIL YAPIYORUZ — 3 sütun x 2 satır grid === */
    .how-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 40px;
        margin-top: 40px;
    }

    .how-item {
        background: transparent;
        border: none;
        padding: 0;
        grid-template-columns: 64px 1fr;
        gap: 18px;
    }

    .how-item::before { display: none; }

    .how-item:active {
        transform: none;
        box-shadow: none;
        border: none;
    }

    .how-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        font-size: 26px;
    }

    .how-text h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .how-text p {
        font-size: 14px;
        color: var(--text-soft);
        line-height: 1.65;
    }

    /* === SÜREÇ TIMELINE — Alternating (sol-sağ) === */
    .timeline {
        max-width: 880px;
        margin: 50px auto 40px;
        padding: 8px 0;
    }

    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .tl-item {
        grid-template-columns: 1fr 72px 1fr;
        gap: 24px;
        margin-bottom: 30px;
    }

    /* tl-progress devre dışı (mobile/tablet'te yatay yok) */
    .tl-progress { display: none; }

    .tl-dot {
        grid-row: 1;
        grid-column: 2;
        margin: 0 auto;
        width: 64px;
        height: 64px;
        font-size: 22px;
    }

    .tl-step {
        top: -8px;
        right: -8px;
        min-width: 26px;
        height: 26px;
        font-size: 11.5px;
    }

    .tl-card {
        padding: 18px 22px;
    }

    /* Tek (1,3,5) — kart solda, dot ortada — accent çubuğu sağda */
    .tl-item:nth-child(odd) .tl-card {
        grid-column: 1;
        grid-row: 1;
        text-align: right;
        padding: 18px 22px 18px 18px;
    }
    .tl-item:nth-child(odd) .tl-card::before {
        left: auto;
        right: 0;
        border-radius: 3px 0 0 3px;
    }
    .tl-item:nth-child(odd) .tl-day {
        flex-direction: row-reverse;
    }

    /* Çift (2,4,6) — kart sağda */
    .tl-item:nth-child(even) .tl-card {
        grid-column: 3;
        grid-row: 1;
        text-align: left;
    }

    .tl-card h3 { font-size: 18px; }
    .tl-card p { font-size: 14px; }

    /* === PRICING — 3 sütun yan yana === */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        align-items: stretch;
        margin-top: 40px;
    }

    .price-card {
        display: flex;
        flex-direction: column;
        padding: 28px 26px;
    }

    .price-card-popular {
        transform: scale(1.04);
        z-index: 2;
    }

    .price-list {
        flex: 1;
    }

    .price-header h3 { font-size: 24px; }
    .price-amount .value { font-size: 44px; }

    /* === COMPARE / NEDEN BİZ — 2 sütun yan yana === */
    .compare-cards {
        flex-direction: row;
        gap: 24px;
        margin-top: 40px;
    }

    .cmp-card {
        flex: 1;
    }

    .cmp-us {
        transform: scale(1.02);
        z-index: 2;
    }

    /* === REFERANSLAR === */
    .brands-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .brand-image { aspect-ratio: 16 / 10; }

    /* === REVIEWS — yatay 3 kart === */
    .reviews-track {
        overflow: visible;
        padding: 6px 0 8px;
        gap: 22px;
    }

    .review-card {
        flex: 1 1 0;
        min-width: 0;
        scroll-snap-align: none;
    }

    .reviews-dots { display: none; }

    /* === FAQ — 2 sütun === */
    .faq-list {
        max-width: 920px;
        margin: 40px auto 0;
        gap: 14px;
    }

    .faq-q { padding: 20px 24px; font-size: 15.5px; }

    /* === FOOTER (mobile-style koru, sadece spacing arttır) === */
    .footer { padding: 50px 0 24px; }

    /* === SECTION CTA === */
    .sec-cta {
        max-width: 280px;
    }

}

/* === DESKTOP HOVER EFEKTLERİ === */
@media (min-width: 900px) {
    /* Service cards (mobile yapı) */
    .service-card {
        transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s;
    }
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 50px rgba(14, 92, 58, 0.10), 0 8px 20px rgba(0, 0, 0, 0.06);
        border-color: var(--primary-100);
    }
    .service-card:hover h3 {
        color: var(--primary);
    }

    /* Brand referans kartları */
    .brand-item {
        transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s;
    }
    .brand-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 50px rgba(14, 92, 58, 0.14);
        border-color: var(--primary-100);
    }
    .brand-item:hover .brand-image img {
        transform: scale(1.06);
    }
    .brand-item:hover .brand-overlay {
        opacity: 1;
    }
    .brand-item:hover .brand-info h4 {
        color: var(--primary);
    }
    .brand-info h4 {
        transition: color 0.25s ease;
    }
    .brand-image img {
        transition: transform 0.5s ease;
    }
    .brand-item-cta:hover {
        box-shadow: 0 24px 50px rgba(14, 92, 58, 0.30);
        border-color: transparent;
    }
    .brand-item-cta:hover .brand-cta-link {
        background: rgba(255, 255, 255, 0.30);
    }

    /* Pricing kartlar */
    .price-card {
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .price-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(14, 92, 58, 0.15);
    }
    .price-card-popular:hover {
        transform: translateY(-10px) scale(1.04);
    }

    /* Compare kartlar */
    .cmp-card {
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .cmp-us:hover {
        transform: translateY(-6px) scale(1.02);
    }

    /* FAQ items */
    .faq-item {
        transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
    }
    .faq-item:hover {
        box-shadow: 0 12px 28px rgba(14, 92, 58, 0.08);
        border-color: var(--primary-100);
    }

    /* How items - icon bouncy hover */
    .how-icon {
        transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s, color 0.25s;
    }
    .how-item:hover .how-icon {
        background: var(--primary);
        color: var(--white);
        transform: rotate(-6deg) scale(1.1);
        border-color: transparent;
    }
    .how-item:hover h3 {
        color: var(--primary);
        transition: color 0.25s;
    }

    /* Timeline kartları */
    .tl-card {
        transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s, border-color 0.25s;
    }
    .tl-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 44px rgba(14, 92, 58, 0.14), 0 6px 14px rgba(0, 0, 0, 0.05);
        border-color: var(--primary-100);
    }
    .tl-card:hover::before {
        opacity: 1 !important;
        top: 0;
    }
    .tl-card:hover h3 {
        color: var(--primary);
        transition: color 0.25s;
    }
    /* Dot icon — hover'da hafif sallanır */
    .tl-dot i {
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .tl-item:hover .tl-dot i {
        transform: scale(1.15) rotate(-6deg);
    }
    .tl-item:hover .tl-dot {
        transform: translateY(-2px);
    }
    .tl-item:hover .tl-dot-ring {
        animation: tlRingHover 0.6s ease;
    }
    @keyframes tlRingHover {
        0% { transform: scale(1); opacity: 0.7; }
        100% { transform: scale(1.15); opacity: 0; }
    }

    /* Review kartları */
    .review-card {
        transition: transform 0.3s ease, box-shadow 0.3s;
    }
    .review-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(14, 92, 58, 0.08);
    }

    /* Service link hover - ok hareketi */
    .service-link {
        transition: gap 0.25s ease, color 0.25s;
    }
    .service-link:hover {
        gap: 12px;
        color: var(--primary-dark);
    }

    /* Buttons - generic hover */
    .btn-primary {
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 32px rgba(14, 92, 58, 0.40);
    }

    /* Sec-cta hover */
    .sec-cta {
        transition: transform 0.25s, box-shadow 0.25s;
    }
    .sec-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 32px rgba(14, 92, 58, 0.36);
    }
}

/* === MOUSE FOLLOWER (yıldız efekti) === */
.cursor-glow {
    position: fixed;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle, rgba(14, 92, 58, 0.45) 0%, rgba(14, 92, 58, 0) 70%);
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.3s;
    opacity: 0;
    mix-blend-mode: multiply;
    will-change: transform, left, top;
}

@media (min-width: 900px) {
    .cursor-glow {
        opacity: 1;
        width: 240px;
        height: 240px;
        background: radial-gradient(circle, rgba(14, 92, 58, 0.07) 0%, rgba(14, 92, 58, 0) 60%);
    }

    /* Tıklanabilir element üstündeyken parıltı küçülsün ve daha kırmızı */
    .cursor-glow.active {
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(14, 92, 58, 0.18) 0%, rgba(14, 92, 58, 0) 60%);
    }
}

/* Yıldız parçacık animasyonu (hover'da görünür) */
.spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FCD34D;
    pointer-events: none;
    border-radius: 50%;
    box-shadow: 0 0 8px #FCD34D;
    animation: sparkFly 0.8s ease-out forwards;
    z-index: 9998;
}

@keyframes sparkFly {
    0% { transform: scale(0) translate(0, 0); opacity: 1; }
    50% { opacity: 1; }
    100% {
        transform: scale(1.2) translate(var(--sx, 30px), var(--sy, -30px));
        opacity: 0;
    }
}

/* === FADE-IN scroll animation === */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Geniş ekran (1200px+) */
@media (min-width: 1200px) {
    .container { max-width: 1240px; }
    .hero h1 { font-size: 56px; }
    .section-head h2 { font-size: 44px; }
}

/* ====================================
   DESKTOP RESPONSIVE FIXES (900px+)
   Sadece masaüstü düzenini etkiler.
==================================== */
@media (min-width: 900px) {
    /* Hero CTA butonu — flex-column içindeki inline-flex stretch'i engelle */
    .hero-text .btn {
        align-self: flex-start;
    }

    /* Pricing grid — 768px breakpoint'inden gelen 480px max-width'ı temizle,
       3 kart yan yana tam genişlikte hizalansın */
    .pricing-grid {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    /* === SERVICES (Neler Yapıyoruz?) — Clean 3x2 grid (telefon mockup'ı gizli) === */
    .services-grid-web {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        margin-top: 50px;
    }
    .services-col {
        display: contents;
    }
    .services-mockup { display: none; }
    .services-grid-web .service-card {
        background: var(--white);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        padding: 26px 24px;
        max-width: none;
        text-align: left;
        align-items: stretch;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .services-grid-web .service-card .service-visual { display: none; }
    .services-grid-web .service-card .service-tag {
        display: inline-flex;
        align-self: flex-start;
        padding: 4px 10px;
        font-size: 10.5px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        color: var(--primary);
        background: var(--primary-50);
        border-radius: var(--radius-full);
        margin-bottom: 10px;
    }
    .services-grid-web .service-card .service-info {
        padding: 0;
        text-align: left;
    }
    .services-grid-web .service-card h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }
    .services-grid-web .service-card p {
        font-size: 14px;
        line-height: 1.6;
        color: var(--text-soft);
        margin-bottom: 14px;
    }
    .services-grid-web .service-card .service-link {
        margin-top: auto;
        justify-content: flex-start;
    }
    .services-grid-web .service-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-100);
    }

    /* Partners / API entegrasyonları — tek sıra logolu kayan marka şeridi */
    .partners { overflow: hidden; }
    .partners .container { max-width: 100%; padding: 0; }
    .partners .section-head { max-width: 1240px; margin: 0 auto 8px; padding: 0 40px; }
    .partners-note { max-width: 1080px; margin: 24px auto 0; padding: 14px 18px; }

    .partners-marquee {
        position: relative;
        overflow: hidden;
        padding: 8px 0;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
                mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    }
    .partners-grid {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        gap: 14px;
        grid-template-columns: none;
        animation: partnersScroll 38s linear infinite;
        margin: 0;
    }
    .partners:hover .partners-grid { animation-play-state: paused; }
    .partners-grid .partner-card {
        flex: 0 0 200px;
        min-width: 200px;
    }
    @keyframes partnersScroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* === COMPARE / NEDEN BİZ — "Diğer Ajanslar" kartı için belirgin koyu zemin === */
    .cmp-them .cmp-head {
        background: linear-gradient(135deg, #475569 0%, #334155 100%);
        border-bottom: none;
        color: var(--white);
    }
    .cmp-them .cmp-head h3 { color: var(--white); }
    .cmp-them .cmp-head span { color: rgba(255, 255, 255, 0.78); }
    .cmp-them .cmp-icon {
        background: rgba(255, 255, 255, 0.14);
        color: rgba(255, 255, 255, 0.92);
        border: 1.5px solid rgba(255, 255, 255, 0.22);
    }

    /* === NASIL YAPIYORUZ — service kartları ile aynı tasarım (çerçeveli) === */
    .how-list {
        gap: 22px;
        margin-top: 50px;
    }
    .how-item {
        background: var(--white);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        padding: 26px 24px;
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: stretch;
    }
    .how-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        font-size: 22px;
    }
    .how-text h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .how-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* FAQ — container ile aynı genişlikte (alt CTA ve diğer bölümler ile hizalı) */
    .faq-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 16px;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    .faq-item { align-self: start; }

    /* === TIMELINE (14 Günde) — Yatay düzen, tek sıra 6 adım === */
    .timeline-sec { padding: 80px 0; }
    .timeline {
        max-width: 1240px;
        margin: 56px auto 40px;
        padding: 48px 0 0;
        position: relative;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
    /* Arka plan: ince noktalı çizgi (rail) */
    .timeline::before {
        content: '';
        position: absolute;
        left: 8.333%;
        right: 8.333%;
        top: 78px;
        bottom: auto;
        height: 2px;
        width: auto;
        transform: none;
        background-image: linear-gradient(90deg, var(--primary-100) 0%, var(--primary-100) 100%);
        -webkit-mask-image: repeating-linear-gradient(90deg, #000 0, #000 8px, transparent 8px, transparent 14px);
                mask-image: repeating-linear-gradient(90deg, #000 0, #000 8px, transparent 8px, transparent 14px);
        opacity: 1;
    }
    /* Üst progress (gradient kırmızı) — circle 5'e kadar dolu */
    .tl-progress {
        display: block;
        position: absolute;
        left: 8.333%;
        top: 78px;
        height: 2px;
        width: calc(83.334% * (4 / 5));
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
        z-index: 1;
        border-radius: 2px;
        box-shadow: 0 0 12px rgba(14, 92, 58, 0.35);
    }
    .tl-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        grid-template-columns: none;
        gap: 18px;
        margin-bottom: 0;
        position: relative;
    }
    .tl-item:nth-child(odd) .tl-card,
    .tl-item:nth-child(even) .tl-card {
        grid-column: auto;
        text-align: center;
        padding: 18px 16px 18px 16px;
    }
    /* Yatay düzende sol accent yerine üst accent çubuğu */
    .tl-card::before,
    .tl-item:nth-child(odd) .tl-card::before,
    .tl-item:nth-child(even) .tl-card::before {
        left: 16px;
        right: 16px;
        top: 0;
        bottom: auto;
        width: auto;
        height: 3px;
        border-radius: 0 0 3px 3px;
        opacity: 0;
        transition: opacity 0.3s ease, top 0.3s ease;
    }
    .tl-item:nth-child(odd) .tl-day {
        flex-direction: row;
    }
    .tl-dot {
        position: relative;
        z-index: 2;
        width: 64px;
        height: 64px;
        font-size: 22px;
        margin: 0;
        border-width: 2px;
        background: var(--white);
    }
    /* Tüm adımlar gradient kırmızı dolu — tutarlı görünüm */
    .tl-item .tl-dot {
        background: var(--gradient);
        color: var(--white);
        border-color: transparent;
        box-shadow: 0 0 0 4px var(--white), 0 10px 22px rgba(14, 92, 58, 0.22);
    }
    .tl-item .tl-dot-ring {
        border-color: var(--primary);
        opacity: 0.35;
    }
    /* Aktif adım (5 — Yayın): aynı gradient + ekstra dış halka ve pulse vurgusu */
    .tl-item:nth-child(5) .tl-dot {
        box-shadow: 0 0 0 4px var(--white), 0 0 0 10px rgba(14, 92, 58, 0.14), 0 12px 28px rgba(14, 92, 58, 0.30);
        animation: tlPulse 2.4s ease-in-out infinite;
    }
    .tl-item:nth-child(5) .tl-dot-ring {
        opacity: 0.6;
        animation: tlRingPulse 2.4s ease-in-out infinite;
    }
    /* Final adım (∞ — Yayın Sonrası): biraz daha güçlü gölge ile ayrıcalıklı vurgu */
    .tl-item-final .tl-dot,
    .tl-dot-final {
        box-shadow: 0 0 0 4px var(--white), 0 12px 26px rgba(14, 92, 58, 0.32);
    }
    .tl-item-final .tl-dot-ring,
    .tl-dot-final .tl-dot-ring {
        opacity: 0.5;
    }
    .tl-step {
        top: -8px;
        right: -8px;
        min-width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .tl-card {
        width: 100%;
        padding: 18px 16px;
        text-align: center;
    }
    .tl-card h3 { font-size: 15.5px; margin-bottom: 6px; letter-spacing: -0.2px; }
    .tl-card p { font-size: 12.5px; line-height: 1.55; }
    .tl-day {
        font-size: 10px;
        margin: 0 auto 8px;
        padding: 4px 9px;
    }
    .tl-card-final {
        background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%);
        border-color: var(--primary-100);
    }
    .tl-card-final::before {
        opacity: 1 !important;
    }

    @keyframes tlPulse {
        0%, 100% { box-shadow: 0 0 0 4px var(--white), 0 0 0 10px rgba(14, 92, 58, 0.16), 0 12px 28px rgba(14, 92, 58, 0.30); }
        50% { box-shadow: 0 0 0 4px var(--white), 0 0 0 16px rgba(14, 92, 58, 0.04), 0 12px 28px rgba(14, 92, 58, 0.30); }
    }
    @keyframes tlRingPulse {
        0%, 100% { transform: scale(1); opacity: 0.7; }
        50% { transform: scale(1.08); opacity: 0.2; }
    }

    /* === REVIEWS (Ne Diyorlar?) — Container içinde hizalı, dar === */
    .reviews .reviews-track,
    .reviews-track {
        max-width: 1240px;
        margin: 0 auto;
        padding: 6px 40px 8px;
        overflow: visible;
    }

    /* CTA kartı — 2 sütun: solda metin, sağda yan yana butonlar */
    .cta { padding: 70px 0; }
    .cta-card {
        text-align: left;
        padding: 44px 56px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 32px 40px;
        align-items: center;
    }
    .cta-card h2 {
        font-size: 30px;
        margin-bottom: 6px;
        grid-column: 1;
    }
    .cta-card p {
        font-size: 15px;
        margin-bottom: 0;
        grid-column: 1;
        grid-row: 2;
    }
    .cta-card .btn {
        margin-bottom: 0;
        white-space: nowrap;
        grid-column: 2;
    }
    .cta-card .btn-block { width: auto; }
    .cta-card .btn:nth-of-type(1) { grid-row: 1; align-self: end; }
    .cta-card .btn:nth-of-type(2) { grid-row: 2; align-self: start; }
    .cta-card::before {
        width: 360px;
        height: 360px;
        top: -140px;
        right: -120px;
    }

    /* === HEADER — desktop'ta beyaz zemin (marka: kırmızı/beyaz/siyah) === */
    .header {
        background: rgba(255, 255, 255, 0.96);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    }
    .header .logo { color: var(--text); }
    .header .logo-text { color: var(--text); }
    .header .logo-text em {
        color: var(--primary);
        background: none;
        -webkit-text-fill-color: currentColor;
    }
    .header .lm-left { stroke: var(--text); }
    .header .lm-right { stroke: var(--primary); }
    .header .lm-dot { fill: var(--primary); }

    .desktop-nav .dn-link { color: var(--text); }
    .desktop-nav .dn-link:hover {
        color: var(--primary);
        background: var(--primary-50);
    }

    .header-cta {
        background: var(--primary);
        color: var(--white);
        box-shadow: 0 6px 16px rgba(14, 92, 58, 0.26);
    }
    .header-cta:hover {
        background: var(--primary-dark);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(14, 92, 58, 0.34);
    }

    /* Dil seçici — beyaz header üzerinde uyumlu */
    .header .lang-toggle {
        background: var(--white);
        border-color: var(--border-light);
        color: var(--text);
    }
    .header .lang-toggle .fa-globe {
        color: var(--primary);
    }
    .header .lang-toggle:hover,
    .header .lang-switch.is-open .lang-toggle {
        background: var(--primary-50);
        border-color: var(--primary-100);
        color: var(--primary);
    }

    /* Mega menu üst oka koyu zemin uyumu */
    .dn-mega { top: calc(100% + 12px); }

    /* Header scroll-shadow JS'i koyu için yumuşat (main.js sadece üst gölgeyi değiştiriyor) */

    /* === FOOTER — desktop'ta koyu zemin === */
    .footer {
        padding: 70px 0 28px;
        background: #0F172A;
        border-top: none;
        color: rgba(255, 255, 255, 0.72);
    }
    .footer-mobile-only { display: none; }

    .footer-web {
        display: grid;
        grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
        gap: 60px 48px;
        align-items: start;
        margin-bottom: 36px;
    }

    .fw-brand .logo {
        margin-bottom: 16px;
        color: var(--white);
    }
    .fw-brand .logo .logo-text { color: var(--white); }
    .fw-brand .logo .logo-text em {
        color: var(--primary-light);
        background: none;
        -webkit-text-fill-color: currentColor;
    }
    .fw-brand .lm-left { stroke: #FFFFFF; }
    .fw-brand .lm-right { stroke: var(--primary-light); }
    .fw-brand .lm-dot { fill: var(--primary-light); }

    .fw-tagline {
        color: rgba(255, 255, 255, 0.62);
        font-size: 14px;
        line-height: 1.65;
        margin: 0 0 22px;
        max-width: 380px;
    }
    .fw-social {
        display: flex;
        gap: 10px;
    }
    .fw-social a {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.10);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        transition: all 0.25s;
    }
    .fw-social a:hover {
        background: var(--primary);
        color: var(--white);
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(14, 92, 58, 0.40);
    }

    .fw-col h4 {
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        color: var(--white);
        margin: 0 0 18px;
        position: relative;
        padding-bottom: 12px;
    }
    .fw-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 28px;
        height: 2px;
        background: var(--primary-light);
        border-radius: 2px;
    }

    .fw-col ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .fw-col ul a {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.65);
        transition: color 0.2s, padding 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .fw-col ul a:hover {
        color: var(--white);
        padding-left: 4px;
    }
    .fw-tag {
        display: inline-flex;
        align-items: center;
        padding: 2px 7px;
        background: #10B981;
        color: var(--white);
        border-radius: var(--radius-full);
        font-size: 9.5px;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    /* Contact column */
    .fw-contact-item {
        display: grid;
        grid-template-columns: 38px 1fr;
        gap: 12px;
        align-items: center;
        padding: 10px 0;
        color: inherit;
        transition: transform 0.2s;
    }
    a.fw-contact-item:hover {
        transform: translateX(3px);
    }
    a.fw-contact-item:hover .fw-ci-ic {
        background: var(--primary);
        color: var(--white);
        border-color: transparent;
    }
    .fw-ci-ic {
        width: 38px;
        height: 38px;
        border-radius: 11px;
        background: rgba(255, 255, 255, 0.06);
        color: var(--primary-light);
        border: 1px solid rgba(255, 255, 255, 0.10);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        transition: all 0.25s;
    }
    .fw-ci-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
        min-width: 0;
    }
    .fw-ci-text em {
        font-style: normal;
        font-size: 10.5px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 700;
        margin-bottom: 3px;
    }
    .fw-ci-text strong {
        font-size: 13.5px;
        color: var(--white);
        font-weight: 700;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 16px;
        font-size: 12.5px;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.55);
    }
    .footer-bottom strong { color: var(--white); }
    .footer-bottom p { color: rgba(255, 255, 255, 0.55); }
    .footer-legal a { color: rgba(255, 255, 255, 0.65); }
    .footer-legal a:hover { color: var(--white); }
    .footer-legal span { color: rgba(255, 255, 255, 0.30); }
}

/* ====================================
   GRAFIKSEL ZENGİNLEŞTİRMELER (900px+)
==================================== */
@media (min-width: 900px) {
    /* Hero ve alt slayt arka planlarına ek dekoratif gradient eklenmez —
       slayt başına tek renk kuralı korunur. */

    /* === SERVICES — sol-alt blob, sağ-üst halka === */
    .services {
        position: relative;
    }
    .services .container { position: relative; z-index: 1; }

    /* === SECTION HEAD — düz accent çizgisi === */
    .section-head { position: relative; }
    .section-head::after {
        content: '';
        display: block;
        width: 56px;
        height: 3px;
        margin: 18px auto 0;
        background: var(--primary);
        border-radius: 2px;
    }

    /* === STATS BAND — siyah zemin "ticker" tasarımı === */
    .stats-band-sec {
        display: block;
        padding: 40px 0 0;
    }
    .stats-band {
        margin: 50px auto 0;
        max-width: 1080px;
        padding: 36px 40px;
        background: #0F0F0F;
        border-radius: var(--radius-xl);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        position: relative;
        overflow: hidden;
    }
    /* Üst kenarda kırmızı accent şerit */
    .stats-band::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--primary);
    }
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 0 24px;
        position: relative;
        gap: 4px;
    }
    .stat-item + .stat-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 12px;
        bottom: 12px;
        width: 1px;
        background: rgba(255, 255, 255, 0.12);
    }
    .stat-icon {
        display: none; /* yeni tasarımda ikon yerine sadece sayı + label */
    }
    .stat-text {
        display: flex;
        flex-direction: column;
        gap: 6px;
        position: relative;
    }
    .stat-num {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 38px;
        font-weight: 900;
        color: var(--white);
        line-height: 1;
        letter-spacing: -1.2px;
        display: inline-flex;
        align-items: baseline;
        gap: 4px;
    }
    .stat-num em {
        font-style: normal;
        color: var(--white);
        background: none;
        -webkit-text-fill-color: currentColor;
    }
    .stat-label {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.55);
        text-transform: uppercase;
        letter-spacing: 1.2px;
        font-weight: 700;
        margin-top: 2px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    /* Etiketin önünde kırmızı dot işareti */
    .stat-label::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
    }

    /* === COMPARE / PRICING / TIMELINE — arka plan dekorasyonu === */
    .why-us, .pricing, .timeline-sec {
        position: relative;
        overflow: hidden;
    }
    .pricing .container { position: relative; z-index: 1; }

    /* === REVIEWS bg — düz === */
    .reviews {
        background: var(--bg-soft);
    }

    /* === CTA — ek dekoratif blob === */
    .cta-card::after {
        content: '';
        position: absolute;
        width: 280px;
        height: 280px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 50%;
        bottom: -120px;
        left: -60px;
        pointer-events: none;
    }

    /* === BRANDS / Referanslar — section başlangıç noktasına accent şerit === */
    .brands {
        position: relative;
    }
    .brands::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--gradient);
        border-radius: 0 0 4px 4px;
    }

    /* Hero h1 ve span — ek glow ve background-size animasyon */
    .hero h1 span {
        background-size: 200% 200%;
        animation: gradientShiftSlow 6s ease infinite;
    }
    @keyframes gradientShiftSlow {
        0%, 100% { background-position: 0% 50%; }
        50%      { background-position: 100% 50%; }
    }

    /* === Service kartlarına korner accent === */
    .services-grid-web .service-card {
        position: relative;
        overflow: hidden;
    }
    .services-grid-web .service-card::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 80px;
        height: 80px;
        background: linear-gradient(225deg, var(--primary-50) 0%, transparent 70%);
        z-index: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .services-grid-web .service-card:hover::after { opacity: 1; }
    .services-grid-web .service-card > * { position: relative; z-index: 1; }

    /* === How items — korner accent === */
    .how-item {
        position: relative;
        overflow: hidden;
    }
    .how-item::after {
        content: '';
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 90px;
        height: 90px;
        background: radial-gradient(circle, var(--primary-50) 0%, transparent 70%);
        border-radius: 50%;
        opacity: 0.6;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 0;
    }
    .how-item:hover::after {
        transform: scale(1.4);
        opacity: 1;
    }
    .how-item > * { position: relative; z-index: 1; }
}

/* Geniş masaüstü — 1200px+ ek hizalamalar */
@media (min-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
    .cta-card {
        padding: 52px 64px;
    }
    .cta-card h2 { font-size: 36px; }
}

/* =====================================================
   GW: GIRESUN WEB — ÖZGÜN BLOKLAR
   Hakkımızda + Görsel Hizmet Kartları
===================================================== */

/* --- Hakkımızda --- */
.gw-about {
    padding: 60px 0;
    background: var(--white);
    position: relative;
}
.gw-about::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 400px at 90% 10%, rgba(14,92,58,0.05) 0%, transparent 60%),
        radial-gradient(700px 350px at 5% 90%, rgba(11,61,92,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.gw-about__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.gw-about__subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.gw-about__subtitle::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--primary);
    display: inline-block;
}
.gw-about__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    line-height: 1.18;
    margin-bottom: 16px;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: -0.5px;
}
.gw-about__title em {
    color: var(--primary);
    font-style: normal;
}
.gw-about__lead {
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    font-weight: 500;
}
.gw-about__text {
    color: var(--text-soft);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 20px;
}
.gw-about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0 24px;
}
.gw-about__feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--primary-50);
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--primary-100);
}
.gw-about__feat i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.gw-about__feat-text strong {
    color: var(--accent);
    font-size: 13.5px;
    display: block;
    margin-bottom: 2px;
    font-weight: 700;
}
.gw-about__feat-text span {
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.4;
}
.gw-about__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 8px 22px rgba(14, 92, 58, 0.32);
}
.gw-about__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(14, 92, 58, 0.42);
}
.gw-about__visual {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(11, 61, 92, 0.18);
    background: var(--primary-50);
}
.gw-about__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gw-about__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11,61,92,0.45) 100%);
    pointer-events: none;
}
.gw-about__badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius);
    box-shadow: 0 14px 28px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.gw-about__badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.gw-about__badge-text strong {
    display: block;
    color: var(--accent);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
}
.gw-about__badge-text span {
    color: var(--text-soft);
    font-size: 11.5px;
}

/* --- GW Görsel Hizmet Kartları --- */
.gw-services {
    padding: 56px 0 64px;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}
.gw-services-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}
.gw-services-head .badge {
    margin: 0 auto 14px;
}
.gw-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.gw-service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
}
.gw-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(14, 92, 58, 0.16);
    border-color: var(--primary-200);
}
.gw-service-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--primary-50);
    position: relative;
}
.gw-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.gw-service-card:hover .gw-service-card__image img {
    transform: scale(1.06);
}
.gw-service-card__num {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2;
    letter-spacing: 0.3px;
}
.gw-service-card__tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    text-transform: uppercase;
}
.gw-service-card__body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gw-service-card__body h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent);
    font-weight: 700;
    line-height: 1.3;
}
.gw-service-card__body p {
    color: var(--text-soft);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}
.gw-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 13.5px;
    transition: gap 0.3s;
}
.gw-service-card:hover .gw-service-card__link {
    gap: 12px;
}
.gw-service-card__link i {
    transition: transform 0.3s;
    font-size: 12px;
}
.gw-service-card:hover .gw-service-card__link i {
    transform: translate(3px, -3px);
}

/* GW responsive */
@media (min-width: 768px) {
    .gw-about { padding: 72px 0; }
    .gw-about__title { font-size: 34px; }
    .gw-services { padding: 72px 0 80px; }
    .gw-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    .gw-about__features { gap: 14px; }
}
@media (min-width: 1024px) {
    .gw-about { padding: 90px 0; }
    .gw-about__grid {
        grid-template-columns: 1.05fr 1fr;
        gap: 56px;
    }
    .gw-about__title { font-size: 40px; }
    .gw-services { padding: 90px 0 100px; }
    .gw-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
    }
}
@media (min-width: 1200px) {
    .gw-about__title { font-size: 44px; }
}

/* =====================================================
   SOFT-ABOUT — Koyu arkaplanlı hakkımızda
   (istanbul yazılım pattern, Giresun palette)
===================================================== */
.soft-about {
    position: relative;
    z-index: 9;
    background-color: var(--accent-dark);
    background-image: url("https://images.unsplash.com/photo-1499092346589-b9b6be3e94b2?w=1600&auto=format&fit=crop&q=70");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 460px;
    height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.soft-about::before {
    content: "";
    background: linear-gradient(135deg, rgba(8, 42, 64, 0.94) 0%, rgba(11, 61, 92, 0.85) 100%);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.soft-about::after {
    content: "";
    background: radial-gradient(circle, rgba(14, 92, 58, 0.45) 0%, rgba(14, 92, 58, 0) 60%);
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    border-radius: 100%;
    z-index: 2;
    pointer-events: none;
}

.soft-about .about-wrapper {
    position: relative;
    z-index: 10;
}

.soft-about .about-content-area .soft-head {
    margin: 0 0 22px;
    align-items: flex-start;
    flex-direction: column;
}

.soft-about .about-content-area .subtitle {
    color: rgba(22, 163, 74, 0.95);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

.soft-about .about-content-area h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.18;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.soft-about .about-content-area p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.85;
    font-size: 14.5px;
    width: 100%;
    max-width: 720px;
    margin: 0 0 12px;
    font-weight: 400;
}

.soft-about .about-content-area p strong {
    color: #fff;
    font-weight: 700;
}

.soft-about .about-content-area .soft-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    font-size: 13.5px;
    font-weight: 600;
    margin-top: 18px;
    padding: 13px 22px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.soft-about .about-content-area .soft-button i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.soft-about .about-content-area .soft-button:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(14, 92, 58, 0.42);
}
.soft-about .about-content-area .soft-button:hover i {
    transform: translate(2px, -2px);
}

@media (min-width: 768px) {
    .soft-about .about-content-area h2 { font-size: 42px; }
    .soft-about .about-content-area p { width: 80%; font-size: 15.5px; }
}
@media (min-width: 1024px) {
    .soft-about { min-height: 520px; padding: 110px 0; }
    .soft-about .about-content-area h2 { font-size: 48px; }
    .soft-about .about-content-area p { width: 70%; }
}
@media (max-width: 767px) {
    .soft-about { padding: 60px 0; min-height: auto; }
    .soft-about .about-content-area h2 { font-size: 26px; }
    .soft-about::after { display: none; }
}

/* =====================================================
   SOFT-SERVICE — istanbul yazılım birebir port
   (sadece renk farkı: #CF4738 kırmızı → #0E5C3A yeşil)
===================================================== */
.soft-service {
    position: relative;
    z-index: 9;
    margin: 100px 0 0;
}

.soft-service .soft-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    margin: 0 0 50px;
}

.soft-service .soft-head .soft-head-col:first-child {
    border-right: 1px solid #CCCCCC;
    padding: 0 50px 0 0;
}

.soft-service .soft-head .soft-head-col .subtitle {
    color: rgb(35 35 35 / 40%);
    letter-spacing: 8px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.soft-service .soft-head .soft-head-col h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 300;
    font-size: 35px;
    color: var(--accent);
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin: 0;
}
.soft-service .soft-head .soft-head-col h2 strong {
    font-weight: 800;
    color: var(--primary);
}

.soft-service .soft-head .soft-head-col p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.soft-service .service-wrapper {}

.soft-service .service-wrapper .service-row {
    display: flex;
}

.soft-service .service-wrapper .service-row .service-slider {
    width: 60%;
}

.swiper.swiper-service {
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
}

.swiper.swiper-service .swiper-slide {
    opacity: 0.42;
    transform: scale(0.86);
    transition: opacity 0.5s ease, transform 0.5s ease;
    height: auto;
    visibility: visible;
}

.swiper.swiper-service .swiper-slide.swiper-slide-prev,
.swiper.swiper-service .swiper-slide.swiper-slide-next {
    opacity: 0.78;
    transform: scale(0.92);
    z-index: 50;
}

.swiper.swiper-service .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1.04);
    z-index: 999;
}

.swiper.swiper-service .swiper-slide .service-home-card {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid #fff;
    aspect-ratio: 3/4;
    text-decoration: none;
}

.swiper.swiper-service .swiper-slide .service-home-card::before {
    content: "";
    background: linear-gradient(180deg, rgb(35 35 35 / 40%) 0%, #232323 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.swiper.swiper-service .swiper-slide.swiper-slide-active .service-home-card::before {
    background: linear-gradient(180deg, rgb(35 35 35 / 0%) 0%, #232323 100%);
}

.swiper.swiper-service .swiper-slide .service-home-card .image {
    width: 100%;
    height: 100%;
}
.swiper.swiper-service .swiper-slide .service-home-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper.swiper-service .swiper-slide .service-home-card .content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 25px 30px 25px;
    z-index: 99;
}

.swiper.swiper-service .swiper-slide .service-home-card .content h3 {
    color: #fff;
    font-size: 15px;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.swiper.swiper-service .swiper-slide .service-home-card .content p {
    height: 0;
    opacity: 0;
    visibility: hidden;
    color: rgb(255 255 255 / 70%);
    font-size: 10px;
    line-height: 16px;
}

.swiper.swiper-service .swiper-slide.swiper-slide-active .service-home-card .content p {
    height: auto;
    opacity: 1;
    visibility: visible;
    margin: 10px 0 15px;
}

.swiper.swiper-service .swiper-slide.swiper-slide-active .service-home-card .content .link {
    height: auto;
    opacity: 1;
    visibility: visible;
}

.swiper.swiper-service .swiper-slide .service-home-card .content .link {
    height: 0;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

.swiper.swiper-service .swiper-slide .service-home-card .content .link i {
    font-size: 13px;
}

.soft-service .service-wrapper .service-row .service-manage {
    width: 40%;
}

.soft-service .service-wrapper .service-row .service-manage .manage-slider {
    height: 100%;
    position: relative;
}

.swiper.swiper-service-manage {
    height: 400px;
}

.swiper.swiper-service-manage .swiper-slide {
    display: flex;
    justify-content: flex-end;
    height: 80px;
    line-height: 1;
    cursor: pointer;
}

.swiper.swiper-service-manage .swiper-slide.is-active .manage-vision {
    color: var(--accent);
}

.swiper.swiper-service-manage .swiper-slide.is-active .manage-vision .line {
    background-color: var(--primary);
    height: 2px;
}

.swiper.swiper-service-manage .swiper-slide .manage-vision {
    display: flex;
    color: rgb(35 35 35 / 30%);
    align-items: center;
    gap: 50px;
    cursor: pointer;
}

.swiper.swiper-service-manage .swiper-slide .manage-vision .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.swiper.swiper-service-manage .swiper-slide .manage-vision span.line {
    width: 100px;
    height: 1px;
    background-color: rgb(35 35 35 / 30%);
}

.swiper.swiper-service-manage .swiper-slide .manage-vision .number {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.soft-service .service-wrapper .service-row .service-manage .manage-slider .navigation-group {
    padding: 0 0 0 50px;
    margin: 30px 0 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.soft-service .service-wrapper .service-row .service-manage .manage-slider .navigation-group .swiper-navigation-button {
    z-index: 9999999;
    border: 1px solid rgb(255 255 255 / 20%);
    width: 60px;
    min-width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    background: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: inherit;
}

.soft-service .service-wrapper .service-row .service-manage .manage-slider .navigation-group .swiper-navigation-button.prev {
    width: 100%;
    flex: 1;
    background-color: #fff !important;
    color: var(--accent);
    gap: 20px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    border-color: var(--border);
    justify-content: flex-start;
}

.soft-service .service-wrapper .service-row .service-manage .manage-slider .navigation-group .swiper-navigation-button.prev:hover {
    background-color: var(--primary) !important;
    color: #fff;
    border-color: var(--primary);
}
.soft-service .service-wrapper .service-row .service-manage .manage-slider .navigation-group .swiper-navigation-button.prev:hover .line {
    background-color: rgba(255,255,255,0.4);
}

.soft-service .service-wrapper .service-row .service-manage .manage-slider .navigation-group .swiper-navigation-button.next {
    background-color: var(--accent);
    color: #fff;
}
.soft-service .service-wrapper .service-row .service-manage .manage-slider .navigation-group .swiper-navigation-button.next:hover {
    background-color: var(--primary);
}

.soft-service .service-wrapper .service-row .service-manage .manage-slider .navigation-group .swiper-navigation-button i {
    font-size: 16px;
}

.soft-service .service-wrapper .service-row .service-manage .manage-slider .navigation-group .swiper-navigation-button .line {
    flex: 1;
    height: 1px;
    background-color: #CFCFCF;
    transition: all 0.3s;
}

.soft-service .service-wrapper .service-row .service-manage .manage-slider .navigation-group .swiper-navigation-button.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* === MOBİL & TABLET (≤991px) — istanbul responsive port === */
@media (max-width: 991px) {
    .soft-service { margin: 50px 0 0; }
    .soft-service .soft-head {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .soft-service .soft-head .soft-head-col:first-child {
        border-right: none;
        padding: 0;
    }
    .soft-service .soft-head .soft-head-col .subtitle { font-size: 16px; letter-spacing: 8px; }
    .soft-service .soft-head .soft-head-col h2 { font-size: 28px; }

    .swiper.swiper-service .swiper-slide,
    .swiper.swiper-service .swiper-slide.swiper-slide-prev,
    .swiper.swiper-service .swiper-slide.swiper-slide-next,
    .swiper.swiper-service .swiper-slide.swiper-slide-active {
        transform: scale(1);
        opacity: 1;
    }

    .soft-service .service-wrapper .service-row {
        flex-direction: column;
    }
    .soft-service .service-wrapper .service-row .service-slider { width: 100%; }
    .swiper.swiper-service {
        width: 100%;
        padding: 20px 0;
    }
    .soft-service .service-wrapper .service-row .service-manage { width: 100%; }
    .swiper.swiper-service-manage { height: auto; width: 100%; }

    .soft-service .service-wrapper .service-row .service-manage .manage-slider .navigation-group {
        position: relative;
        padding: 15px 0;
        bottom: unset;
        border-top: 1px solid #e0e0e0;
    }

    .swiper.swiper-service-manage .swiper-slide { justify-content: flex-start; height: auto; padding: 12px 0; }
    .swiper.swiper-service-manage .swiper-slide .manage-vision { gap: 20px; padding: 0; }
    .swiper.swiper-service-manage .swiper-slide .manage-vision .text { font-size: 14px; line-height: 18px; }
    .swiper.swiper-service-manage .swiper-slide .manage-vision .number { font-size: 18px; }
    .swiper.swiper-service-manage .swiper-slide .manage-vision span.line { width: 60px; }

    .soft-service .service-wrapper .service-row .service-manage .manage-slider .navigation-group .swiper-navigation-button,
    .soft-service .service-wrapper .service-row .service-manage .manage-slider .navigation-group .swiper-navigation-button.prev {
        background-color: var(--accent) !important;
        color: #fff;
        height: 40px;
        border-color: var(--accent);
    }
}

@media (max-width: 480px) {
    .swiper.swiper-service { padding: 12px 0; }
    .soft-service .soft-head .soft-head-col .subtitle { font-size: 13px; letter-spacing: 5px; }
    .soft-service .soft-head .soft-head-col h2 { font-size: 24px; }
}

/* =====================================================
   GW REFS — Özgün staggered referans grid
===================================================== */
.gw-refs {
    padding: 60px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.gw-refs::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 350px at 90% 0%, rgba(14,92,58,0.06) 0%, transparent 60%),
        radial-gradient(600px 300px at 5% 100%, rgba(11,61,92,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.gw-refs > .container { position: relative; z-index: 1; }

.gw-refs__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.gw-refs__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 14px;
    background: var(--primary-50);
    border-radius: 999px;
    border: 1px solid var(--primary-100);
}
.gw-refs__eyebrow i { font-size: 12px; }
.gw-refs__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    line-height: 1.15;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.gw-refs__title em {
    font-style: normal;
    color: var(--primary);
}
.gw-refs__lead {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}

.gw-refs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.gw-ref-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: var(--accent-dark);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 14px 32px rgba(8, 42, 64, 0.14);
    display: block;
    min-height: 0;
}
.gw-ref-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(8, 42, 64, 0.28);
}
.gw-ref-card__image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.gw-ref-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease, filter 0.6s ease;
    filter: brightness(0.85) saturate(1.05);
}
.gw-ref-card:hover .gw-ref-card__image img {
    transform: scale(1.07);
    filter: brightness(1) saturate(1.1);
}
.gw-ref-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,42,64,0.10) 0%, rgba(8,42,64,0.55) 50%, rgba(8,42,64,0.95) 100%);
    z-index: 2;
    pointer-events: none;
}
.gw-ref-card__num {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3;
    letter-spacing: 0.5px;
}
.gw-ref-card__num em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    margin-left: 1px;
    font-weight: 600;
}
.gw-ref-card__sector {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 7px 13px;
    border-radius: 999px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(14, 92, 58, 0.35);
}
.gw-ref-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 22px 24px;
    z-index: 3;
}
.gw-ref-card__city {
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.gw-ref-card__city i { font-size: 10px; color: var(--primary-light); }
.gw-ref-card__title {
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}
.gw-ref-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.gw-ref-card__tag {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.gw-ref-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 12.5px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: gap 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.gw-ref-card:hover .gw-ref-card__cta {
    gap: 12px;
    border-color: var(--primary-light);
    color: var(--primary-light);
}
.gw-ref-card__cta i { font-size: 10px; }

/* === GW REF CARD — CTA varyant (20. kart "Senin Markan") === */
.gw-ref-card--cta {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 55%, var(--primary) 100%);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 14px 32px rgba(14, 92, 58, 0.22);
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.gw-ref-card--cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.10) 0%, transparent 45%);
    animation: gw-cta-rotate 18s linear infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes gw-cta-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.gw-ref-card--cta:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(14, 92, 58, 0.42);
}
.gw-ref-card--cta__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 28px 22px;
}
.gw-ref-card--cta__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    transition: transform 0.5s ease, background 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.gw-ref-card--cta:hover .gw-ref-card--cta__icon {
    transform: rotate(90deg) scale(1.08);
    background: rgba(255, 255, 255, 0.28);
}
.gw-ref-card--cta__eyebrow {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
    display: block;
}
.gw-ref-card--cta__title {
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.18;
    letter-spacing: -0.4px;
}
.gw-ref-card--cta__title em {
    font-style: normal;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    padding: 0 9px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-block;
}
.gw-ref-card--cta__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 11.5px;
    line-height: 1.45;
    margin-bottom: 18px;
    max-width: 90%;
}
.gw-ref-card--cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    transition: transform 0.3s ease, background 0.3s ease;
}
.gw-ref-card--cta:hover .gw-ref-card--cta__btn {
    background: #fff;
    transform: scale(1.04);
}
.gw-ref-card--cta__btn i { font-size: 9.5px; }

/* =====================================================
   PRICING SWIPER — paketler kayıdırılabilir
   (mevcut .price-card stilleri korunuyor, sadece sarmalayıcı)
===================================================== */
.pricing-slider {
    position: relative;
    margin: 0 -8px;
}

.swiper.swiper-pricing {
    width: 100%;
    padding: 24px 8px 32px;
    overflow: hidden;
}

.swiper.swiper-pricing .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.swiper.swiper-pricing .swiper-slide .price-card {
    width: 100%;
    height: 100%;
    margin: 0;
}

/* "EN POPÜLER" rozetinin overflow yüzünden kesilmesini engelle */
.swiper.swiper-pricing .swiper-slide .price-card-popular {
    margin-top: 14px;
}

/* Pricing navigation buttons */
.pricing-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 12px 0 0;
}

.pricing-nav .swiper-navigation-button {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--accent);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-nav .swiper-navigation-button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(14, 92, 58, 0.32);
}

.pricing-nav .swiper-navigation-button.next {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.pricing-nav .swiper-navigation-button.next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.pricing-nav .swiper-navigation-button i {
    font-size: 14px;
}

.pricing-nav .swiper-navigation-button.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
}

@media (min-width: 768px) {
    .pricing-nav { margin-top: 18px; gap: 14px; }
    .pricing-nav .swiper-navigation-button { width: 56px; height: 56px; min-width: 56px; }
}

@media (min-width: 1200px) {
    .swiper.swiper-pricing { padding: 32px 8px 40px; }
}

/* Bottom CTA */
.gw-refs__cta {
    text-align: center;
    margin-top: 56px;
    padding: 30px 20px;
    position: relative;
}
.gw-refs__cta-line {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto 18px;
    border-radius: 2px;
}
.gw-refs__cta-eyebrow {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.gw-refs__cta-title {
    display: block;
    color: var(--accent);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 22px;
    letter-spacing: -0.4px;
}
.gw-refs__cta-title em {
    font-style: normal;
    color: var(--primary);
}
.gw-refs__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(14, 92, 58, 0.3);
    transition: transform 0.25s, box-shadow 0.25s;
}
.gw-refs__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(14, 92, 58, 0.42);
}

/* Grup başlığı — her referans bölümünün üstünde */
.gw-refs__group-title {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--accent);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 36px 0 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    letter-spacing: -0.2px;
}
.gw-refs__group-title:first-of-type { margin-top: 0; }
.gw-refs__group-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    background: var(--gradient);
    color: #fff;
    border-radius: 999px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(14, 92, 58, 0.32);
}

/* Tablet — 2 kolon (her grid varyantı için) */
@media (min-width: 640px) {
    .gw-refs__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Orta breakpoint — 3 kolon */
@media (min-width: 768px) {
    .gw-refs__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .gw-refs { padding: 90px 0 100px; }
    .gw-refs__head { margin-bottom: 60px; }
    .gw-refs__title { font-size: 42px; }
    .gw-refs__lead { font-size: 16px; }

    .gw-refs__group-title {
        font-size: 22px;
        margin: 50px 0 28px;
    }

    /* 4-kolon varyant — Bölüm 1 (4 kart, tek sıra) */
    .gw-refs__grid--4col {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }

    /* 5-kolon varyant — Bölüm 2 (5 kart, tek sıra, kartlar 1/4 daha dar) */
    .gw-refs__grid--5col {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
    .gw-refs__grid--5col .gw-ref-card__title { font-size: 16px; line-height: 1.22; }
    .gw-refs__grid--5col .gw-ref-card__body { padding: 18px 18px 20px; }
    .gw-refs__grid--5col .gw-ref-card__num { padding: 6px 11px; font-size: 12px; }
    .gw-refs__grid--5col .gw-ref-card__sector { padding: 5px 10px; font-size: 9.5px; }
    .gw-refs__grid--5col .gw-ref-card__city { font-size: 10px; letter-spacing: 1.2px; }
    .gw-refs__grid--5col .gw-ref-card__tag { font-size: 9.5px; padding: 3px 8px; }
    .gw-refs__grid--5col .gw-ref-card__cta { font-size: 11.5px; }

    /* 6-kolon varyant — Bölüm 3 (6 kart, tek sıra, en dar) */
    .gw-refs__grid--6col {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }
    .gw-refs__grid--6col .gw-ref-card__title { font-size: 14px; line-height: 1.2; }
    .gw-refs__grid--6col .gw-ref-card__body { padding: 14px 14px 16px; }
    .gw-refs__grid--6col .gw-ref-card__num { padding: 5px 9px; font-size: 11px; }
    .gw-refs__grid--6col .gw-ref-card__num em { display: none; }
    .gw-refs__grid--6col .gw-ref-card__sector { padding: 4px 9px; font-size: 9px; letter-spacing: 0.4px; }
    .gw-refs__grid--6col .gw-ref-card__city { font-size: 9.5px; letter-spacing: 1px; margin-bottom: 6px; }
    .gw-refs__grid--6col .gw-ref-card__city i { font-size: 9px; }
    .gw-refs__grid--6col .gw-ref-card__tags { gap: 4px; margin-bottom: 10px; }
    .gw-refs__grid--6col .gw-ref-card__tag { font-size: 9px; padding: 3px 7px; }
    .gw-refs__grid--6col .gw-ref-card__cta { font-size: 11px; gap: 6px; }
    .gw-refs__grid--6col .gw-ref-card__cta i { font-size: 9px; }

    .gw-ref-card__title { font-size: 20px; }
    .gw-refs__cta-title { font-size: 30px; }
}

@media (min-width: 1200px) {
    .gw-refs__title { font-size: 48px; }
    .gw-refs__grid--4col { gap: 26px; }
    .gw-refs__grid--5col { gap: 18px; }
    .gw-refs__grid--6col { gap: 14px; }
    .gw-ref-card__title { font-size: 22px; }
    .gw-refs__grid--5col .gw-ref-card__title { font-size: 17px; }
    .gw-refs__grid--6col .gw-ref-card__title { font-size: 15px; }
}

/* =====================================================
   REF DETAY SAYFASI — /referans/{slug}
   3 cihaz (masaüstü/tablet/mobil) + bilgi kartları + CTA
===================================================== */
.ref-detail {
    padding: 40px 0 60px;
    background: linear-gradient(180deg, var(--bg) 0%, #FFFFFF 100%);
    min-height: 60vh;
}
.ref-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.ref-breadcrumb a { color: var(--primary); font-weight: 600; }
.ref-breadcrumb a:hover { color: var(--primary-dark); }
.ref-breadcrumb i { font-size: 9px; color: var(--text-light); }
.ref-breadcrumb span { color: var(--accent); font-weight: 700; }

.ref-detail__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
    padding: 0 16px;
}
.ref-detail__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 14px;
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: 999px;
}
.ref-detail__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.18;
}
.ref-detail__lead {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 22px;
}
.ref-detail__meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
}
.ref-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.ref-meta-item i { color: var(--primary); font-size: 12px; }

.ref-views {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
    margin: 40px 0;
    padding: 0 16px;
}
.ref-view { width: 100%; max-width: 1100px; }
.ref-view__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 0 6px;
}
.ref-view__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.ref-view__label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}
.ref-view__resolution {
    margin-left: auto;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 600;
}

.ref-view__frame {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(11, 61, 92, 0.18);
    border: 1px solid var(--border);
}
.ref-view__frame--desktop { max-width: 1100px; margin: 0 auto; }
.ref-view__topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(180deg, #F5F7FA 0%, #E5E7EB 100%);
    padding: 11px 18px;
    border-bottom: 1px solid var(--border);
}
.ref-view__dots { display: inline-flex; gap: 6px; }
.ref-view__dots i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #C0C4CC;
}
.ref-view__dots i:nth-child(1) { background: #FF5F57; }
.ref-view__dots i:nth-child(2) { background: #FEBC2E; }
.ref-view__dots i:nth-child(3) { background: #28C840; }
.ref-view__url {
    flex: 1;
    background: #FFFFFF;
    color: var(--text-soft);
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 12px;
    border: 1px solid var(--border);
}
.ref-view__url i { color: var(--primary); font-size: 10px; margin-right: 6px; }
.ref-view__screen { background: var(--bg-soft); }
.ref-view__screen img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ref-view__frame--tablet {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 26px;
    background: #1A1A1A;
    padding: 14px 14px 16px;
    box-shadow: 0 20px 48px rgba(11, 61, 92, 0.22);
}
.ref-view__frame--tablet .ref-view__screen {
    border-radius: 14px;
    overflow: hidden;
}
.ref-view__frame--tablet .ref-view__screen img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.ref-view__frame--mobile {
    max-width: 320px;
    margin: 0 auto;
    border-radius: 36px;
    background: #1A1A1A;
    padding: 14px 12px;
    position: relative;
    box-shadow: 0 24px 50px rgba(11, 61, 92, 0.25);
}
.ref-view__notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 22px;
    background: #1A1A1A;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}
.ref-view__frame--mobile .ref-view__screen {
    border-radius: 26px;
    overflow: hidden;
}
.ref-view__frame--mobile .ref-view__screen img {
    aspect-ratio: 9 / 19;
    object-fit: cover;
}

.ref-detail__info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 50px auto 0;
    max-width: 1100px;
    padding: 0 16px;
}
.ref-info-card {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.ref-info-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}
.ref-info-card__title i { color: var(--primary); font-size: 14px; }
.ref-feature-list,
.ref-tech-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ref-feature-list li,
.ref-tech-list li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-50);
    color: var(--primary-dark);
    border: 1px solid var(--primary-100);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
}
.ref-feature-list li i,
.ref-tech-list li i {
    font-size: 10px;
    color: var(--primary);
}

.ref-detail__cta {
    text-align: center;
    margin: 50px auto 0;
    max-width: 760px;
    padding: 36px 24px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 60%, var(--primary) 100%);
    border-radius: 22px;
    color: #FFFFFF;
    box-shadow: 0 24px 56px rgba(11, 61, 92, 0.25);
}
.ref-detail__cta h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.4px;
}
.ref-detail__cta h2 em {
    font-style: normal;
    background: rgba(255, 255, 255, 0.18);
    padding: 0 9px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.ref-detail__cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.6;
}
.ref-detail__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.ref-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid transparent;
}
.ref-cta-btn--primary {
    background: #FFFFFF;
    color: var(--accent);
}
.ref-cta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    color: var(--primary);
}
.ref-cta-btn--secondary {
    background: var(--primary);
    color: #FFFFFF;
}
.ref-cta-btn--secondary:hover {
    transform: translateY(-2px);
    background: var(--primary-light);
}
.ref-cta-btn--ghost {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.32);
}
.ref-cta-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
}
.ref-cta-btn i { font-size: 11px; }

@media (min-width: 768px) {
    .ref-detail { padding: 56px 0 80px; }
    .ref-detail__title { font-size: 40px; }
    .ref-detail__lead { font-size: 16px; }
    .ref-detail__info { grid-template-columns: repeat(2, 1fr); }
    .ref-detail__cta h2 { font-size: 30px; }
    .ref-detail__cta p { font-size: 15px; }
}

@media (min-width: 1024px) {
    .ref-detail__title { font-size: 46px; }
    .ref-detail__info { grid-template-columns: repeat(3, 1fr); }
    .ref-views { gap: 48px; }
}

