/**
 * Trendsafe — Dinamik, canlı, gösterişli
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --primary-light: #e0f2fe;
    --accent: #0ea5e9;
    --bg: #f5f6f8;
    --bg-alt: #ebedf0;
    --surface: #ffffff;
    --text: #374151;
    --text-bold: #111111;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 2.5rem;
    --space-6: 3rem;
    --container: min(1200px, 98vw);
    --radius: 9px;
    --radius-btn: 9999px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-btn: 0 6px 20px rgba(2, 132, 199, 0.35);
    --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-navy: #0c4a6e;
    --header-coral: #e11d48;
}

*, *::before, *::after { box-sizing: border-box; }
/* %100 zoom'da %75 zoom görünümü: tüm arayüz 0.75 ölçekte */
html { font-size: 75%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

/* Bold başlıklar siyah — site mavi ağırlığını azaltmak için */
h1, h2, h3, h4, h5, h6, strong, b,
.section-title, .page-heading,
.section-header-center .section-title, .section-header-center .page-heading,
.quick-access-title, .quick-title,
.why-us-title, .why-us-card-title,
.how-it-works-title, .trust-badge-card-title,
.campaign-card-title, .box-title,
.footer-heading, .newsletter-title,
.about-hero-title, .about-card-title, .about-value-card-title,
.about-journey-title, .about-timeline-year, .about-timeline-title,
.about-team-name, .about-faq-soru, .about-partners-title,
.subheading,
.product-title, .contact-form-title {
    color: var(--text-bold);
}

.skip-link {
    position: absolute;
    top: -4rem;
    left: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    z-index: 100;
    border-radius: var(--radius);
    transition: top var(--ease);
    box-shadow: var(--shadow-btn);
}
.skip-link:focus { top: var(--space-2); outline: 3px solid var(--accent); outline-offset: 2px; }

.main-content { min-height: 70vh; }

/* ========== BUTONLAR — gölgeli, hover kalkma ========== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 3px solid var(--primary);
}
.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    background: var(--primary-light);
    color: var(--primary-dark);
}

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }

.btn-ghost {
    background: transparent;
    color: var(--text);
}
.btn-ghost:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========== HEADER — üst çizgi, logo+rozet, menü, ikon butonlar ========== */
.site-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: none;
    transition: box-shadow var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 2px 8px rgba(12, 74, 110, 0.06); }
.header-top-bar {
    height: 3px;
    background: var(--header-navy);
    width: 100%;
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-2) var(--space-3);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.site-logo { margin: 0; line-height: 1; }
.site-logo-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: opacity var(--ease);
}
.site-logo-link:hover { opacity: 0.95; }
.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-mark img,
.logo-mark svg {
    display: block;
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: saturate(1.08) hue-rotate(-8deg);
}
/* Yazı: büyük harf + animasyonlu gradient */
.logo-word {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.1;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-dark), var(--primary));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-gradient 4s ease infinite;
}
.site-logo-link:hover .logo-word { animation-duration: 2.5s; }
@keyframes text-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-3);
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
}
.nav-links a {
    padding: 0.7rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--header-navy);
    text-decoration: none;
    border-radius: var(--radius);
    transition: color var(--ease);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-links a:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.nav-link-teklif {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
    transition: transform var(--ease), box-shadow var(--ease), opacity var(--ease);
}
.nav-link-teklif:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.45);
}
.nav-link-teklif.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--header-navy) 100%);
    box-shadow: 0 2px 10px rgba(2, 132, 199, 0.4);
}
.nav-teklif-icon { display: inline-flex; color: #fff; }
.nav-link-teklif:hover .nav-teklif-icon,
.nav-link-teklif.active .nav-teklif-icon { color: #fff; }
.nav-teklif-text { white-space: nowrap; color: #fff; }
.nav-link-teklif:hover .nav-teklif-text,
.nav-link-teklif.active .nav-teklif-text { color: #fff; }

@media (max-width: 767px) {
    .header-inner { padding: var(--space-2) var(--space-3); flex-direction: column; align-items: stretch; }
    .section-block { padding-left: var(--space-3); padding-right: var(--space-3); }
    .site-logo-link { justify-content: center; }
    .main-nav { flex-direction: column; border-top: 1px solid var(--border); padding-top: var(--space-2); width: 100%; }
    .nav-links { justify-content: center; }
    .nav-links a { padding: var(--space-2); }
}

/* ========== HERO BANNER — animasyonlu şerit ========== */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-4) var(--space-3);
}
.hero-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0c4a6e 0%, #0369a1 25%, #0284c7 50%, #0ea5e9 75%, #38bdf8 100%);
    background-size: 400% 400%;
    animation: banner-gradient 12s ease infinite;
}
.hero-banner-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-banner-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-banner-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: banner-float 18s ease-in-out infinite;
}
.hero-banner-shape-1 { width: 90px; height: 90px; left: 10%; top: 20%; animation-delay: 0s; animation-duration: 14s; }
.hero-banner-shape-2 { width: 60px; height: 60px; right: 15%; top: 30%; animation-delay: -3s; animation-duration: 16s; }
.hero-banner-shape-3 { width: 45px; height: 45px; left: 30%; bottom: 15%; animation-delay: -6s; animation-duration: 12s; }
.hero-banner-shape-4 { width: 75px; height: 75px; right: 25%; bottom: 25%; animation-delay: -9s; animation-duration: 20s; }
.hero-banner-shape-5 { width: 38px; height: 38px; left: 50%; top: 50%; animation-delay: -4s; animation-duration: 15s; }
.hero-banner-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 45%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.12) 55%, transparent 60%);
    animation: banner-shine 6s ease-in-out infinite;
    pointer-events: none;
}
.hero-banner-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: var(--container);
    margin: 0 auto;
    animation: banner-text-in 1s ease-out both;
}
.hero-banner-text {
    margin: 0 0 0.35rem;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
    letter-spacing: 0.02em;
}
.hero-banner-sub {
    margin: 0;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    letter-spacing: 0.03em;
}
@keyframes banner-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes banner-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(15px, -20px) scale(1.1); opacity: 0.8; }
    50% { transform: translate(-10px, 10px) scale(0.95); opacity: 0.5; }
    75% { transform: translate(-20px, -10px) scale(1.05); opacity: 0.7; }
}
@keyframes banner-shine {
    0% { transform: translateX(-30%) rotate(15deg); opacity: 0; }
    45% { opacity: 1; }
    55% { opacity: 1; }
    100% { transform: translateX(30%) rotate(15deg); opacity: 0; }
}
@keyframes banner-text-in {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .hero-banner { min-height: 83px; padding: var(--space-3); }
}

/* ========== BÖLÜMLER — Neden bizi / Hızlı Erişim ile uyumlu ========== */
.section-wrap {
    width: 100%;
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.section-wrap-alt { background: linear-gradient(165deg, #f8f9fa 0%, #eef0f3 40%, #f8f9fa 100%); }

.section-block {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-5) var(--space-3);
}
@media (min-width: 1000px) { .section-block { padding: var(--space-6) var(--space-3); } }
@media (max-width: 639px) { .section-block { padding: var(--space-4) var(--space-3); } }

/* Ortalanmış bölüm başlığı (Hızlı Erişim / Neden bizi gibi) */
.section-header-center {
    text-align: center;
    margin-bottom: var(--space-5);
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}
.section-header-center .section-title,
.section-header-center .page-heading {
    margin: 0 0 var(--space-2);
    font-size: clamp(1.75rem, 3.5vw, 2.1rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.section-header-center .section-subtitle,
.section-header-center .page-intro {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.section-title {
    margin: 0 0 var(--space-2);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}
.section-title-line {
    display: inline-block;
    padding-bottom: var(--space-2);
    border-bottom: 4px solid var(--primary);
    box-shadow: 0 2px 0 var(--accent);
}
.section-subtitle {
    margin: 0 0 var(--space-4);
    font-size: 1.05rem;
    color: var(--text-muted);
}

.page-heading {
    margin: 0 0 var(--space-2);
    font-size: clamp(1.75rem, 3.5vw, 2.1rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.page-intro { margin: 0; font-size: 1.15rem; color: var(--text-muted); line-height: 1.5; }
.page-header-center {
    text-align: center;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-5);
}
.page-header-center .page-heading { margin-bottom: var(--space-2); }
.page-header-center .page-intro { margin: 0; }

/* ========== ANA SAYFA SLIDER — görselli, hareketli arka plan ========== */
.home-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #0c4a6e;
}
.home-slider-radio { position: absolute; opacity: 0; pointer-events: none; }
.home-slider-inner {
    display: flex;
    width: 400%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#home-slider-1:checked ~ .home-slider-inner { transform: translateX(0); }
#home-slider-2:checked ~ .home-slider-inner { transform: translateX(-25%); }
#home-slider-3:checked ~ .home-slider-inner { transform: translateX(-50%); }
#home-slider-4:checked ~ .home-slider-inner { transform: translateX(-75%); }

.home-slider-slide {
    position: relative;
    width: 25%;
    flex-shrink: 0;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6) var(--space-3);
    box-sizing: border-box;
    overflow: hidden;
}
.home-slider-slide-bg {
    position: absolute;
    inset: -2%;
    background-size: cover;
    background-position: center;
    animation: slider-bg-move 18s ease-in-out infinite;
}
.home-slider-slide-2 .home-slider-slide-bg { animation-delay: -4s; }
.home-slider-slide-3 .home-slider-slide-bg { animation-delay: -8s; }
.home-slider-slide-4 .home-slider-slide-bg { animation-delay: -12s; }
@keyframes slider-bg-move {
    0%, 100% { transform: scale(1) translate(0, 0); }
    25% { transform: scale(1.08) translate(1%, 1%); }
    50% { transform: scale(1.05) translate(-1%, 0.5%); }
    75% { transform: scale(1.1) translate(0, -1%); }
}
.home-slider-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 74, 110, 0.5) 0%, rgba(12, 74, 110, 0.75) 100%);
    z-index: 1;
}
.home-slider-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
    width: 100%;
    animation: slider-content-float 5s ease-in-out infinite;
}
@keyframes slider-content-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.home-slider-title {
    margin: 0 0 var(--space-2);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    letter-spacing: -0.02em;
    animation: slider-text-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.home-slider-desc {
    margin: 0 0 var(--space-4);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.95);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    animation: slider-text-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.home-slider-content .btn {
    animation: slider-text-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.home-slider .btn {
    transition: transform var(--ease), box-shadow var(--ease);
}
.home-slider .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}
@keyframes slider-text-in {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.home-slider-dots {
    position: absolute;
    bottom: var(--space-3);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    z-index: 3;
}
.home-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
}
.home-slider-dot:hover { background: rgba(255,255,255,0.9); transform: scale(1.15); }
#home-slider-1:checked ~ .home-slider-dots .home-slider-dot:nth-child(1),
#home-slider-2:checked ~ .home-slider-dots .home-slider-dot:nth-child(2),
#home-slider-3:checked ~ .home-slider-dots .home-slider-dot:nth-child(3),
#home-slider-4:checked ~ .home-slider-dots .home-slider-dot:nth-child(4) {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.5);
    transform: scale(1.2);
}

/* Şeffaf ok butonları — önceki / sonraki */
.home-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    transition: background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
    opacity: 0.85;
}
.home-slider-arrow:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
    opacity: 1;
}
.home-slider-arrow-prev { left: var(--space-3); }
.home-slider-arrow-next { right: var(--space-3); }
.home-slider-arrow-icon {
    width: 20px;
    height: 20px;
    border: solid #fff;
    border-width: 2px 2px 0 0;
    display: block;
}
.home-slider-arrow-prev .home-slider-arrow-icon {
    margin-left: 6px;
    transform: rotate(-135deg);
}
.home-slider-arrow-next .home-slider-arrow-icon {
    margin-right: 6px;
    transform: rotate(45deg);
}
.home-slider-arrow-next-1 { display: none; }
.home-slider-arrow-next-2 { display: none; }
.home-slider-arrow-next-3 { display: none; }
.home-slider-arrow-next-4 { display: none; }
.home-slider-arrow-prev-1 { display: none; }
.home-slider-arrow-prev-2 { display: none; }
.home-slider-arrow-prev-3 { display: none; }
.home-slider-arrow-prev-4 { display: none; }
#home-slider-1:checked ~ .home-slider-arrow-next-1,
#home-slider-2:checked ~ .home-slider-arrow-next-2,
#home-slider-3:checked ~ .home-slider-arrow-next-3,
#home-slider-4:checked ~ .home-slider-arrow-next-4 { display: flex; }
#home-slider-1:checked ~ .home-slider-arrow-prev-1,
#home-slider-2:checked ~ .home-slider-arrow-prev-2,
#home-slider-3:checked ~ .home-slider-arrow-prev-3,
#home-slider-4:checked ~ .home-slider-arrow-prev-4 { display: flex; }

@media (max-width: 767px) {
    .home-slider-slide { min-height: 315px; padding: var(--space-5) var(--space-3); }
    .home-slider-arrow { width: 32px; height: 32px; }
    .home-slider-arrow-prev { left: var(--space-2); }
    .home-slider-arrow-next { right: var(--space-2); }
}

/* ========== GÖRSELLİ KATEGORİ BANDI — slider altı 3 büyük kart ========== */
.category-band {
    width: 100%;
    padding: var(--space-5) var(--space-3);
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.category-band-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    align-items: stretch;
}
@media (max-width: 767px) { .category-band-inner { grid-template-columns: 1fr; } }
.category-band-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    min-height: 165px;
    height: 100%;
    transition: transform var(--ease), box-shadow var(--ease);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.category-band-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.category-band-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
}
.category-band-card:hover .category-band-img { transform: scale(1.06); }
.category-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 74, 110, 0.4) 0%, rgba(12, 74, 110, 0.75) 100%);
}
.category-band-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-4);
    min-height: 165px;
}
.category-band-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.category-band-desc {
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 0.25rem;
}

/* ========== HİZMETLER — Anasayfa #hizmetler (Aracım, Sağlığım, Yuvam) ========== */
.hizmetler-section {
    width: 100%;
    padding: var(--space-6) 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #eef0f3 40%, #f8f9fa 100%);
    border-top: 1px solid var(--border);
}
.hizmetler-section .section-header-center { margin-bottom: var(--space-5); }
.hizmetler-inner { position: relative; z-index: 1; }
.hizmetler-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    align-items: stretch;
}
@media (min-width: 768px) {
    .hizmetler-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
}
.hizmetler-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: var(--header-navy);
    transition: transform var(--ease), box-shadow var(--ease);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.hizmetler-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}
.hizmetler-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease-out;
}
.hizmetler-card:hover .hizmetler-card-img { transform: scale(1.08); }
.hizmetler-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 74, 110, 0.25) 0%, rgba(12, 74, 110, 0.92) 70%);
    transition: background var(--ease);
}
.hizmetler-card:hover .hizmetler-card-overlay {
    background: linear-gradient(180deg, rgba(12, 74, 110, 0.2) 0%, rgba(12, 74, 110, 0.88) 65%);
}
.hizmetler-card-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-4);
    flex: 1;
    min-height: 0;
}
.hizmetler-card-title {
    margin: 0 0 var(--space-2);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.hizmetler-card-desc {
    margin: 0 0 var(--space-3);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    max-width: 28em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}
.hizmetler-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    transition: gap var(--ease), transform var(--ease);
}
.hizmetler-card:hover .hizmetler-card-cta { gap: 0.5rem; }
.hizmetler-card-arrow {
    display: inline-block;
    transition: transform var(--ease);
}
.hizmetler-card:hover .hizmetler-card-arrow { transform: translateX(4px); }

/* ========== HİZMETLER SAYFASI (hizmetler.php) — hero, bloklar, CTA ========== */
.hizmetler-page { padding-bottom: 0; }
.hizmetler-hero {
    position: relative;
    width: 100%;
    height: 155px;
    min-height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-3);
    overflow: hidden;
}
.hizmetler-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0c4a6e 0%, #0369a1 25%, #0284c7 50%, #0ea5e9 75%, #38bdf8 100%);
    background-size: 400% 400%;
    animation: banner-gradient 12s ease infinite;
}
.hizmetler-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hizmetler-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hizmetler-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: banner-float 18s ease-in-out infinite;
}
.hizmetler-hero-shape-1 { width: 90px; height: 90px; left: 10%; top: 20%; animation-delay: 0s; animation-duration: 14s; }
.hizmetler-hero-shape-2 { width: 60px; height: 60px; right: 15%; top: 30%; animation-delay: -3s; animation-duration: 16s; }
.hizmetler-hero-shape-3 { width: 45px; height: 45px; left: 30%; bottom: 15%; animation-delay: -6s; animation-duration: 12s; }
.hizmetler-hero-shape-4 { width: 75px; height: 75px; right: 25%; bottom: 25%; animation-delay: -9s; animation-duration: 20s; }
.hizmetler-hero-shape-5 { width: 38px; height: 38px; left: 50%; top: 50%; animation-delay: -4s; animation-duration: 15s; }
.hizmetler-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.hizmetler-hero-badge {
    display: inline-block;
    margin: 0 0 0.25rem;
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-btn);
}
.hizmetler-hero-title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.4rem, 3.2vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.hizmetler-hero-intro {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.hizmetler-quick-nav {
    padding: var(--space-5) 0;
    background: linear-gradient(180deg, #e8ecf0 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.hizmetler-quick-nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-3);
}
.hizmetler-quick-nav-title {
    margin: 0 0 var(--space-4);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
}
.hizmetler-quick-nav-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    align-items: stretch;
}
@media (min-width: 640px) {
    .hizmetler-quick-nav-cards { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
}
.hizmetler-quick-nav-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-5) var(--space-4);
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    min-height: 180px;
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.hizmetler-quick-nav-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--ease);
}
.hizmetler-quick-nav-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.hizmetler-quick-nav-card:hover::before { opacity: 1; }
.hizmetler-quick-nav-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease-out;
}
.hizmetler-quick-nav-card:hover .hizmetler-quick-nav-card-bg { transform: scale(1.08); }
.hizmetler-quick-nav-card-1 .hizmetler-quick-nav-card-bg {
    background: linear-gradient(145deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
}
.hizmetler-quick-nav-card-2 .hizmetler-quick-nav-card-bg {
    background: linear-gradient(145deg, #0e7490 0%, #0891b2 50%, #22d3ee 100%);
}
.hizmetler-quick-nav-card-3 .hizmetler-quick-nav-card-bg {
    background: linear-gradient(145deg, #155e75 0%, #0e7490 50%, #06b6d4 100%);
}
.hizmetler-quick-nav-card-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: var(--space-2);
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 14px;
    flex-shrink: 0;
    transition: transform var(--ease), background var(--ease);
}
.hizmetler-quick-nav-card:hover .hizmetler-quick-nav-card-icon {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
}
.hizmetler-quick-nav-card-icon svg { width: 1.6rem; height: 1.6rem; }
.hizmetler-quick-nav-card-name {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.35rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.hizmetler-quick-nav-card-hint {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}
.hizmetler-quick-nav-card-arrow {
    position: absolute;
    right: var(--space-3);
    bottom: var(--space-3);
    z-index: 1;
    font-size: 1.25rem;
    font-weight: 700;
    opacity: 0.7;
    transition: transform var(--ease), opacity var(--ease);
}
.hizmetler-quick-nav-card:hover .hizmetler-quick-nav-card-arrow {
    transform: translate(4px, -2px);
    opacity: 1;
}

.hizmetler-blocks { background: var(--bg); }
.hizmetler-block {
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--border);
}
.hizmetler-block:last-of-type { border-bottom: none; }
.hizmetler-block-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-5) var(--space-3);
}
@media (min-width: 900px) {
    .hizmetler-block-inner { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
    .hizmetler-block--reverse .hizmetler-block-inner { direction: rtl; }
    .hizmetler-block--reverse .hizmetler-block-inner > * { direction: ltr; }
}
.hizmetler-block-img-wrap {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 4/3;
    min-height: 240px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transition: transform var(--ease), box-shadow var(--ease);
}
.hizmetler-block-img-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.hizmetler-block-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 5s ease-out;
}
.hizmetler-block-img-wrap:hover .hizmetler-block-img { transform: scale(1.05); }
.hizmetler-block-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    border-radius: 16px;
}
.hizmetler-block-num {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(4px);
}
.hizmetler-block-content {
    padding: 0;
}
@media (min-width: 900px) {
    .hizmetler-block-content { padding: var(--space-2) 0; }
}
.hizmetler-block-icon-wrap {
    margin-bottom: var(--space-2);
}
.hizmetler-block-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.35);
}
.hizmetler-block-icon svg { width: 1.5rem; height: 1.5rem; }
.hizmetler-block-title {
    margin: 0 0 0.25rem;
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--text-bold);
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.hizmetler-block-subtitle {
    margin: 0 0 var(--space-2);
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}
.hizmetler-block-desc {
    margin: 0 0 var(--space-3);
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.65;
}
.hizmetler-block-highlights {
    margin: 0 0 var(--space-4);
    padding: 0;
    list-style: none;
}
.hizmetler-block-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.5;
}
.hizmetler-block-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}
.hizmetler-block-content .btn { margin-top: 0; }

.hizmetler-cta-strip {
    position: relative;
    padding: var(--space-6) 0;
    overflow: hidden;
    background: linear-gradient(165deg, #f8f9fa 0%, #eef0f3 50%, #f8f9fa 100%);
    border-top: 1px solid var(--border);
}
.hizmetler-cta-strip-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(2, 132, 199, 0.06) 0%, transparent 55%);
    pointer-events: none;
}
.hizmetler-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-5) var(--space-3);
}
.hizmetler-cta-title {
    margin: 0 0 var(--space-2);
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--text-bold);
}
.hizmetler-cta-desc {
    margin: 0 0 var(--space-4);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.hizmetler-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
}
.hizmetler-cta-buttons .btn { min-width: 10rem; }
.link-muted { color: var(--text-muted); text-decoration: none; }
.link-muted:hover { color: var(--primary); text-decoration: underline; }

/* Hizmetler sayfası — sigorta türleri grid (çok sayıda hizmet kartı) */
.hizmetler-list {
    width: 100%;
    padding: var(--space-6) 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #eef0f3 45%, #f8f9fa 100%);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.hizmetler-list .section-header-center { margin-bottom: var(--space-5); }
.hizmetler-list-inner { position: relative; z-index: 1; }
.hizmetler-service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    align-items: stretch;
}
@media (min-width: 640px) {
    .hizmetler-service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .hizmetler-service-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
}
.hizmetler-service-card {
    margin: 0;
    height: 100%;
}
.hizmetler-service-card-link {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: var(--header-navy);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--ease), box-shadow var(--ease);
}
.hizmetler-service-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.hizmetler-service-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease-out;
}
.hizmetler-service-card-link:hover .hizmetler-service-card-img { transform: scale(1.06); }
.hizmetler-service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 74, 110, 0.2) 0%, rgba(12, 74, 110, 0.88) 60%);
    transition: background var(--ease);
}
.hizmetler-service-card-link:hover .hizmetler-service-card-overlay {
    background: linear-gradient(180deg, rgba(12, 74, 110, 0.15) 0%, rgba(12, 74, 110, 0.85) 55%);
}
.hizmetler-service-card-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-4);
    flex: 1;
    min-height: 0;
}
.hizmetler-service-card-title {
    margin: 0 0 var(--space-2);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.hizmetler-service-card-desc {
    margin: 0 0 var(--space-3);
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}
.hizmetler-service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    transition: gap var(--ease);
}
.hizmetler-service-card-link:hover .hizmetler-service-card-cta { gap: 0.5rem; }

/* Hizmet detay sayfası (hizmet-detay.php) */
.hizmet-detay-page { padding-bottom: var(--space-6); }
.hizmet-detay-bar {
    padding: var(--space-3) var(--space-3);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
}
.hizmet-detay-bar .breadcrumb { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.hizmet-detay-bar .breadcrumb a { color: var(--primary); text-decoration: none; }
.hizmet-detay-bar .breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { margin: 0 0.35rem; opacity: 0.7; }
.hizmet-detay-back {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.hizmet-detay-back:hover { text-decoration: underline; }
.hizmet-detay-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hizmet-detay-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hizmet-detay-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(12, 74, 110, 0.85) 100%);
}
.hizmet-detay-hero-inner {
    position: relative;
    z-index: 1;
    padding: var(--space-5) var(--space-3);
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}
.hizmet-detay-hero-title {
    margin: 0 0 var(--space-2);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    line-height: 1.25;
    max-width: none;
}
.hizmet-detay-hero-desc {
    margin: 0 auto;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    max-width: 42em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}
.hizmet-detay-content-wrap {
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.hizmet-detay-content {
    padding: var(--space-5) var(--space-3);
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    align-items: start;
}
@media (min-width: 900px) {
    .hizmet-detay-content {
        grid-template-columns: 320px 1fr;
        gap: var(--space-6);
    }
}
.hizmet-detay-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
@media (min-width: 900px) {
    .hizmet-detay-sidebar { position: sticky; top: var(--space-4); }
}
.hizmet-detay-sidebar-img {
    width: 100%;
    aspect-ratio: 4/3;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.hizmet-detay-sidebar-img-2 {
    aspect-ratio: 3/2;
    min-height: 160px;
}
.hizmet-detay-main { min-width: 0; }
.hizmet-detay-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text);
}
.hizmet-detay-body p { margin: 0 0 1.25em; }
.hizmet-detay-body p:last-child { margin-bottom: 0; }
.hizmet-detay-body h3 {
    margin: 1.5em 0 0.5em;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-bold);
    line-height: 1.35;
}
.hizmet-detay-body h3:first-child { margin-top: 0; }
.hizmet-detay-body strong { font-weight: 700; color: var(--text-bold); }
.hizmet-detay-footer {
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
}
.hizmet-detay-footer p { margin: 0 0 var(--space-2); }
.hizmet-detay-footer .link-muted { margin-top: var(--space-2); display: inline-block; }

/* ========== HIZLI ERİŞİM — Neden bizi gibi (ikonlu kartlar, ortalanmış) ========== */
.quick-access-section {
    position: relative;
    width: 100%;
    padding: var(--space-6) 0;
    overflow: hidden;
    background: linear-gradient(165deg, #f8f9fa 0%, #eef0f3 40%, #f8f9fa 100%);
    border-top: 1px solid var(--border);
    font-family: 'Inter', var(--font);
}
.quick-access-bg {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background: radial-gradient(ellipse 70% 60% at 50% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}
.quick-access-block { position: relative; z-index: 1; }
.quick-access-header {
    text-align: center;
    margin-bottom: var(--space-5);
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}
.quick-access-title {
    margin: 0 0 var(--space-2);
    font-size: clamp(1.75rem, 3.5vw, 2.1rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.quick-access-subtitle {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.quick-access {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    align-items: stretch;
}
@media (min-width: 640px) { .quick-access { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); } }

.quick-card {
    position: relative;
    height: 100%;
    min-height: 0;
    background: var(--surface);
    border-radius: 16px;
    padding: var(--space-5);
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform var(--ease), box-shadow var(--ease);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    overflow: hidden;
}
.quick-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}
.quick-card-1 .quick-card-top { background: linear-gradient(90deg, var(--primary), var(--accent)); }
.quick-card-2 .quick-card-top { background: linear-gradient(90deg, #0369a1, #0ea5e9); }
.quick-card-3 .quick-card-top { background: linear-gradient(90deg, #0284c7, #38bdf8); }
.quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}
.quick-card-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-3);
}
.quick-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: #fff;
    border-radius: 50%;
    transition: transform var(--ease);
}
.quick-card-icon svg {
    width: 27px;
    height: 27px;
    display: block;
}
.quick-card-1 .quick-card-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.quick-card-2 .quick-card-icon { background: linear-gradient(135deg, #0369a1, #0ea5e9); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.quick-card-3 .quick-card-icon { background: linear-gradient(135deg, #0284c7, #38bdf8); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.quick-card:hover .quick-card-icon { transform: scale(1.08); }
.quick-card .quick-title {
    margin: 0 0 var(--space-2);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.quick-card .quick-desc {
    margin: 0 0 var(--space-3);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.quick-cta-wrap {
    margin-top: auto;
}
.quick-card .quick-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    transition: color var(--ease);
}
.quick-cta-arrow {
    font-size: 1.1em;
    transition: transform var(--ease);
}
.quick-card:hover .quick-cta { color: var(--primary-dark); }
.quick-card:hover .quick-cta-arrow { transform: translateX(4px); }

/* ========== NEDEN BİZ — yeniden tasarım ========== */
.why-us-section {
    position: relative;
    width: 100%;
    padding: var(--space-6) 0;
    overflow: hidden;
    font-family: 'Inter', var(--font);
    background: #ffffff;
}
.why-us-section .why-us-bg {
    display: none;
}
.why-us-inner { position: relative; z-index: 1; }
.why-us-header {
    text-align: center;
    margin-bottom: var(--space-5);
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}
.why-us-section .why-us-title {
    margin: 0 0 var(--space-2);
    font-size: clamp(1.75rem, 3.5vw, 2.1rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.why-us-subtitle {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    align-items: stretch;
}
@media (min-width: 640px) { .why-us-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); } }
@media (min-width: 1000px) { .why-us-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-4); } }

.why-us-card {
    position: relative;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: 16px;
    padding: var(--space-5);
    text-align: center;
    transition: transform var(--ease), box-shadow var(--ease);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    overflow: hidden;
}
.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}
.why-us-card-1::before { background: linear-gradient(90deg, var(--primary), var(--accent)); }
.why-us-card-2::before { background: linear-gradient(90deg, #0369a1, #0ea5e9); }
.why-us-card-3::before { background: linear-gradient(90deg, #0284c7, #38bdf8); }
.why-us-card-4::before { background: linear-gradient(90deg, #0ea5e9, #7dd3fc); }
.why-us-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}
.why-us-card-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-3);
}
.why-us-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: #fff;
    border-radius: 50%;
    transition: transform var(--ease);
}
.why-us-card-icon svg {
    width: 27px;
    height: 27px;
    display: block;
}
.why-us-card-1 .why-us-card-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.why-us-card-2 .why-us-card-icon { background: linear-gradient(135deg, #0369a1, #0ea5e9); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.why-us-card-3 .why-us-card-icon { background: linear-gradient(135deg, #0284c7, #38bdf8); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.why-us-card-4 .why-us-card-icon { background: linear-gradient(135deg, #0ea5e9, #7dd3fc); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.why-us-card:hover .why-us-card-icon { transform: scale(1.08); }
.why-us-card .why-us-card-title {
    margin: 0 0 var(--space-2);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.why-us-card .why-us-card-desc {
    margin: 0;
    flex: 1;
    min-height: 0;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== NASIL ÇALIŞIR? — 3 adım (beyaz zemin ile üst bölümden ayrışır) ========== */
.how-it-works-section {
    width: 100%;
    padding: var(--space-6) 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    align-items: stretch;
}
@media (min-width: 640px) { .how-it-works-grid { grid-template-columns: repeat(3, 1fr); } }
.how-it-works-step {
    position: relative;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--surface);
    border-radius: 16px;
    padding: var(--space-5);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(2, 132, 199, 0.08);
    transition: transform var(--ease), box-shadow var(--ease);
}
.how-it-works-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}
.how-it-works-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: var(--space-3);
}
.how-it-works-title {
    margin: 0 0 var(--space-2);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
}
.how-it-works-desc {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========== GÜVENİN ADRESİ — Neden bizi gibi kartlar (Neden bizden sonra) ========== */
.trust-badges-section {
    width: 100%;
    padding: var(--space-6) 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #eef0f3 40%, #f8f9fa 100%);
    border-top: 1px solid var(--border);
    font-family: 'Inter', var(--font);
}
.trust-badges-inner { position: relative; z-index: 1; }
.trust-badges-section .section-header-center {
    margin-bottom: var(--space-5);
}
.trust-badges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    align-items: stretch;
}
@media (min-width: 640px) { .trust-badges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .trust-badges-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-badge-card {
    position: relative;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: 16px;
    padding: var(--space-5);
    text-align: center;
    transition: transform var(--ease), box-shadow var(--ease);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    overflow: hidden;
}
.trust-badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.trust-badge-card-2::before { background: linear-gradient(90deg, #0369a1, #0ea5e9); }
.trust-badge-card-3::before { background: linear-gradient(90deg, #0284c7, #38bdf8); }
.trust-badge-card-4::before { background: linear-gradient(90deg, #0ea5e9, #7dd3fc); }
.trust-badge-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}
.trust-badge-card-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-3);
}
.trust-badge-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: #fff;
    border-radius: 50%;
    transition: transform var(--ease);
}
.trust-badge-card-icon svg {
    width: 27px;
    height: 27px;
    display: block;
}
.trust-badge-card-1 .trust-badge-card-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.trust-badge-card-2 .trust-badge-card-icon { background: linear-gradient(135deg, #0369a1, #0ea5e9); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.trust-badge-card-3 .trust-badge-card-icon { background: linear-gradient(135deg, #0284c7, #38bdf8); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.trust-badge-card-4 .trust-badge-card-icon { background: linear-gradient(135deg, #0ea5e9, #7dd3fc); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.trust-badge-card:hover .trust-badge-card-icon { transform: scale(1.08); }
.trust-badge-card-title {
    margin: 0 0 var(--space-2);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.trust-badge-card-desc {
    margin: 0;
    flex: 1;
    min-height: 0;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== İSTATİSTİK — hero banner ile aynı animasyonlar ========== */
.stats-strip {
    width: 100%;
    padding: var(--space-5) var(--space-3);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.stats-strip .strip-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(120deg, #0c4a6e 0%, #0369a1 25%, #0284c7 50%, #0ea5e9 75%, #38bdf8 100%);
    background-size: 400% 400%;
    animation: banner-gradient 12s ease infinite;
}
.stats-strip .strip-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.stats-strip .strip-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.stats-strip .strip-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: banner-float 18s ease-in-out infinite;
}
.stats-strip .strip-shape-1 { width: 90px; height: 90px; left: 10%; top: 20%; animation-delay: 0s; animation-duration: 14s; }
.stats-strip .strip-shape-2 { width: 60px; height: 60px; right: 15%; top: 30%; animation-delay: -3s; animation-duration: 16s; }
.stats-strip .strip-shape-3 { width: 45px; height: 45px; left: 30%; bottom: 15%; animation-delay: -6s; animation-duration: 12s; }
.stats-strip .strip-shape-4 { width: 75px; height: 75px; right: 25%; bottom: 25%; animation-delay: -9s; animation-duration: 20s; }
.stats-strip .strip-shape-5 { width: 38px; height: 38px; left: 50%; top: 50%; animation-delay: -4s; animation-duration: 15s; }
.stats-strip .strip-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 2;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 45%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.12) 55%, transparent 60%);
    animation: banner-shine 6s ease-in-out infinite;
    pointer-events: none;
}
.stats-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    text-align: center;
    position: relative;
    z-index: 3;
}
.stats-strip .stat-value { margin: 0; font-size: 2.25rem; font-weight: 800; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.stats-strip .stat-label { margin: 0.35rem 0 0; font-size: 1rem; opacity: 0.95; }
@media (max-width: 480px) { .stats-inner { grid-template-columns: 1fr; } }

/* ========== KAMPANYALAR ALTI KAYAN FOTOĞRAF GALERİSİ — çizgilere sıfır ========== */
.photo-gallery-strip {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.photo-gallery-track {
    display: flex;
    width: max-content;
    min-width: 200%;
    animation: photo-gallery-scroll 45s linear infinite reverse;
}
.photo-gallery-item {
    flex-shrink: 0;
    display: block;
    width: 210px;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
}
.photo-gallery-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.85) contrast(0.95);
    opacity: 0.88;
    transition: filter 0.35s ease, opacity 0.35s ease;
}
.photo-gallery-item:hover img {
    filter: grayscale(0) contrast(1);
    opacity: 1;
}
@keyframes photo-gallery-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== KARTLAR — Neden bizi / Hızlı Erişim ile aynı stil (16px radius, üst gradient bar) ========== */
.box-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: var(--space-5);
    margin-bottom: var(--space-3);
    transition: transform var(--ease), box-shadow var(--ease);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.campaign-grid .box-card,
.partner-list .box-card { margin-bottom: 0; }
.box-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.box-card:nth-child(3n+2)::before { background: linear-gradient(90deg, #0369a1, #0ea5e9); }
.box-card:nth-child(3n+3)::before { background: linear-gradient(90deg, #0284c7, #38bdf8); }
.box-card:last-child { margin-bottom: 0; }
.box-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    border-color: var(--border);
}
.box-title { margin: 0 0 var(--space-2); font-size: 1.25rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; line-height: 1.3; }
.box-text { margin: 0 0 var(--space-1); font-size: 1.05rem; color: var(--text-muted); line-height: 1.6; }
.box-meta { margin: 0; font-size: 1rem; color: var(--text-muted); }
.box-actions { margin: var(--space-3) 0 0; }
.box-inline { display: block; }

.campaign-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    align-items: stretch;
}
@media (min-width: 640px) { .campaign-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 950px) { .campaign-grid { grid-template-columns: repeat(3, 1fr); } }

.partner-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    align-items: stretch;
}
@media (min-width: 640px) { .partner-list { grid-template-columns: repeat(2, 1fr); } }

.campaign-grid .box-card,
.partner-list .box-card {
    height: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.campaign-grid .box-card .box-text,
.partner-list .box-card .box-text {
    flex: 1;
    min-height: 0;
}

.product-list { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07); }
.product-card .btn { margin-top: var(--space-2); }

/* ========== SSS — kart stili (üst gradient bar) ========== */
.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: var(--space-3);
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.faq-item:nth-child(2n)::before { background: linear-gradient(90deg, #0369a1, #0ea5e9); }
.faq-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}
.faq-item .faq-soru {
    margin: 0;
    padding: var(--space-4);
    font-weight: 800;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    letter-spacing: -0.01em;
}
.faq-item .faq-cevap {
    margin: 0;
    padding: var(--space-4);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== CTA ŞERİDİ — gradient, butonlar vurgulu ========== */
.cta-strip {
    width: 100%;
    padding: var(--space-5) var(--space-3);
    color: white;
    box-shadow: 0 8px 32px rgba(2, 132, 199, 0.25);
    position: relative;
    overflow: hidden;
}
.cta-strip .strip-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(120deg, #0c4a6e 0%, #0369a1 25%, #0284c7 50%, #0ea5e9 75%, #38bdf8 100%);
    background-size: 400% 400%;
    animation: banner-gradient 12s ease infinite;
}
.cta-strip .strip-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.cta-strip .strip-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.cta-strip .strip-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: banner-float 18s ease-in-out infinite;
}
.cta-strip .strip-shape-1 { width: 90px; height: 90px; left: 10%; top: 20%; animation-delay: 0s; animation-duration: 14s; }
.cta-strip .strip-shape-2 { width: 60px; height: 60px; right: 15%; top: 30%; animation-delay: -3s; animation-duration: 16s; }
.cta-strip .strip-shape-3 { width: 45px; height: 45px; left: 30%; bottom: 15%; animation-delay: -6s; animation-duration: 12s; }
.cta-strip .strip-shape-4 { width: 75px; height: 75px; right: 25%; bottom: 25%; animation-delay: -9s; animation-duration: 20s; }
.cta-strip .strip-shape-5 { width: 38px; height: 38px; left: 50%; top: 50%; animation-delay: -4s; animation-duration: 15s; }
.cta-strip .strip-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 2;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 45%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.12) 55%, transparent 60%);
    animation: banner-shine 6s ease-in-out infinite;
    pointer-events: none;
}
.cta-strip-inner {
    position: relative;
    z-index: 3;
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}
.cta-strip-text { margin: 0; font-size: 1.25rem; font-weight: 700; max-width: 30rem; line-height: 1.4; }
.cta-strip-buttons { display: flex; flex-wrap: wrap; gap: var(--space-2); }
@media (max-width: 639px) {
    .cta-strip-inner { flex-direction: column; text-align: center; }
    .cta-strip-buttons { justify-content: center; }
}

/* ========== İLETİŞİM KUTUSU — kart stili ========== */
.contact-info-box {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: var(--space-5);
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.contact-info-box p { margin: var(--space-2) 0; font-size: 1.05rem; }
.contact-info-box .working-hours {
    margin-top: var(--space-2);
    padding-top: var(--space-2);
    border-top: 1px solid var(--border);
    font-size: 1rem;
    color: var(--text-muted);
}

/* ========== İLETİŞİM SAYFASI — dinamik hero, kartlar, form ========== */
.contact-page { min-height: 0; }
.contact-hero {
    position: relative;
    width: 100%;
    height: 155px;
    min-height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-3);
    overflow: hidden;
}
.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0c4a6e 0%, #0369a1 25%, #0284c7 50%, #0ea5e9 75%, #38bdf8 100%);
    background-size: 400% 400%;
    animation: banner-gradient 12s ease infinite;
}
.contact-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.contact-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.contact-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: banner-float 18s ease-in-out infinite;
}
.contact-hero-shape-1 { width: 90px; height: 90px; left: 10%; top: 20%; animation-delay: 0s; animation-duration: 14s; }
.contact-hero-shape-2 { width: 60px; height: 60px; right: 15%; top: 30%; animation-delay: -3s; animation-duration: 16s; }
.contact-hero-shape-3 { width: 45px; height: 45px; left: 30%; bottom: 15%; animation-delay: -6s; animation-duration: 12s; }
.contact-hero-shape-4 { width: 75px; height: 75px; right: 25%; bottom: 25%; animation-delay: -9s; animation-duration: 20s; }
.contact-hero-shape-5 { width: 38px; height: 38px; left: 50%; top: 50%; animation-delay: -4s; animation-duration: 15s; }
.contact-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.contact-hero-badge {
    display: inline-block;
    margin: 0 0 0.35rem;
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
}
.contact-hero-title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.4rem, 3.2vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.contact-hero-intro {
    margin: 0;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 767px) {
    .contact-hero { height: 115px; min-height: 115px; padding: var(--space-3); }
}

.contact-success-wrap { padding: var(--space-5) var(--space-3); }
.contact-success-card {
    max-width: 28rem;
    margin: 0 auto;
    padding: var(--space-6);
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.contact-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-3);
    color: #059669;
    background: rgba(5, 150, 105, 0.12);
    border-radius: 50%;
}
.contact-success-title {
    margin: 0 0 var(--space-2);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}
.contact-success-text {
    margin: 0 0 var(--space-4);
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-main {
    position: relative;
    padding: var(--space-6) var(--space-3);
    overflow: hidden;
}
.contact-main .section-block,
.contact-main .contact-grid-inner {
    position: relative;
    z-index: 1;
}
.contact-grid-inner {
    display: grid;
    gap: var(--space-4);
    align-items: start;
}
@media (min-width: 900px) {
    .contact-grid-inner {
        grid-template-columns: 1fr 320px;
        gap: var(--space-4) var(--space-8);
    }
    .contact-tagline { grid-column: 1 / -1; }
}
.contact-tagline {
    margin: 0 0 var(--space-2);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}
@media (max-width: 899px) {
    .contact-tagline { text-align: center; margin-bottom: var(--space-4); }
}
.contact-tagline .required { color: var(--primary); }
.contact-form-column {
    min-width: 0;
    max-width: 560px;
}
@media (min-width: 900px) {
    .contact-form-column { max-width: none; }
}
.contact-footer-cta {
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
}
.contact-footer-cta p { margin: 0; }
.contact-footer-cta a { color: var(--primary); font-weight: 600; text-decoration: none; }
.contact-footer-cta a:hover { text-decoration: underline; }

/* İletişim sayfası — sağ bilgilendirme sidebar (teklif ile aynı yapı) */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}
.contact-info-sidebar-card {
    padding: var(--space-4);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.contact-info-sidebar-title {
    margin: 0 0 var(--space-3);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}
.contact-info-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.contact-info-sidebar-item {
    display: flex;
    gap: var(--space-2);
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.contact-info-sidebar-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
}
.contact-info-sidebar-item p {
    margin: 0;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
}
.contact-info-sidebar-item a {
    color: var(--primary);
    text-decoration: none;
}
.contact-info-sidebar-item a:hover { text-decoration: underline; }
.contact-info-sidebar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-radius: 10px;
}
.contact-info-sidebar-icon svg { display: block; }
.contact-info-sidebar-cta {
    text-align: center;
    background: linear-gradient(180deg, rgba(2, 132, 199, 0.06) 0%, transparent 100%);
    border-color: var(--primary-light);
}
.contact-info-sidebar-cta-text {
    margin: 0 0 var(--space-2);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}
.contact-info-sidebar-cta .btn { width: 100%; justify-content: center; }

.contact-section-title {
    margin: 0 0 var(--space-4);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}
.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}
@media (min-width: 500px) {
    .contact-info-cards { grid-template-columns: repeat(2, 1fr); }
}
.contact-info-card-wide { grid-column: 1 / -1; }
.contact-info-card {
    position: relative;
    padding: var(--space-4);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-light);
}
.contact-info-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-2);
    color: var(--primary);
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-radius: 12px;
}
.contact-info-card-icon svg { display: block; }
.contact-info-card-title {
    margin: 0 0 0.35rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.contact-info-card-value {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}
.contact-info-card-value a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--ease);
}
.contact-info-card-value a:hover { color: var(--primary-dark); }

.contact-form-card {
    position: relative;
    padding: var(--space-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.contact-form-title {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
}
.contact-form-desc {
    margin: 0 0 var(--space-4);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.contact-form .contact-form-row { margin-bottom: var(--space-3); }
.contact-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}
.contact-form .required { color: var(--primary); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: var(--font);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: border-color var(--ease), box-shadow var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); opacity: 0.8; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}
.contact-form textarea { min-height: 7rem; resize: vertical; }
.contact-form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}
@media (max-width: 499px) {
    .contact-form-row-group { grid-template-columns: 1fr; }
}
.contact-form-field label { display: block; margin-bottom: 0.35rem; font-weight: 600; font-size: 0.9rem; color: var(--text); }
.contact-form-field input { width: 100%; padding: 0.85rem 1rem; font-size: 1rem; font-family: var(--font); border: 2px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: border-color var(--ease), box-shadow var(--ease); }
.contact-form-field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-light); }
.contact-form-actions { margin-top: var(--space-4); margin-bottom: 0; }
.contact-form-actions .btn { min-width: 140px; }

/* İletişim formu — doğrulama (Teklif formu ile aynı format) */
.contact-form input.field-error,
.contact-form textarea.field-error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}
.contact-form input.field-valid,
.contact-form textarea.field-valid {
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}
.contact-form .contact-field-error {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: #dc2626;
    font-weight: 500;
    min-height: 1.25em;
}
.contact-form input.shake,
.contact-form textarea.shake {
    animation: teklif-shake 0.5s ease-in-out;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.text-center { text-align: center; }

/* ========== TEKLİF AL SAYFASI ========== */
.teklif-page { min-height: 0; }
.teklif-hero {
    position: relative;
    width: 100%;
    height: 155px;
    min-height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-3);
    overflow: hidden;
}
.teklif-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0c4a6e 0%, #0369a1 25%, #0284c7 50%, #0ea5e9 75%, #38bdf8 100%);
    background-size: 400% 400%;
    animation: banner-gradient 12s ease infinite;
}
.teklif-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.teklif-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.teklif-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: banner-float 18s ease-in-out infinite;
}
.teklif-hero-shape-1 { width: 90px; height: 90px; left: 10%; top: 20%; animation-delay: 0s; animation-duration: 14s; }
.teklif-hero-shape-2 { width: 60px; height: 60px; right: 15%; top: 30%; animation-delay: -3s; animation-duration: 16s; }
.teklif-hero-shape-3 { width: 45px; height: 45px; left: 30%; bottom: 15%; animation-delay: -6s; animation-duration: 12s; }
.teklif-hero-shape-4 { width: 75px; height: 75px; right: 25%; bottom: 25%; animation-delay: -9s; animation-duration: 20s; }
.teklif-hero-shape-5 { width: 38px; height: 38px; left: 50%; top: 50%; animation-delay: -4s; animation-duration: 15s; }
.teklif-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.teklif-hero-badge {
    display: inline-block;
    margin: 0 0 0.35rem;
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
}
.teklif-hero-title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.4rem, 3.2vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.teklif-hero-intro {
    margin: 0;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: rgba(255,255,255,0.95);
    line-height: 1.45;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 767px) {
    .teklif-hero { height: 115px; min-height: 115px; padding: var(--space-3); }
}
.teklif-success-wrap { padding: var(--space-5) var(--space-3); }
.teklif-success-card {
    max-width: 28rem;
    margin: 0 auto;
    padding: var(--space-6);
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.teklif-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-3);
    color: #059669;
    background: rgba(5, 150, 105, 0.12);
    border-radius: 50%;
}
.teklif-success-title { margin: 0 0 var(--space-2); font-size: 1.5rem; font-weight: 800; color: var(--text); }
.teklif-success-text { margin: 0 0 var(--space-4); color: var(--text-muted); line-height: 1.5; }
.teklif-main {
    position: relative;
    padding: var(--space-6) var(--space-3);
    overflow: hidden;
}
.teklif-main .section-block,
.teklif-grid-inner { position: relative; z-index: 1; }
.teklif-grid-inner {
    display: grid;
    gap: var(--space-4);
    align-items: start;
}
@media (min-width: 900px) {
    .teklif-grid-inner {
        grid-template-columns: 1fr 320px;
        grid-template-rows: auto 1fr;
        gap: var(--space-4) var(--space-8);
    }
    .teklif-tagline { grid-column: 1 / -1; }
}
.teklif-form-column {
    min-width: 0;
    max-width: 560px;
}
@media (min-width: 900px) {
    .teklif-form-column { max-width: none; }
}
.teklif-tagline {
    margin: 0 0 var(--space-2);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}
@media (max-width: 899px) {
    .teklif-tagline { text-align: center; margin-bottom: var(--space-4); }
}
.teklif-tagline .required { color: var(--primary); }

.teklif-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}
.teklif-info-sidebar-card {
    padding: var(--space-4);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.teklif-info-sidebar-title {
    margin: 0 0 var(--space-3);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}
.teklif-info-steps {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.teklif-info-steps li { margin-bottom: var(--space-2); }
.teklif-info-steps li:last-child { margin-bottom: 0; }
.teklif-info-steps strong { color: var(--text); }
.teklif-info-list {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.teklif-info-list li { margin-bottom: var(--space-2); }
.teklif-info-list li:last-child { margin-bottom: 0; }
.teklif-info-sidebar-cta {
    text-align: center;
    background: linear-gradient(180deg, rgba(2, 132, 199, 0.06) 0%, transparent 100%);
    border-color: var(--primary-light);
}
.teklif-info-sidebar-cta-text {
    margin: 0 0 var(--space-2);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}
.teklif-info-sidebar-cta .btn { width: 100%; justify-content: center; }

/* Ödeme sayfası — sade, kart ile ödeme */
.odeme-page { padding: var(--space-5) var(--space-3) var(--space-6); }
.odeme-inner { max-width: 420px; margin: 0 auto; }
.odeme-header { margin-bottom: var(--space-4); text-align: center; }
.odeme-title {
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-bold);
}
.odeme-sub { margin: 0; font-size: 0.95rem; color: var(--text-muted); }
.odeme-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-4);
}
.odeme-summary { margin: 0 0 var(--space-4); padding-bottom: var(--space-3); border-bottom: 1px solid var(--border); }
.odeme-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.4rem 0;
}
.odeme-summary-row dt { font-size: 0.9rem; color: var(--text-muted); }
.odeme-summary-row dd { margin: 0; font-size: 0.95rem; font-weight: 600; color: var(--text); }
.odeme-summary-amount dd { font-size: 1.1rem; color: var(--primary); }
.odeme-form { display: flex; flex-direction: column; gap: var(--space-3); }
.odeme-form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.odeme-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.odeme-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}
.odeme-input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    transition: border-color 0.2s;
}
.odeme-input:focus {
    outline: none;
    border-color: var(--primary);
}
.odeme-input::placeholder { color: var(--text-muted); }
.odeme-btn {
    margin-top: var(--space-2);
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.odeme-btn:hover { background: var(--primary-dark); }

.teklif-form-card {
    position: relative;
    padding: var(--space-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.teklif-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.teklif-form .teklif-form-row { margin-bottom: var(--space-3); }

/* Tamamlayıcı Sağlık — Sigortalanacak kişi/kimler alanı */
.teklif-tss-kimler-wrap {
    margin-bottom: var(--space-4);
}
.teklif-tss-kimler-card {
    padding: var(--space-4);
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.35);
    border-radius: var(--radius);
}
.teklif-tss-kimler-title {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}
.teklif-tss-kimler-desc {
    margin: 0 0 var(--space-3);
    font-size: 0.9rem;
    color: var(--text-muted);
}
.teklif-tss-kimler-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-2);
}
.teklif-tss-check {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    margin: 0;
}
.teklif-tss-check input[type="checkbox"] {
    width: 1.15rem;
    height: 1.15rem;
    accent-color: var(--primary);
    cursor: pointer;
}

.teklif-footer-cta {
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.teklif-footer-cta a { color: var(--primary); font-weight: 600; text-decoration: none; }
.teklif-footer-cta a:hover { text-decoration: underline; }
.teklif-footer-cta p { margin: 0 0 var(--space-2); }
.teklif-footer-cta p:last-child { margin-bottom: 0; margin-top: var(--space-2); }
.teklif-form label { display: block; margin-bottom: 0.35rem; font-weight: 600; font-size: 0.9rem; color: var(--text); }
.teklif-form .required { color: var(--primary); }
.teklif-form input[type="text"],
.teklif-form input[type="email"],
.teklif-form input[type="tel"],
.teklif-form input[type="date"],
.teklif-form select,
.teklif-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: var(--font);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: border-color var(--ease), box-shadow var(--ease);
}
.teklif-form select {
    cursor: pointer;
    padding-right: 2.75rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 1.15rem;
}
.teklif-form select:hover {
    border-color: var(--primary-light);
}
.teklif-form select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
.teklif-form input:focus,
.teklif-form select:focus,
.teklif-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}
.teklif-form select option {
    padding: 0.5rem 0.75rem;
}
.teklif-form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}
@media (max-width: 499px) {
    .teklif-form-row-group { grid-template-columns: 1fr; }
}
.teklif-form-actions { margin-top: var(--space-4); margin-bottom: 0; }
.teklif-form-actions .btn { min-width: 160px; }

/* Teklif formu — doğrulama durumları */
.teklif-form input.field-error,
.teklif-form select.field-error,
.teklif-form textarea.field-error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}
.teklif-form input.field-valid,
.teklif-form select.field-valid,
.teklif-form textarea.field-valid {
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}
.teklif-form .teklif-field-error {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: #dc2626;
    font-weight: 500;
}
.teklif-form .teklif-field-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-muted, #64748b);
    min-height: 1.25em;
}
@keyframes teklif-shake {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-6px); }
    30% { transform: translateX(6px); }
    45% { transform: translateX(-4px); }
    60% { transform: translateX(4px); }
    75% { transform: translateX(-2px); }
}
.teklif-form input.shake,
.teklif-form select.shake {
    animation: teklif-shake 0.5s ease-in-out;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.btn-link { color: var(--primary); text-decoration: none; font-weight: 600; transition: color var(--ease); }
.btn-link:hover { color: var(--primary-dark); }

/* ========== FORM — kart stili (üst gradient bar) ========== */
.form-box {
    position: relative;
    max-width: 32rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: var(--space-5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.quote-form .form-row { margin-bottom: var(--space-3); }
.quote-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}
.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="date"],
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--font);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: border-color var(--ease), box-shadow var(--ease);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}
.quote-form textarea { min-height: 7rem; resize: vertical; }
.form-actions { margin-top: var(--space-4); margin-bottom: 0; }

.btn-submit {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font);
    color: white;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition: all var(--ease);
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.4);
}
.btn-submit:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ========== MESAJLAR ========== */
.message {
    padding: var(--space-3);
    margin-bottom: var(--space-3);
    border-radius: var(--radius);
    border: 2px solid;
}
.message-success { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); }
.message-error { background: #fef2f2; border-color: #dc2626; color: #b91c1c; }
.message-warning { background: #fffbeb; border-color: #d97706; color: #b45309; }

.feature-list { margin: var(--space-2) 0 0; padding-left: 1.5rem; }
.feature-list li { margin-bottom: 0.35rem; }
.subheading { margin: var(--space-2) 0 var(--space-1); font-size: 1rem; font-weight: 700; }

.breadcrumb { margin-bottom: var(--space-3); font-size: 0.95rem; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--primary-dark); }

.category-nav p { margin: var(--space-1) 0; }
.empty-message { color: var(--text-muted); font-style: italic; }

/* ========== BLOG — fotoğraflı liste ve tek yazı ========== */
.blog-hero {
    position: relative;
    width: 100%;
    height: 155px;
    min-height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-3);
    overflow: hidden;
}
.blog-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0c4a6e 0%, #0369a1 25%, #0284c7 50%, #0ea5e9 75%, #38bdf8 100%);
    background-size: 400% 400%;
    animation: banner-gradient 12s ease infinite;
}
.blog-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.blog-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.blog-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: banner-float 18s ease-in-out infinite;
}
.blog-hero-shape-1 { width: 90px; height: 90px; left: 10%; top: 20%; animation-delay: 0s; animation-duration: 14s; }
.blog-hero-shape-2 { width: 60px; height: 60px; right: 15%; top: 30%; animation-delay: -3s; animation-duration: 16s; }
.blog-hero-shape-3 { width: 45px; height: 45px; left: 30%; bottom: 15%; animation-delay: -6s; animation-duration: 12s; }
.blog-hero-shape-4 { width: 75px; height: 75px; right: 25%; bottom: 25%; animation-delay: -9s; animation-duration: 20s; }
.blog-hero-shape-5 { width: 38px; height: 38px; left: 50%; top: 50%; animation-delay: -4s; animation-duration: 15s; }
.blog-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.blog-hero-title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.4rem, 3.2vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
    letter-spacing: -0.03em;
}
.blog-hero-intro {
    margin: 0;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 767px) {
    .blog-hero { height: 115px; min-height: 115px; padding: var(--space-3); }
}

.blog-list-wrap .section-block { padding-top: var(--space-5); padding-bottom: var(--space-6); }
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform var(--ease), box-shadow var(--ease);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.blog-card-img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-alt);
}
.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-img-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--border) 0%, var(--bg-alt) 100%);
}
.blog-card-date {
    position: absolute;
    bottom: var(--space-2);
    left: var(--space-2);
    padding: 0.25rem 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--radius);
}
.blog-card-date time { color: inherit; }
.blog-card-body {
    display: block;
    padding: var(--space-4);
}
.blog-card-title {
    margin: 0 0 var(--space-1);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-bold);
    line-height: 1.3;
    letter-spacing: -0.02em;
}
.blog-card:hover .blog-card-title { color: var(--primary); }
.blog-card-author {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-2);
}
.blog-card-excerpt {
    margin: 0 0 var(--space-2);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}
.blog-card-cta {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Blog tek yazı — yeniden tasarım */
.blog-single-page {
    padding-bottom: var(--space-6);
    background: var(--bg);
}
.blog-single-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: var(--space-2) var(--space-3);
}
.blog-single-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
}
.blog-single-bar .breadcrumb {
    margin: 0;
    font-size: 0.9rem;
}
.breadcrumb-sep { color: var(--border); margin: 0 0.25rem; }
.blog-single-back-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.blog-single-back-link:hover { color: var(--primary-dark); text-decoration: underline; }

.blog-single-hero {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(165deg, var(--header-navy) 0%, var(--primary-dark) 100%);
}
.blog-single-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.blog-single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 100%);
}
.blog-single-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-5) var(--space-3);
    text-align: center;
}
.blog-single-hero-title {
    margin: 0 0 var(--space-2);
    font-size: clamp(1.6rem, 4vw, 2.35rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.blog-single-hero-meta {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}
.blog-single-hero-dot { opacity: 0.7; margin: 0 0.25rem; }

.blog-single-body {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-3);
    margin-top: calc(-1 * var(--space-5));
    position: relative;
    z-index: 3;
}
.blog-single-article {
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    overflow: hidden;
    padding: var(--space-5) var(--space-4);
}
@media (min-width: 640px) {
    .blog-single-article { padding: var(--space-6) var(--space-5); }
}
.blog-single-content {
    font-size: 1.06rem;
    line-height: 1.82;
    color: var(--text);
    width: 100%;
    max-width: none;
    margin: 0 0 var(--space-5);
    letter-spacing: 0.015em;
    position: relative;
    padding: var(--space-4) var(--space-3);
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 12%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.blog-single-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 12px 12px 0 0;
}
.blog-single-content > p:first-of-type {
    font-size: 1.14rem;
    line-height: 1.78;
    color: var(--text-bold);
    margin-bottom: 1.6em;
    font-weight: 500;
}
.blog-single-content p {
    margin: 0 0 1.4em;
    text-align: left;
}
.blog-single-content p:last-child { margin-bottom: 0; }
.blog-single-content strong {
    font-weight: 700;
    color: var(--text-bold);
}
.blog-single-content h2,
.blog-single-content h3 {
    margin: 1.6em 0 0.5em;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text-bold);
    line-height: 1.35;
    padding-bottom: 0.25em;
    border-bottom: 1px solid var(--border);
}
.blog-single-content h2:first-child,
.blog-single-content h3:first-child { margin-top: 0; }
.blog-single-content h2 + p,
.blog-single-content h3 + p { margin-top: 0; }
.blog-single-content ul,
.blog-single-content ol {
    margin: 1.1em 0 1.4em;
    padding-left: 1.5em;
}
.blog-single-content li { margin-bottom: 0.4em; }
.blog-single-content blockquote {
    margin: 1.6em 0;
    padding: 1em 1.25rem;
    padding-left: 1.25rem;
    border-left: 3px solid var(--primary);
    background: rgba(2, 132, 199, 0.04);
    border-radius: 0 8px 8px 0;
    color: var(--text);
    font-style: italic;
}
.blog-single-footer {
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
}
.blog-single-footer .btn { min-width: 10rem; }

/* ========== FOOTER ========== */
/* ========== FOOTER — yeniden tasarım (koyu band, ikonlu iletişim) ========== */
.site-footer {
    margin-top: var(--space-6);
    background: var(--header-navy);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', var(--font);
}
.footer-top-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-6) var(--space-3);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
}
.footer-heading {
    margin: 0 0 var(--space-3);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}
.footer-block .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-block .footer-links li { margin: 0.5rem 0; }
.footer-block .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color var(--ease);
}
.footer-block .footer-links a:hover { color: var(--accent); }
.footer-contact .footer-line,
.footer-address .footer-line {
    margin: 0.6rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.9);
}
.footer-contact .footer-line a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color var(--ease);
}
.footer-contact .footer-line a:hover { color: var(--accent); }
.footer-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: var(--accent);
}
.footer-icon svg { width: 18px; height: 18px; display: block; }
.footer-working-hours { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: var(--space-3) var(--space-4);
    text-align: center;
}
.footer-bottom p { margin: 0; font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }
.footer-admin-link { color: rgba(255, 255, 255, 0.85); text-decoration: none; transition: opacity var(--ease); }
.footer-admin-link:hover { color: var(--accent); }

/* ========== CTA İLE FOOTER ARASI — E-bülten bandı (kompakt) ========== */
.newsletter-band {
    width: 100%;
    padding: var(--space-3) var(--space-3);
    background: linear-gradient(165deg, #f8f9fa 0%, #eef0f3 50%, #f8f9fa 100%);
    border-top: 1px solid var(--border);
}
.newsletter-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    max-width: var(--container);
    margin: 0 auto;
}
.newsletter-inner .newsletter-text {
    flex: 1;
    min-width: 180px;
}
.newsletter-title {
    margin: 0 0 0.25rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
}
.newsletter-desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.45;
}
.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    align-items: center;
    flex-shrink: 0;
}
.newsletter-input {
    width: 200px;
    max-width: 100%;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: var(--radius-btn);
    background: var(--surface);
    transition: border-color var(--ease);
}
.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
}
.newsletter-btn { flex-shrink: 0; }
@media (max-width: 767px) {
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { width: 100%; justify-content: center; }
    .newsletter-input { width: 100%; min-width: 0; }
}
@media (max-width: 479px) {
    .newsletter-form { flex-direction: column; }
}

/* ========== HAKKIMIZDA SAYFASI — anasayfa ile uyumlu ========== */
.about-hero {
    position: relative;
    width: 100%;
    height: 155px;
    min-height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-3);
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0c4a6e 0%, #0369a1 25%, #0284c7 50%, #0ea5e9 75%, #38bdf8 100%);
    background-size: 400% 400%;
    animation: banner-gradient 12s ease infinite;
}
.about-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.about-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.about-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: banner-float 18s ease-in-out infinite;
}
.about-hero-shape-1 { width: 90px; height: 90px; left: 10%; top: 20%; animation-delay: 0s; animation-duration: 14s; }
.about-hero-shape-2 { width: 60px; height: 60px; right: 15%; top: 30%; animation-delay: -3s; animation-duration: 16s; }
.about-hero-shape-3 { width: 45px; height: 45px; left: 30%; bottom: 15%; animation-delay: -6s; animation-duration: 12s; }
.about-hero-shape-4 { width: 75px; height: 75px; right: 25%; bottom: 25%; animation-delay: -9s; animation-duration: 20s; }
.about-hero-shape-5 { width: 38px; height: 38px; left: 50%; top: 50%; animation-delay: -4s; animation-duration: 15s; }
.about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.about-hero-title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.4rem, 3.2vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.about-hero-intro {
    margin: 0;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 767px) {
    .about-hero { height: 115px; min-height: 115px; padding: var(--space-3); }
}

.about-sections .section-header-center { margin-bottom: var(--space-5); }
.about-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    align-items: stretch;
}
@media (min-width: 768px) { .about-cards { grid-template-columns: repeat(3, 1fr); } }
.about-card {
    position: relative;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: 16px;
    padding: var(--space-5);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease);
}
.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}
.about-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}
.about-card-1 .about-card-top { background: linear-gradient(90deg, var(--primary), var(--accent)); }
.about-card-2 .about-card-top { background: linear-gradient(90deg, #0369a1, #0ea5e9); }
.about-card-3 .about-card-top { background: linear-gradient(90deg, #0284c7, #38bdf8); }
.about-card-4 .about-card-top { background: linear-gradient(90deg, #0ea5e9, #7dd3fc); }
.about-card-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-3);
}
.about-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: #fff;
    border-radius: 50%;
    transition: transform var(--ease);
}
.about-card-icon svg {
    width: 27px;
    height: 27px;
    display: block;
}
.about-card-1 .about-card-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.about-card-2 .about-card-icon { background: linear-gradient(135deg, #0369a1, #0ea5e9); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.about-card-3 .about-card-icon { background: linear-gradient(135deg, #0284c7, #38bdf8); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.about-card-4 .about-card-icon { background: linear-gradient(135deg, #0ea5e9, #7dd3fc); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.about-card:hover .about-card-icon { transform: scale(1.08); }
.about-card-title {
    margin: 0 0 var(--space-3);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.about-card-body { margin: 0; flex: 1; min-height: 0; }
.about-card-text {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: left;
}

.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
}
.about-cta-buttons .btn { flex-shrink: 0; }

/* Hakkımızda — İstatistik şeridi */
.about-stats-strip {
    position: relative;
    width: 100%;
    padding: var(--space-5) var(--space-3);
    overflow: hidden;
    color: #fff;
}
.about-stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0c4a6e 0%, #0369a1 40%, #0284c7 70%, #0ea5e9 100%);
    background-size: 400% 400%;
    animation: banner-gradient 12s ease infinite;
}
.about-stats-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    text-align: center;
}
@media (min-width: 640px) { .about-stats-inner { grid-template-columns: repeat(4, 1fr); } }
.about-stat-item { margin: 0; }
.about-stat-value {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.about-stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 0.25rem;
}

/* Hakkımızda — Temel değerler (4 kart) */
.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    align-items: stretch;
}
@media (min-width: 640px) { .about-values-grid { grid-template-columns: repeat(4, 1fr); } }
.about-value-card {
    position: relative;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: 16px;
    padding: var(--space-4);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease);
}
.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}
.about-value-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}
.about-value-card-1 .about-value-card-top { background: linear-gradient(90deg, var(--primary), var(--accent)); }
.about-value-card-2 .about-value-card-top { background: linear-gradient(90deg, #0369a1, #0ea5e9); }
.about-value-card-3 .about-value-card-top { background: linear-gradient(90deg, #0284c7, #38bdf8); }
.about-value-card-4 .about-value-card-top { background: linear-gradient(90deg, #0ea5e9, #7dd3fc); }
.about-value-card-title {
    margin: 0 0 var(--space-2);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
}
.about-value-card-desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Hakkımızda — Timeline */
/* Yolculuğumuz — sol: iki katmanlı görsel + bilgi kartı, sağ: timeline */
.about-journey-section .section-block { padding: 0; max-width: 100%; }
.about-journey-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 315px;
    padding: 0 var(--space-3);
}
@media (max-width: 767px) {
    .about-journey-inner { grid-template-columns: 1fr; min-height: 0; }
}
.about-journey-visual {
    position: relative;
    min-height: 270px;
    padding: var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) { .about-journey-visual { min-height: 210px; padding: var(--space-4); } }
.about-journey-frame {
    position: relative;
    width: 85%;
    max-width: 285px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: scale(0.92) translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-journey-visual.in-view .about-journey-frame {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.about-journey-photo {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 120%;
    max-height: 360px;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: journey-photo-zoom 20s ease-in-out infinite alternate;
}
@keyframes journey-photo-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}
.about-journey-frame-glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 200%;
    animation: journey-glow 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}
@keyframes journey-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.about-journey-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
    z-index: 2;
    pointer-events: none;
}
.about-journey-content {
    padding: var(--space-5) var(--space-4);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-journey-title {
    margin: 0 0 var(--space-1);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}
.about-journey-subtitle {
    margin: 0 0 var(--space-4);
    font-size: 1.05rem;
    color: var(--text-muted);
}
.about-timeline {
    max-width: 36rem;
    margin: 0 auto;
}
.about-timeline-inline { max-width: none; margin: 0; }
.about-timeline-item {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: var(--space-4);
    padding-bottom: var(--space-4);
    border-left: 3px solid var(--border);
    margin-left: 1.5rem;
    padding-left: var(--space-4);
    position: relative;
}
.about-timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0.25rem;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--primary);
}
.about-timeline-item:last-child { padding-bottom: 0; }
.about-timeline-year {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}
.about-timeline-content { margin: 0; }
.about-timeline-title {
    margin: 0 0 var(--space-1);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
}
.about-timeline-desc {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Hakkımızda — Takım kartları */
.about-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}
@media (min-width: 640px) { .about-team-grid { grid-template-columns: repeat(3, 1fr); } }
.about-team-card {
    position: relative;
    background: var(--surface);
    border-radius: 16px;
    padding: var(--space-5);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(2, 132, 199, 0.08);
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease);
}
.about-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}
.about-team-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.about-team-avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-3);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.9;
}
.about-team-name {
    margin: 0 0 0.25rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
}
.about-team-role {
    margin: 0 0 var(--space-2);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}
.about-team-bio {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Anasayfa beyaz bölümler — hareketli seyrek arka plan (Güvenin adresi, Nasıl Çalışır) */
.has-animated-bg {
    position: relative;
    overflow: hidden;
}
.has-animated-bg .section-block,
.has-animated-bg .trust-badges-inner {
    position: relative;
    z-index: 1;
}
.section-animated-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.section-animated-bg .float-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.01) 70%, transparent 100%);
    animation: float-shape 18s ease-in-out infinite;
}
.section-animated-bg .float-shape-1 { width: 140px; height: 140px; left: 8%; top: 15%; animation-delay: 0s; animation-duration: 20s; }
.section-animated-bg .float-shape-2 { width: 90px; height: 90px; right: 12%; top: 25%; animation-delay: -4s; animation-duration: 22s; }
.section-animated-bg .float-shape-3 { width: 110px; height: 110px; left: 25%; bottom: 20%; animation-delay: -8s; animation-duration: 16s; }
.section-animated-bg .float-shape-4 { width: 70px; height: 70px; right: 20%; bottom: 30%; animation-delay: -2s; animation-duration: 24s; }
.section-animated-bg .float-shape-5 { width: 55px; height: 55px; left: 50%; top: 40%; animation-delay: -6s; animation-duration: 19s; }
.section-animated-bg .float-shape-6 { width: 85px; height: 85px; right: 35%; top: 60%; animation-delay: -11s; animation-duration: 21s; }
@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    25% { transform: translate(15px, -20px) scale(1.05); opacity: 0.9; }
    50% { transform: translate(-10px, 12px) scale(0.95); opacity: 0.6; }
    75% { transform: translate(-18px, -8px) scale(1.02); opacity: 0.8; }
}

/* Hakkımızda — Müşteri yorumları (bölüm Hakkımızda'dan kaldırıldı, stiller diğer sayfalarda kullanılabilir) */
.about-testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}
@media (min-width: 768px) { .about-testimonials { grid-template-columns: repeat(3, 1fr); } }
.about-testimonial-card {
    margin: 0;
    padding: var(--space-4);
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.about-testimonial-quote {
    margin: 0 0 var(--space-2);
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.6;
    font-style: italic;
}
.about-testimonial-author {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: normal;
}

/* Hakkımızda — SSS */
.about-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-faq-item {
    background: var(--surface);
    border-radius: 16px;
    margin-bottom: var(--space-3);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.about-faq-soru {
    margin: 0;
    padding: var(--space-4);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.about-faq-cevap {
    margin: 0;
    padding: var(--space-4);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Hakkımızda — Anlaşmalı şirketler */
.about-partners-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    align-items: stretch;
}
@media (min-width: 640px) { .about-partners-list { grid-template-columns: repeat(2, 1fr); } }
.about-partner-card {
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: 16px;
    padding: var(--space-4);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.about-partner-name {
    margin: 0 0 var(--space-1);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
}
.about-partner-desc {
    margin: 0;
    flex: 1;
    min-height: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Hakkımızda — Bize ulaşın kutusu */
.about-contact-box {
    position: relative;
    max-width: 28rem;
    margin: 0 auto;
    background: var(--surface);
    border-radius: 16px;
    padding: var(--space-5);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(2, 132, 199, 0.08);
    overflow: hidden;
}
.about-contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.about-contact-line {
    margin: 0.5rem 0;
    font-size: 1.05rem;
}
.about-contact-line a { color: var(--primary); text-decoration: none; font-weight: 600; }
.about-contact-line a:hover { color: var(--primary-dark); }
.about-contact-box .btn { margin-top: var(--space-3); }

.page-404 { text-align: center; padding: var(--space-6) var(--space-4); }
.page-404 .page-heading { font-size: 2rem; margin-bottom: var(--space-2); }
.page-404 .page-intro { margin-bottom: var(--space-4); }

@media print {
    .site-header::before, .skip-link, .main-nav, .btn { display: none !important; }
    .site-footer { box-shadow: none; }
}
