:root {
    --bg: #ffffff;
    --bg-2: #f2f5fa;
    --bg-3: #e8ecf4;
    --ink: #0b1d3a;
    --ink-soft: #455474;
    --ink-muted: #6b7891;
    --accent: #0d9488;
    --accent-hover: #0b7f74;
    --accent-2: #99f6e4;
    --accent-soft: #f0fdfa;
    --border: rgba(11, 29, 58, 0.10);
    --border-strong: rgba(11, 29, 58, 0.20);
    --radius: 6px;
    --radius-lg: 12px;
    --radius-xl: 18px;
    --max: 1180px;
    --transition: 200ms ease;
    --transition-slow: 320ms cubic-bezier(0.22, 1, 0.36, 1);
    --tap-min: 48px;
    --mobile-bar-h: 72px;
    --shadow-xs: 0 1px 0 rgba(11, 29, 58, 0.06);
    --shadow-sm: 0 1px 2px rgba(11, 29, 58, 0.05), 0 12px 32px rgba(11, 29, 58, 0.07);
    --shadow-md: 0 4px 14px rgba(11, 29, 58, 0.08), 0 22px 48px rgba(11, 29, 58, 0.09);
    --shadow-lg: 0 12px 28px rgba(11, 29, 58, 0.10), 0 32px 64px rgba(11, 29, 58, 0.12);
    --ring: 0 0 0 3px rgba(13, 148, 136, 0.30);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(13, 148, 136, 0.14);
}

::selection {
    background: rgba(13, 148, 136, 0.16);
    color: var(--ink);
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

:focus:not(:focus-visible) {
    outline: none;
}

button:focus-visible,
.btn:focus-visible,
.nav-cta:focus-visible,
.mobile-menu-btn:focus-visible,
.faq-question:focus-visible {
    outline-offset: 2px;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 3rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.02em; }

p { color: var(--ink-soft); }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
}

@media (min-width: 768px) {
    .container { padding: 0 24px; }
}

/* ------- Top bar (Güncel Servis) ------- */
.top-bar {
    background: linear-gradient(90deg, #0b1d3a 0%, #132a4d 100%);
    color: #c5d0e3;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    flex-wrap: wrap;
}
.top-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.95;
}
.top-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.top-bar-tel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}
.top-bar-tel:hover {
    opacity: 1;
    color: #fff;
}

@media (max-width: 768px) {
    .top-bar { font-size: 0.8125rem; }
    .top-bar-content { padding: 8px 0; gap: 12px; }
    .top-bar-hide-sm { display: none !important; }
    .top-info {
        flex: 1;
        min-width: 0;
        gap: 0;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .top-bar-tel { font-weight: 700; font-size: 0.875rem; gap: 7px; }
}

/* ------- Header / Nav ------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: saturate(1.45) blur(14px);
    -webkit-backdrop-filter: saturate(1.45) blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    padding-top: env(safe-area-inset-top);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 14px 0;
    gap: 12px 16px;
    position: relative;
}

.brand-link { display: inline-flex; align-items: center; }
.brand-logo { height: 68px; width: auto; }

@media (max-width: 640px) {
    .brand-logo { height: 52px; }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    margin-left: auto;
}

.nav-links a {
    display: inline-block;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    border-radius: var(--radius-lg);
    position: relative;
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
    background: rgba(13, 148, 136, 0.08);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 2px;
    height: 2px;
    background: var(--accent);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    min-height: 44px;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background var(--transition), color var(--transition);
    touch-action: manipulation;
}

.nav-cta:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}
.nav-cta:active {
    transform: translateY(1px);
}

.mobile-menu-btn {
    display: none;
    width: var(--tap-min);
    height: var(--tap-min);
    align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--ink);
    font-size: 1.45rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    flex-shrink: 0;
    margin-left: auto;
    touch-action: manipulation;
}

@media (min-width: 641px) {
    .nav {
        flex-wrap: nowrap;
        padding: 18px 0;
        gap: 24px;
    }
    .mobile-menu-btn { margin-left: 0; }
}

/* ------- Buttons ------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    min-height: var(--tap-min);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all var(--transition);
    line-height: 1;
    touch-action: manipulation;
}

.btn-primary {
    background: linear-gradient(165deg, #14b8a6 0%, var(--accent) 45%, #0b7f74 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.38), var(--shadow-xs);
}
.btn-primary:hover {
    background: linear-gradient(165deg, #2dd4bf 0%, var(--accent-hover) 50%, #065f46 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45), var(--shadow-xs);
}
.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.30);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-outline:hover {
    background: var(--ink);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid transparent;
}
.btn-ghost:hover {
    color: var(--accent);
    border-color: rgba(11, 29, 58, 0.12);
    background: rgba(11, 29, 58, 0.03);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 2px;
    transition: gap var(--transition), color var(--transition), border-color var(--transition);
}
.arrow-link:hover { gap: 12px; color: var(--accent); border-color: var(--accent); }

/* ------- Hero (asymmetric) ------- */
.hero {
    position: relative;
    padding: clamp(48px, 8vw, 110px) 0 clamp(64px, 9vw, 130px);
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(ellipse 120% 80% at 85% 15%, rgba(13, 148, 136, 0.09) 0%, transparent 52%),
        radial-gradient(ellipse 90% 60% at 10% 90%, rgba(11, 29, 58, 0.05) 0%, transparent 48%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 44%, var(--bg) 100%);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -12deg,
        transparent,
        transparent 56px,
        rgba(11, 29, 58, 0.018) 56px,
        rgba(11, 29, 58, 0.018) 57px
    );
    pointer-events: none;
    opacity: 0.65;
}
.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero-eyebrow::before {
    content: "";
    width: 28px; height: 2px;
    background: var(--accent);
    display: inline-block;
}

.hero h1 {
    margin-bottom: 28px;
}
.hero h1 .accent { color: var(--accent); }

.hero p {
    font-size: 1.125rem;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 36px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    color: var(--ink-soft);
    font-size: 0.92rem;
}
.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-meta i { color: var(--accent); font-size: 1.1rem; }

.hero-visual {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--bg-2);
    box-shadow: var(--shadow-md);
}
.hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(11,29,58,0.55));
}
.hero-visual-label {
    position: absolute;
    left: 16px; bottom: 16px; right: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-lg);
    background: rgba(11, 29, 58, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-visual-label::before {
    content: "";
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.6s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ------- Metric strip ------- */
.metric-strip {
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.metric-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}
.metric {
    padding: 36px 24px;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.metric:first-child { border-left: 0; padding-left: 0; }
.metric-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}
.metric-num .unit { color: var(--accent); margin-left: 2px; }
.metric-label {
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 500;
}

/* ------- Section base ------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-bg {
    background: linear-gradient(180deg, var(--bg-2) 0%, rgba(242, 245, 250, 0.65) 50%, var(--bg-2) 100%);
}

.section-head {
    max-width: 720px;
    margin-bottom: 56px;
}
.section-eyebrow {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}
.section-head h2 { margin-bottom: 18px; }
.section-head p { font-size: 1.08rem; max-width: 580px; }

/* Hakkımızda: üç temel ilke — sıkı dikey ritim (çift sınıf: .section override’larını aşar) */
.section.section-values-tight {
    padding: clamp(36px, 4.5vw, 56px) 0;
}
.section.section-values-tight .section-head {
    margin-bottom: 20px;
}
.section.section-values-tight .section-eyebrow {
    margin-bottom: 6px;
}
.section.section-values-tight .section-head h2 {
    margin-bottom: 0;
}

/* ------- Homepage: daha sıkı dikey ritim (yalnızca index) ------- */
body.page-home .hero {
    padding: clamp(28px, 5vw, 64px) 0 clamp(36px, 6vw, 80px);
}
body.page-home .hero-grid { gap: 40px; }
body.page-home .hero-eyebrow { margin-bottom: 20px; }
body.page-home .hero h1 { margin-bottom: 20px; }
body.page-home .hero p { margin-bottom: 28px; }
body.page-home .hero-actions { margin-bottom: 28px; }
body.page-home .section { padding: clamp(36px, 6vw, 72px) 0; }
body.page-home .section-head { margin-bottom: 28px; }
body.page-home .metric { padding: 22px 18px; }
body.page-home .metric-num { font-size: 2.1rem; }

/* ------- Services showcase (fotoğraf öncelikli vitrin) ------- */
.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-spotlight {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    align-items: stretch;
    background: var(--bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.service-spotlight:hover { box-shadow: var(--shadow-md); }
.service-spotlight-media {
    position: relative;
    min-height: 240px;
}
.service-spotlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px;
    display: block;
}
.service-spotlight-body {
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.service-spotlight-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}
.service-spotlight-body h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.55rem);
    margin-bottom: 0;
}
.service-spotlight-body p {
    font-size: 0.98rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
}
.services-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.service-compact {
    background: var(--bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-compact:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.service-compact-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-2);
}
.service-compact-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-compact-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.service-compact-body h3 {
    font-size: 1.12rem;
    margin-bottom: 0;
}
.service-compact-body p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.55;
    flex: 1;
    margin: 0;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--accent);
    margin-top: auto;
    transition: gap var(--transition), color var(--transition);
}
.service-card-link:hover {
    gap: 12px;
    color: var(--ink);
}

/* ------- Müşteri yorumları (anasayfa: tek sıra slider) ------- */
.testimonials-carousel {
    max-width: 920px;
    margin: 0 auto;
}
.testimonials-carousel-shell {
    display: flex;
    align-items: center;
    gap: 4px 10px;
}
.tc-stage {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
}
.tc-track {
    display: flex;
    width: 600%;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.tc-track .testimonial-card {
    flex: 0 0 calc(100% / 6);
    width: calc(100% / 6);
    max-width: calc(100% / 6);
    box-sizing: border-box;
    padding-left: 8px;
    padding-right: 8px;
}
.tc-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.35rem;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.tc-nav:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
}
.tc-nav:active {
    transform: scale(0.96);
}
.tc-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.tc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    border: 2px solid var(--border-strong);
    background: transparent;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.tc-dot[aria-selected="true"] {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.15);
}
.tc-dot:hover {
    border-color: var(--accent);
}
@media (prefers-reduced-motion: reduce) {
    .tc-track {
        transition: none;
    }
}
@media (max-width: 640px) {
    .tc-nav {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    .testimonials-carousel-shell {
        gap: 4px;
    }
    .tc-track .testimonial-card {
        padding-left: 4px;
        padding-right: 4px;
    }
}
.testimonial-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.testimonial-card .testimonial-q {
    font-size: 1.05rem;
    color: #fff;
    background: var(--accent);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.testimonial-card .stars {
    color: #fbbf24;
    margin-bottom: 6px;
    font-size: 0.82rem;
}
.testimonial-card p {
    color: var(--ink-soft);
    margin-bottom: 12px;
    font-style: italic;
    font-size: 0.88rem;
    line-height: 1.5;
}
.testimonial-card .user-details h4 {
    font-size: 0.92rem;
    margin-bottom: 2px;
    color: var(--ink);
}
.testimonial-card .user-details span {
    font-size: 0.78rem;
    color: var(--ink-muted);
    font-weight: 600;
}

/* ------- Service rows (line list) ------- */
.rows {
    border-top: 1px solid var(--border-strong);
}
.row-item {
    display: grid;
    grid-template-columns: 80px 1fr 220px 160px;
    gap: 32px;
    align-items: center;
    padding: 32px 16px;
    margin: 0 -16px;
    border-radius: var(--radius-lg);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition-slow), box-shadow var(--transition);
    position: relative;
}
.row-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 22%;
    width: 3px;
    border-radius: 2px;
    background: var(--accent);
    opacity: 0;
    transform: scaleY(0.6);
    transition: opacity var(--transition), transform var(--transition-slow);
}
.row-item:hover {
    background: rgba(242, 245, 250, 0.85);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.row-item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}
.row-num {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
}
.row-body h3 { margin-bottom: 8px; }
.row-body p {
    font-size: 0.98rem;
    color: var(--ink-soft);
    max-width: 520px;
}
.row-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.95rem;
    transition: gap var(--transition), color var(--transition);
}
.row-link:hover { color: var(--accent); gap: 12px; }
.row-thumb {
    width: 160px; height: 120px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-2);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}
.row-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ------- Two column / split ------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split.reverse > .text-col { order: 2; }
.split-media {
    aspect-ratio: 5 / 4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-2);
    box-shadow: var(--shadow-sm);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-eyebrow {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.split h2 { margin-bottom: 20px; }
.split p { margin-bottom: 16px; font-size: 1.02rem; line-height: 1.75; }

.feature-list { list-style: none; padding: 0; margin: 24px 0; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.98rem;
}
.feature-list li:last-child { border-bottom: 1px solid var(--border); }
.feature-list li i {
    color: var(--accent);
    font-size: 1.05rem;
    margin-top: 2px;
}

/* ------- Quote (single quote, no rotator MVP) ------- */
.quote-wrap {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(36px, 6vw, 64px) clamp(28px, 5vw, 52px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: linear-gradient(165deg, #ffffff 0%, var(--bg-2) 100%);
    box-shadow: var(--shadow-sm);
}
.quote-mark {
    display: inline-block;
    font-size: 4rem;
    line-height: 1;
    color: var(--accent);
    font-family: 'Manrope', serif;
    margin-bottom: 18px;
}
.quote-text {
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    line-height: 1.45;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}
.quote-meta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.95rem;
}
.quote-meta::before {
    content: "";
    width: 36px; height: 1px;
    background: var(--ink-soft);
    display: inline-block;
}

/* ------- Process (4-step strip) ------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--bg);
}
.process-step {
    padding: 32px 28px;
    border-right: 1px solid var(--border);
    transition: background var(--transition);
}
.process-step:hover {
    background: rgba(242, 245, 250, 0.65);
}
.process-step:last-child { border-right: 0; }
.process-num {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.16em;
    margin-bottom: 14px;
}
.process-step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.process-step p { font-size: 0.95rem; line-height: 1.65; }

/* ------- FAQ ------- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    color: var(--ink);
    font-size: 1.02rem;
    transition: color var(--transition), background var(--transition);
    border-radius: var(--radius-lg);
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
}
.faq-question:hover { color: var(--accent); background: rgba(242, 245, 250, 0.65); }
.faq-item.active .faq-question {
    color: var(--accent);
}
.faq-question::after {
    content: "+";
    font-size: 1.6rem;
    color: var(--accent);
    transition: transform var(--transition);
    line-height: 1;
}
.faq-item.active .faq-question::after { content: "−"; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding var(--transition);
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 320px;
    padding: 0 0 22px;
}

/* ------- CTA banner ------- */
.cta-banner {
    position: relative;
    background: linear-gradient(125deg, #0d2649 0%, var(--ink) 42%, #152a4d 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(40px, 6vw, 64px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.cta-banner::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -8%;
    width: min(52%, 380px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(13, 148, 136, 0.38) 0%, transparent 68%);
    pointer-events: none;
}
.cta-banner > * {
    position: relative;
    z-index: 1;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: #c5d0e3; max-width: 480px; }
.cta-banner .btn-primary {
    background: linear-gradient(165deg, #14b8a6 0%, var(--accent) 55%, #065f46 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.cta-banner .btn-primary:hover {
    background: linear-gradient(165deg, #2dd4bf 0%, #0d9488 50%, #065f46 100%);
}

/* ------- Footer ------- */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #0a1830 0%, var(--ink) 28%, #071426 100%);
    color: #d6deec;
    padding: 76px 0 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #14b8a6 45%, var(--accent));
    opacity: 0.95;
}
.footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(4, minmax(0, 1fr));
    gap: 48px 36px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.footer-brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #fff !important;
    margin-bottom: 22px;
    transition: opacity 0.2s ease;
}
.footer-brand-link:hover {
    color: #fff !important;
    opacity: 0.92;
}
.footer-brand-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}
.footer-brand-text {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1;
}
.footer-brand-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--accent-2);
    opacity: 0.9;
}
.footer-brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}
.footer-brand-name strong {
    color: var(--accent-2);
    font-weight: 800;
}
@media (max-width: 640px) {
    .footer-brand-icon { width: 54px; height: 54px; border-radius: 12px; }
    .footer-brand-name { font-size: 1.4rem; }
    .footer-brand-eyebrow { font-size: 0.66rem; }
}
.footer-about {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 40ch;
    color: #ffffff;
    opacity: 0.96;
    margin-top: 6px;
    font-weight: 500;
}
.footer-col h4 {
    color: #fff;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    font-weight: 800;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #d6deec;
    line-height: 1.55;
}
.footer-col li i { color: var(--accent-2); margin-right: 0; flex-shrink: 0; margin-top: 3px; font-size: 0.95rem; }
.footer-col a {
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}
.footer-col a:hover { color: var(--accent-2); transform: translateX(3px); }

.footer-bottom {
    padding: 26px 0 28px;
    text-align: center;
    border-top: 4px solid var(--accent);
    background: linear-gradient(90deg, rgba(13, 148, 136, 0.10) 0%, transparent 38%);
}
.footer-bottom-legal {
    max-width: 960px;
    margin: 0 auto;
    font-size: 0.82rem;
    line-height: 1.6;
    color: #ced8eb;
    opacity: 1;
}
.footer-bottom-legal strong {
    color: #ffffff;
}

/* ------- Sticky arama (masaüstü · mobilde alt bar ile çakışmasın) ------- */
.sticky-call {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 99;
    display: none;
    justify-content: center;
    pointer-events: none;
}
.sticky-call-btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(165deg, #14b8a6 0%, var(--accent) 55%, #065f46 100%);
    color: #fff !important;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 14px 34px rgba(13, 148, 136, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: filter 0.2s ease;
}
.sticky-call-btn:hover {
    filter: brightness(1.06);
    color: #fff !important;
}
@media (min-width: 641px) {
    .sticky-call { display: flex; }
}

/* ------- Mobile bottom-bar ------- */
.mobile-bar {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(10, 24, 48, 0.98) 0%, var(--ink) 100%);
    color: #fff;
    z-index: 90;
    border-top: 4px solid var(--accent);
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -12px 40px rgba(11, 29, 58, 0.28);
}
.mobile-bar .container {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
}
.mobile-bar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    text-align: center;
    min-height: var(--mobile-bar-h);
}
.mobile-bar a {
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    min-height: var(--tap-min);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius);
    touch-action: manipulation;
}
.mobile-bar a i { font-size: 1.4rem; }
.mobile-bar .primary {
    background: linear-gradient(165deg, #14b8a6 0%, var(--accent) 55%, #065f46 100%);
    border-radius: var(--radius-lg);
    margin: 0;
    padding: 14px 18px;
    min-height: 58px;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.50);
}
.mobile-bar .primary span { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.02em; }

/* ------- Sub-page header (for inner pages) ------- */
.sub-header {
    position: relative;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, transparent 42%),
        linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
    overflow: hidden;
}
.sub-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(13, 148, 136, 0.38) 100%);
    border-radius: 0 4px 4px 0;
}
.sub-header .container {
    position: relative;
    z-index: 1;
}
.sub-header-eyebrow {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.sub-header h1 {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    margin-bottom: 18px;
}
.sub-header p {
    font-size: 1.08rem;
    color: var(--ink-soft);
    max-width: 640px;
}
.breadcrumb {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 28px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--ink-muted); }

/* ------- Values (about · üç temel ilke) ------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.value-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 20px 18px 22px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition-slow);
    box-shadow: var(--shadow-xs);
}
.value-card:hover {
    border-color: rgba(13, 148, 136, 0.50);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.value-icon {
    width: 38px; height: 38px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.08rem;
    margin-bottom: 10px;
}
.value-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.value-card p { font-size: 0.9rem; line-height: 1.52; }

/* ------- Editorial column (about) ------- */
.editorial {
    max-width: 760px;
    margin: 0 auto;
}
.editorial p {
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 22px;
    color: var(--ink-soft);
}
.editorial h3 {
    margin: 36px 0 14px;
    font-size: 1.4rem;
    color: var(--ink);
}
.editorial .dropcap::first-letter {
    float: left;
    font-size: 4.4rem;
    line-height: 0.9;
    font-weight: 800;
    color: var(--accent);
    margin: 6px 12px 0 0;
    letter-spacing: -0.04em;
}

/* ------- Contact ------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: start;
}
.contact-form {
    background: linear-gradient(165deg, #ffffff 0%, var(--bg-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 18px; font-size: 1.25rem; }
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.field label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.field input,
.field textarea {
    border: 1px solid var(--border-strong);
    background: #fff;
    border-radius: var(--radius);
    padding: 12px 14px;
    font: inherit;
    color: var(--ink);
    transition: border-color var(--transition);
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: var(--ring);
}
.field input:focus-visible,
.field textarea:focus-visible {
    box-shadow: var(--ring);
}
.field textarea { resize: vertical; min-height: 120px; }

.contact-info-list { list-style: none; padding: 0; }
.contact-info-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-list li:first-child { padding-top: 0; }
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-icon {
    width: 44px; height: 44px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.contact-info-list strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-muted);
    margin-bottom: 4px;
    font-weight: 700;
}
.contact-info-list .info-value {
    font-weight: 700;
    color: var(--ink);
    font-size: 1.02rem;
}
.contact-info-list a.info-value:hover { color: var(--accent); }

.map-frame {
    margin-top: 24px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16 / 9;
    background: var(--bg-2);
    box-shadow: var(--shadow-sm);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ------- Legal pages ------- */
.legal-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding-bottom: 8px;
}
.legal-wrap p {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 18px;
    color: var(--ink-soft);
}
.legal-wrap h3 {
    color: var(--ink);
    font-size: 1.2rem;
    margin: 32px 0 12px;
}
.legal-wrap ul { padding-left: 22px; margin-bottom: 18px; color: var(--ink-soft); }
.legal-wrap li { margin-bottom: 6px; line-height: 1.7; }
.legal-wrap a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* ------- Service detail page ------- */
.detail-block {
    padding: clamp(48px, 7vw, 88px) 0;
    border-bottom: 1px solid var(--border);
}
.detail-block:last-child { border-bottom: 0; }

/* ------- Reveal anim ------- */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ------- Responsive ------- */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { aspect-ratio: 16 / 11; max-width: 520px; }
    .metric-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .metric { border-left: 1px solid var(--border); }
    .metric:nth-child(odd) { border-left: 0; padding-left: 0; }
    .row-item { grid-template-columns: 56px 1fr 140px; gap: 20px; }
    .row-item .row-link { display: none; }
    .split { grid-template-columns: 1fr; gap: 36px; }
    .split.reverse > .text-col { order: unset; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .process-step:nth-child(2n) { border-right: 0; }
    .process-step:nth-last-child(-n+2) { border-bottom: 0; }
    .service-spotlight { grid-template-columns: 1fr; }
    .services-trio { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
    .footer-top > div:first-child { grid-column: 1 / -1; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-banner { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 640px) {
    .nav-links,
    .nav-cta { display: none; }

    .mobile-menu-btn { display: inline-flex; }

    /* Menü: akış içinde tam genişlik; sabit piksel offset yok */
    .site-header.nav-open .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: 3;
        margin: 8px 0 0;
        margin-left: 0;
        padding: 16px 0 8px;
        border-top: 1px solid var(--border);
        gap: 2px;
        position: static;
        background: #fff;
        box-shadow: none;
    }
    .site-header.nav-open .nav-links li { width: 100%; }
    .site-header.nav-open .nav-links a {
        display: flex;
        align-items: center;
        min-height: var(--tap-min);
        padding: 12px 14px;
        font-size: 1.05rem;
        border-radius: var(--radius-lg);
    }
    .site-header.nav-open .nav-links a:active {
        background: var(--bg-2);
    }
    .site-header.nav-open .nav-cta {
        display: inline-flex;
        order: 4;
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
        padding: 14px 18px;
        min-height: 52px;
        font-size: 1rem;
        position: static;
    }

    .brand-link { order: 1; flex-shrink: 0; }
    .mobile-menu-btn { order: 2; }

    body {
        padding-bottom: calc(var(--mobile-bar-h) + 28px + env(safe-area-inset-bottom, 0px));
    }
    .mobile-bar { display: block; }

    .hero {
        padding-top: 36px;
        padding-bottom: 44px;
    }
    .hero-eyebrow {
        font-size: 0.78rem;
        letter-spacing: 0.1em;
        margin-bottom: 18px;
    }
    .hero p {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-meta {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .hero-visual {
        max-width: none;
        aspect-ratio: 4 / 3;
    }
    .hero-visual-label {
        font-size: 0.88rem;
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .metric-num { font-size: 2rem; }
    .metric { padding: 24px 16px; }

    .section { padding: 48px 0; }
    body.page-home .section { padding: 40px 0; }
    .section.section-values-tight { padding: 32px 0; }
    .section-head { margin-bottom: 36px; }
    .section.section-values-tight .section-head { margin-bottom: 18px; }

    .row-item {
        grid-template-columns: 56px 1fr;
        gap: 14px 16px;
        margin: 0;
        padding: 22px 12px;
        align-items: flex-start;
        min-height: 72px;
        border-radius: var(--radius-lg);
    }
    .row-item:hover {
        background: rgba(242, 245, 250, 0.65);
        box-shadow: none;
    }
    .row-item::before {
        display: none;
    }
    .row-item:active {
        background: rgba(242, 245, 250, 0.95);
    }
    .row-num { font-size: 0.85rem; line-height: 1.3; }
    .row-body h3 { font-size: 1.12rem; }
    .row-body p { font-size: 0.95rem; line-height: 1.55; }
    .row-thumb { display: none; }

    .process-grid { grid-template-columns: 1fr; }
    .process-step {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding: 24px 20px;
    }
    .process-step:last-child { border-bottom: 0; }

    .quote-mark { font-size: 2.75rem; margin-bottom: 12px; }
    .quote-text {
        font-size: 1.15rem;
        line-height: 1.5;
        margin-bottom: 22px;
    }
    .quote-meta {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .quote-meta::before { display: none; }

    .faq-question {
        margin: 0;
        padding: 18px 0;
        min-height: var(--tap-min);
        font-size: 0.98rem;
        line-height: 1.35;
        align-items: flex-start;
        border-radius: var(--radius);
    }
    .faq-item.active .faq-answer {
        max-height: 560px;
        padding: 0 0 18px;
    }
    .faq-answer p { margin: 0; }

    .cta-banner {
        padding: 28px 22px;
        text-align: center;
    }
    .cta-banner .btn-primary {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }

    .sub-header {
        padding: 40px 0 36px;
    }
    .sub-header h1 { font-size: clamp(1.75rem, 7.5vw, 2.4rem); }
    .sub-header p { font-size: 1rem; }

    .contact-form { padding: 24px 18px; }
    .field input,
    .field textarea {
        font-size: 16px;
        padding: 14px 14px;
        min-height: var(--tap-min);
    }
    .field textarea { min-height: 140px; }

    .map-frame {
        aspect-ratio: 4 / 3;
        min-height: 220px;
    }

    .footer-col a {
        display: inline-flex;
        align-items: center;
        min-height: 40px;
        padding: 4px 0;
    }

    .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
    .footer-top > div:first-child { grid-column: auto; }
    .footer-about { max-width: none; font-size: 0.98rem; }
    .footer-brand-link { gap: 14px; margin-bottom: 18px; }
    .footer-bottom {
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        text-align: left;
    }
    .footer-bottom-legal {
        font-size: 0.76rem;
        text-align: center;
    }

    h1 { font-size: clamp(1.85rem, 8.5vw, 2.65rem); line-height: 1.08; }
    h2 { font-size: clamp(1.45rem, 5.5vw, 1.95rem); }

    .editorial p { font-size: 1.02rem; line-height: 1.75; }
    .editorial .dropcap::first-letter {
        font-size: 3.1rem;
        margin: 4px 10px 0 0;
    }

    .legal-wrap a { word-break: break-word; }

    .detail-block { padding: 40px 0; }

    .value-card { padding: 18px 16px 20px; }
}

@media (max-width: 420px) {
    .metric-strip-grid {
        grid-template-columns: 1fr;
    }
    .metric {
        border-left: 0;
        border-bottom: 1px solid var(--border);
        padding: 20px 0;
    }
    .metric:first-child { padding-top: 0; }
    .metric:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .reveal.active { opacity: 1; transform: none; }
    .hero-visual-label::before { animation: none; }
    .value-card:hover {
        transform: none;
    }
    .row-item::before,
    .row-item:hover::before {
        opacity: 0;
        transition: none;
    }
    .btn-primary:active,
    .nav-cta:active {
        transform: none;
    }
}

/* ====================================================================
   DESIGN POLISH - 2026 refresh (Güncel Servis)
   Modern micro-interactions, refined surfaces, premium spacing.
   ==================================================================== */

/* --- Accent badge utility for storytelling chips (used in legal/about pages) --- */
.story-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-hover);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(13, 148, 136, 0.18);
}
.story-chip i { font-size: 0.85rem; }

/* --- Hero accent: gradient text on h1 .accent span --- */
.hero h1 .accent {
    background: linear-gradient(135deg, #14b8a6 0%, var(--accent) 45%, #0b7f74 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* --- Hero eyebrow refined --- */
.hero-eyebrow {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.10), rgba(13, 148, 136, 0.04));
    border: 1px solid rgba(13, 148, 136, 0.22);
    color: var(--accent-hover);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* --- Modernised primary button: subtle scale + crisper shadow --- */
.btn-primary {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.20) inset,
        0 6px 16px rgba(13, 148, 136, 0.32),
        0 1px 2px rgba(11, 29, 58, 0.08);
    letter-spacing: -0.005em;
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.22) inset,
        0 10px 24px rgba(13, 148, 136, 0.42),
        0 1px 2px rgba(11, 29, 58, 0.08);
}
.btn-primary:active {
    transform: translateY(0);
}

/* --- Nav CTA polish: pill-ish on desktop, ring on focus --- */
.nav-cta {
    border-radius: 999px;
    padding: 11px 20px;
}
.nav-cta:focus-visible {
    box-shadow: var(--ring);
}

/* --- Card surfaces: smoother elevation --- */
.service-spotlight,
.service-compact,
.value-card,
.process-step,
.faq-item,
.testimonial-card,
.contact-form,
.cta-banner {
    transition:
        transform var(--transition-slow),
        box-shadow var(--transition-slow),
        border-color var(--transition);
}
.service-spotlight:hover,
.service-compact:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.25);
}
.value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(13, 148, 136, 0.22);
}

/* --- Service card link arrow flourish --- */
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-hover);
    font-weight: 700;
    transition: gap var(--transition), color var(--transition);
}
.service-card-link:hover {
    gap: 10px;
    color: var(--accent);
}

/* --- Section eyebrow: tighter, more modern --- */
.section-eyebrow,
.split-eyebrow,
.service-spotlight-eyebrow,
.sub-header-eyebrow {
    color: var(--accent-hover);
}

/* --- Metric strip: lift numbers slightly --- */
.metric-num {
    background: linear-gradient(180deg, var(--ink) 0%, #1f3a6b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.metric .unit {
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
}

/* --- Form fields: clearer focus --- */
.field input:focus,
.field textarea:focus {
    border-color: var(--accent);
    box-shadow: var(--ring);
    outline: none;
}

/* --- FAQ items: cleaner active state --- */
.faq-item.active {
    border-color: rgba(13, 148, 136, 0.30);
    background: linear-gradient(180deg, var(--accent-soft) 0%, transparent 100%);
}

/* --- Footer brand icon: hover micro-rotate --- */
.footer-brand-icon {
    transition: transform var(--transition-slow);
}
.footer-brand-link:hover .footer-brand-icon {
    transform: rotate(-6deg) scale(1.04);
}

/* --- Sticky call button: more presence --- */
.sticky-call-btn {
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.42);
}

/* --- Section background subtle tint refresh --- */
.section-bg {
    background: linear-gradient(180deg, var(--bg-2) 0%, #eef4fb 100%);
}

@media (prefers-reduced-motion: reduce) {
    .btn-primary:hover,
    .service-spotlight:hover,
    .service-compact:hover,
    .value-card:hover,
    .footer-brand-link:hover .footer-brand-icon {
        transform: none;
    }
}

/* --- Section lead: intro paragraph under section heading --- */
.section-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 720px;
    margin-top: 8px;
}

/* --- Company / corporate fact-sheet card (Hakkımızda > Şirket künyesi) --- */
.company-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 4vw, 44px);
    box-shadow: var(--shadow-sm);
}
.company-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 36px;
    margin: 0;
}
.company-facts > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--border);
}
.company-facts > div:last-child,
.company-facts > div:nth-last-child(2):not(.company-facts-wide) {
    border-bottom: none;
    padding-bottom: 0;
}
.company-facts > div.company-facts-wide {
    grid-column: 1 / -1;
}
.company-facts dt {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--ink-muted);
}
.company-facts dd {
    margin: 0;
    font-size: 1rem;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.55;
}
.company-facts dd a {
    color: var(--accent-hover);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}
.company-facts dd a:hover { border-bottom-color: var(--accent); color: var(--accent); }
@media (max-width: 720px) {
    .company-facts {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .company-facts > div:nth-last-child(2):not(.company-facts-wide) {
        border-bottom: 1px dashed var(--border);
        padding-bottom: 16px;
    }
}

/* --- Hizmet karti garanti uyari bandi (yetkili servise yonlendirme) --- */
.garanti-uyari {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0 22px;
    padding: 12px 14px;
    background: var(--accent-soft);
    border: 1px solid rgba(13, 148, 136, 0.18);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--ink-soft);
    font-style: italic;
}
.garanti-uyari i {
    color: var(--accent-hover);
    font-size: 1rem;
    margin-top: 2px;
    font-style: normal;
    flex-shrink: 0;
}

/* --- Footer sosyal medya ikon placeholder (yakinda) --- */
.footer-social {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 1rem;
    text-decoration: none;
    cursor: default;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.footer-social a:hover {
    background: rgba(13, 148, 136, 0.18);
    border-color: rgba(13, 148, 136, 0.40);
    color: var(--accent-2) !important;
    transform: translateY(-1px);
}
.footer-social a[aria-disabled="true"] {
    pointer-events: auto;
}
