/* =============================================================================
   ALFA VİDANJÖR — Kurumsal Tasarım Sistemi (Design System)
   Tek kaynak, statik olarak servis edilir. Build adımı gerektirmez.
   Font: Outfit (başlıklar) + Plus Jakarta Sans (metin)
   Palet: Emerald + Slate  •  8px modüler ritim
   ============================================================================= */

/* ------------------------------------------------------------------ Tokens */
:root {
    /* Marka — Emerald */
    --primary-emerald:        #059669;
    --primary-emerald-accent: #10B981;
    --primary-emerald-hover:  #047857;
    --primary-emerald-deep:   #064E3B;
    --accent-mint:            #00D26A;
    --accent-amber:           #F59E0B;
    --accent-red:             #EF4444;

    /* Geriye dönük takma adlar (eski view'larla uyum) */
    --primary-dark:   #047857;
    --primary-deep:   #064E3B;
    --primary-bright: #10B981;

    /* Yüzeyler */
    --bg-body:         #F6F8FB;
    --bg-surface:      #FFFFFF;
    --bg-surface-body: #F6F8FB;
    --bg-mint-soft:    #ECFDF5;
    --bg-mint-light:   #D1FAE5;
    --bg-emerald-soft: #ECFDF5;
    --bg-ink:          #0B1320;
    --glass-surface:   rgba(255, 255, 255, 0.72);

    /* Metin */
    --text-heading:        #0B1320;
    --text-body:           #3B475A;
    --text-muted:          #5B6675;
    --color-slate-heading: #0B1320;
    --color-slate-body:    #3B475A;
    --color-slate-muted:   #5B6675;

    /* Kenarlıklar */
    --border-color:       #E4E9F0;
    --border-hover:       #6EE7B7;
    --glass-border:       rgba(5, 150, 105, 0.14);
    --color-slate-border: #E4E9F0;

    /* Tipografi */
    --font-main:    'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --font-sans:    'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --font-head:    'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

    /* Yarıçap */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 22px;
    --radius-pill: 999px;

    /* Gölge — katmanlı, düşük opaklık (kurumsal) */
    --shadow-sm:      0 1px 2px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-subtle:  0 1px 2px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-card:    0 2px 4px rgba(15, 23, 42, 0.04), 0 12px 28px -12px rgba(15, 23, 42, 0.12);
    --shadow-hover:   0 8px 16px rgba(5, 150, 105, 0.10), 0 24px 44px -16px rgba(5, 150, 105, 0.28);
    --shadow-primary: 0 8px 20px -6px rgba(5, 150, 105, 0.42);
    --glass-shadow:   0 10px 40px -12px rgba(5, 150, 105, 0.14);

    /* Ritim (8px ölçek) */
    --space-xs: 0.5rem;   --space-sm: 1rem;    --space-md: 1.5rem;
    --space-lg: 2rem;     --space-xl: 3rem;    --space-xxl: 5rem;

    --header-h: 66px;
    --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    font-size: 15.5px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea, button { font-family: inherit; font-size: 100%; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--text-heading); line-height: 1.2; font-weight: 800; }
::selection { background: var(--bg-mint-light); color: var(--primary-emerald-deep); }

/* --------------------------------------------------------------- A11y core */
.skip-link {
    position: absolute; left: 12px; top: -60px; z-index: 2000;
    background: var(--primary-emerald-deep); color: #fff;
    padding: 10px 18px; border-radius: var(--radius-sm); font-weight: 700;
    transition: top var(--transition); text-decoration: none;
}
.skip-link:focus { top: 12px; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible {
    outline: 3px solid rgba(5, 150, 105, 0.55);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ------------------------------------------------------------ Layout utils */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-tight { padding: 40px 0 64px; }
.bg-surface { background: var(--bg-surface); }
.bg-body { background: var(--bg-body); }
.bordered-y { border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }

.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
    display: inline-block; color: var(--primary-emerald-hover); /* AA contrast on white/mint */
    font-family: var(--font-head); font-weight: 800; font-size: 0.78rem;
    letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-head); font-size: clamp(1.7rem, 3.2vw, 2.15rem);
    font-weight: 800; letter-spacing: -0.5px; color: var(--text-heading);
    margin-bottom: 12px;
}
.section-sub { color: var(--text-body); font-size: 1rem; line-height: 1.65; }

/* Responsive grids — sınıf tabanlı (inline stil ile çatışmaz) */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 36px; align-items: start; }
.split.wide { grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.media-row { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; align-items: center; }

/* ---------------------------------------------------------------- Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-head); font-weight: 800; font-size: 0.92rem;
    line-height: 1; text-decoration: none; white-space: nowrap;
    padding: 13px 24px; border: 1px solid transparent; border-radius: var(--radius-md);
    cursor: pointer; transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
    background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--primary-emerald-hover) 100%);
    color: #fff; box-shadow: var(--shadow-primary);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(5, 150, 105, 0.5); }
.btn-secondary {
    background: var(--bg-surface); color: var(--text-heading); border-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { transform: translateY(-2px); border-color: var(--border-hover); box-shadow: var(--shadow-card); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.5); }
.btn-wa:hover { transform: translateY(-2px); background: #1FBE5B; }
.btn-ghost { background: transparent; color: var(--primary-emerald); }
.btn-ghost:hover { background: var(--bg-mint-soft); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:active { transform: translateY(0); }

.link-arrow {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary-emerald-hover); font-weight: 700; font-size: 0.9rem; text-decoration: none;
}
.link-arrow::after { content: '→'; transition: transform var(--transition); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------------------------------------------------------- Badges / pills */
.badge-premium {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-surface); border: 1px solid rgba(5, 150, 105, 0.18);
    color: var(--primary-emerald-deep); padding: 8px 16px; border-radius: var(--radius-pill);
    font-size: 0.78rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.08);
}
.badge-premium .dot, .live-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--primary-emerald-accent);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); animation: pulse-dot 2s infinite; flex-shrink: 0;
}
@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
    70%  { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.pill {
    display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700;
    padding: 4px 11px; border-radius: var(--radius-pill);
    background: var(--bg-mint-soft); color: var(--primary-emerald-hover); border: 1px solid var(--bg-mint-light);
    white-space: nowrap;
}
.chip {
    display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600;
    padding: 6px 12px; border-radius: var(--radius-pill);
    background: var(--bg-body); color: var(--text-body); border: 1px solid var(--border-color); text-decoration: none;
    transition: all var(--transition);
}
.chip:hover { border-color: var(--border-hover); color: var(--primary-emerald-hover); background: var(--bg-mint-soft); }

/* ------------------------------------------------------------ Glass panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-xl);
}

/* --------------------------------------------------------- Announcement bar */
.top-ticker-bar {
    background: linear-gradient(90deg, var(--primary-emerald-deep) 0%, var(--primary-emerald-hover) 100%);
    color: #fff; padding: 8px 0; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.3px; overflow: hidden; white-space: nowrap;
}
.ticker-mask { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; padding-right: 48px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------- Header */
.site-header {
    position: sticky; top: 0; z-index: 1060; /* > mobile drawer (1050) so hamburger/X stays tappable */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px) saturate(180%); -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.035);
}
.header-flex { display: flex; align-items: center; gap: 20px; min-height: var(--header-h); }

.brand-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.brand-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--primary-emerald-deep) 100%);
    border-radius: 11px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.5px;
    box-shadow: var(--shadow-primary);
}
.brand-text { font-family: var(--font-head); font-size: 1.28rem; font-weight: 800; color: var(--text-heading); letter-spacing: -0.6px; white-space: nowrap; line-height: 1; }
.brand-text span { color: var(--primary-emerald); }
.brand-tag {
    font-size: 0.66rem; background: var(--bg-mint-soft); color: var(--primary-emerald-hover);
    padding: 3px 8px; border-radius: 6px; font-weight: 800; border: 1px solid var(--bg-mint-light);
    white-space: nowrap; text-transform: uppercase; letter-spacing: 0.4px;
}

/* Nav */
.nav-menu { display: flex; gap: 6px; list-style: none; align-items: center; margin: 0 auto; }
.nav-item { position: relative; }
.nav-link {
    color: var(--text-body); text-decoration: none; font-weight: 600; font-size: 0.92rem;
    white-space: nowrap; padding: 9px 14px; border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; gap: 5px; transition: all var(--transition);
}
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--primary-emerald-hover); background: var(--bg-mint-soft); }
.nav-link .caret { font-size: 0.62rem; opacity: 0.7; transition: transform var(--transition); }
.nav-item:hover .caret { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px);
    background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    box-shadow: 0 20px 44px -12px rgba(15, 23, 42, 0.18); padding: 12px; width: 340px;
    opacity: 0; visibility: hidden; transition: all var(--transition); z-index: 1001;
}
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-item:focus-within .caret { transform: rotate(180deg); }
.dropdown-grid { display: flex; flex-direction: column; gap: 4px; }
.dropdown-item {
    display: flex; align-items: center; gap: 12px; padding: 11px; border-radius: var(--radius-sm);
    text-decoration: none; color: var(--text-heading); transition: background var(--transition);
}
.dropdown-item:hover { background: var(--bg-mint-soft); }
.dropdown-icon {
    font-size: 1.15rem; width: 38px; height: 38px; flex-shrink: 0; background: var(--bg-mint-soft);
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
}
.dropdown-title { font-weight: 700; font-size: 0.88rem; display: block; line-height: 1.3; }
.dropdown-sub { font-size: 0.75rem; color: var(--text-muted); display: block; }

.btn-call-header {
    background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--primary-emerald-hover) 100%);
    color: #fff; padding: 11px 18px; border-radius: var(--radius-md);
    font-weight: 800; font-size: 0.88rem; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; flex-shrink: 0;
    box-shadow: var(--shadow-primary); transition: all var(--transition); font-family: var(--font-head);
}
.btn-call-header:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(5, 150, 105, 0.5); }
.btn-call-header svg { width: 15px; height: 15px; }

/* Hamburger */
.hamburger-btn {
    display: none; background: #fff; border: 1px solid var(--border-color);
    border-radius: 11px; width: 44px; height: 44px; align-items: center; justify-content: center;
    position: relative; z-index: 1100; flex-shrink: 0;
}
.hamb-svg { width: 22px; height: 22px; }
.hamb-svg line { stroke: var(--text-heading); stroke-width: 2.5; stroke-linecap: round; transition: all var(--transition); transform-origin: center; }
.hamburger-btn.is-active .line-top { transform: translateY(5px) rotate(45deg); stroke: var(--primary-emerald); }
.hamburger-btn.is-active .line-mid { opacity: 0; transform: scaleX(0); }
.hamburger-btn.is-active .line-bot { transform: translateY(-5px) rotate(-45deg); stroke: var(--primary-emerald); }

/* Mobile drawer */
.mobile-drawer {
    position: fixed; inset: 0; background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    z-index: 1050; padding: calc(var(--header-h) + 26px) 24px 30px; overflow-y: auto;
    display: flex; flex-direction: column;
    transform: translateY(-102%); opacity: 0; visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease, visibility 0.4s;
}
.mobile-drawer.is-active { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-nav-list a {
    color: var(--text-heading); font-family: var(--font-head); font-size: 1.12rem; font-weight: 700;
    text-decoration: none; display: flex; justify-content: space-between; align-items: center;
    padding: 15px 4px; border-bottom: 1px solid var(--border-color);
}
.mobile-nav-list a span { color: var(--primary-emerald); }
.mobile-drawer-cta { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }

/* Mobile bottom dock */
.mobile-bottom-dock {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-color);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); z-index: 999;
    box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.08);
}
.dock-button-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dock-btn {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    font-family: var(--font-head); font-weight: 800; font-size: 0.86rem; padding: 12px; border-radius: var(--radius-md);
    text-decoration: none; color: #fff;
}
.dock-btn-call { background: linear-gradient(135deg, var(--primary-emerald-hover) 0%, var(--primary-emerald) 100%); box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3); }
.dock-btn-wa { background: #25D366; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3); }

/* ------------------------------------------------------------------- Hero */
.hero-premium {
    position: relative;
    padding: 84px 0 76px;
    background: radial-gradient(120% 120% at 15% 0%, var(--bg-mint-soft) 0%, #ffffff 46%, var(--bg-body) 100%);
    overflow: hidden; border-bottom: 1px solid var(--border-color);
}
.hero-premium::before {
    content: ''; position: absolute; top: -45%; right: -12%; width: 720px; height: 720px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.10) 0%, rgba(255,255,255,0) 68%);
    border-radius: 50%; z-index: 0; pointer-events: none;
}
.hero-premium::after {
    content: ''; position: absolute; bottom: -30%; left: -10%; width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, rgba(255,255,255,0) 68%);
    border-radius: 50%; z-index: 0; pointer-events: none;
}
.hero-content-wrapper { position: relative; z-index: 2; }
/* Interior page heroes: tighter rhythm (beats single-class .hero-premium padding) */
.hero-premium.section-tight { padding: 46px 0 40px; }

.hero-title {
    font-family: var(--font-head); font-size: clamp(2.2rem, 4.6vw, 3.5rem);
    font-weight: 800; line-height: 1.08; letter-spacing: -1.2px;
    color: var(--text-heading); margin-bottom: 18px;
}
.hero-title .highlight {
    background: linear-gradient(120deg, var(--primary-emerald-deep) 0%, var(--primary-emerald-accent) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
    display: inline-block;
}
.hero-description {
    font-size: clamp(1rem, 1.6vw, 1.12rem); color: var(--text-body); line-height: 1.7; max-width: 620px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 20px; }

/* Elegant tappable phone line under hero CTAs (trust + extra call conversion point) */
.hero-phone-line { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin: 0 0 34px; -webkit-tap-highlight-color: transparent; }
.hero-phone-line .hp-ic {
    width: 44px; height: 44px; flex: none; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--bg-mint-soft); color: var(--primary-emerald-deep);
    box-shadow: 0 6px 16px -8px rgba(5, 150, 105, 0.5); transition: transform 0.18s ease;
}
.hero-phone-line .hp-ic svg { width: 19px; height: 19px; }
.hero-phone-line:hover .hp-ic { transform: translateY(-2px); }
.hero-phone-line .hp-txt { display: flex; flex-direction: column; line-height: 1.12; }
.hero-phone-line .hp-num { font-family: var(--font-head); font-weight: 800; font-size: 1.28rem; color: var(--text-heading); letter-spacing: 0.2px; }
.hero-phone-line .hp-lbl { font-size: 0.7rem; font-weight: 700; color: var(--primary-emerald-hover); text-transform: uppercase; letter-spacing: 0.7px; margin-top: 3px; }

/* İstatistik şeridi */
.stat-strip {
    display: flex; align-items: center; gap: 8px; padding: 22px 26px;
    border-left: 4px solid var(--primary-emerald);
}
.stat-cell { display: flex; flex-direction: column; flex: 1; }
.stat-num { font-family: var(--font-head); font-size: 1.85rem; font-weight: 800; color: var(--primary-emerald-deep); line-height: 1; }
.stat-num small { font-size: 1.05rem; font-weight: 700; }
.stat-label { font-size: 0.76rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px; }
.stat-div { width: 1px; height: 42px; background: var(--border-color); flex-shrink: 0; }

/* ------------------------------------------------------------------- Cards */
.card {
    background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex; flex-direction: column; overflow: hidden;
}
/* .card is display:flex; when combined with .media-row it must win back the grid */
.card.media-row { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; align-items: center; }
.card-pad { padding: 26px; }
.card-hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--border-hover); }
.card-media { width: 100%; height: 200px; object-fit: cover; display: block; background: var(--bg-mint-soft); }
.card-title { font-family: var(--font-head); font-size: 1.18rem; font-weight: 800; color: var(--text-heading); margin-bottom: 10px; line-height: 1.3; }
.card-text { color: var(--text-body); font-size: 0.92rem; line-height: 1.6; flex-grow: 1; }

.icon-tile {
    width: 52px; height: 52px; flex-shrink: 0; background: var(--bg-mint-soft);
    border: 1px solid var(--bg-mint-light); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px;
}

/* Servis kartı (ana sayfa) */
.service-card { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-card); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--border-hover); }

/* --------------------------------------------------------------- Feature list */
.feature-grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feature-grid li {
    background: var(--bg-mint-soft); padding: 11px 14px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 0.86rem; color: var(--primary-emerald-hover);
    display: flex; align-items: center; gap: 9px;
}
.feature-grid li::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; background: var(--primary-emerald); color: #fff; border-radius: 50%; font-size: 0.7rem; flex-shrink: 0; }

/* --------------------------------------------------------------- Breadcrumb */
.breadcrumb { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 22px; font-weight: 600; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb a { color: var(--primary-emerald-hover); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--border-color); }
.breadcrumb .current { color: var(--text-heading); }

/* ------------------------------------------------------------------ Forms */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; font-size: 0.84rem; color: var(--text-heading); }
.input, .select, .textarea {
    width: 100%; padding: 13px 15px; background: var(--bg-surface);
    border: 1px solid var(--border-color); border-radius: var(--radius-md);
    font-size: 0.95rem; color: var(--text-heading); outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.input::placeholder, .textarea::placeholder { color: var(--text-muted); }
.input:focus, .select:focus, .textarea:focus { border-color: var(--primary-emerald); box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.13); }
.select { appearance: none; cursor: pointer;
    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='%235B6675' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px;
}
.textarea { resize: vertical; min-height: 90px; }
.form-note { text-align: center; font-size: 0.76rem; color: var(--text-muted); }

.alert-success {
    background: var(--bg-mint-soft); border: 1px solid var(--bg-mint-light);
    border-left: 4px solid var(--primary-emerald); color: var(--primary-emerald-deep);
    padding: 14px 18px; border-radius: var(--radius-md); font-weight: 700;
}

/* --------------------------------------------------------------- Testimonials */
.review-card { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 14px; }
.stars { color: #F59E0B; font-size: 0.95rem; letter-spacing: 2px; }
.review-text { color: var(--text-body); font-size: 0.94rem; line-height: 1.65; flex-grow: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--primary-emerald-deep) 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; flex-shrink: 0; }
.review-name { font-weight: 800; font-size: 0.9rem; color: var(--text-heading); }
.review-role { font-size: 0.78rem; color: var(--text-muted); }

/* ------------------------------------------------------------------- Table */
.spec-table-wrap { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow-x: auto; box-shadow: var(--shadow-card); }
.spec-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.9rem; min-width: 640px; }
.spec-table thead tr { background: var(--bg-mint-soft); color: var(--primary-emerald-deep); font-family: var(--font-head); font-weight: 800; }
.spec-table th, .spec-table td { padding: 15px 20px; border-bottom: 1px solid var(--border-color); }
.spec-table tbody tr:last-child td { border-bottom: none; }
.spec-table tbody tr:hover { background: var(--bg-mint-soft); }

/* ------------------------------------------------------------- CTA banner */
.cta-band {
    background: var(--bg-mint-soft); border: 1px solid var(--bg-mint-light);
    border-radius: var(--radius-lg); padding: 24px; text-align: center;
}
.cta-dark {
    background: linear-gradient(135deg, var(--primary-emerald-deep) 0%, #0b3d2e 100%);
    color: #fff; border-radius: var(--radius-xl); padding: 40px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-dark h2, .cta-dark h3 { color: #fff; }

/* ------------------------------------------------------------------ Footer */
.site-footer { background: var(--bg-ink); color: #9AA7B8; padding: 56px 0 26px; font-size: 0.88rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 34px; margin-bottom: 40px; }
.footer-heading { color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.02rem; margin-bottom: 16px; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: #9AA7B8; text-decoration: none; transition: color var(--transition); }
.footer-nav a:hover { color: #fff; }
.footer-lead { font-size: 0.86rem; line-height: 1.7; margin-bottom: 16px; color: #9AA7B8; }
.footer-contact p { margin-bottom: 9px; }
.footer-contact a { color: var(--primary-emerald-accent); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.8rem; color: #8A98AC; }

/* --------------------------------------------------------------- Pager */
.pager { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center; list-style: none; }
.pager a, .pager span {
    display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px;
    padding: 0 14px; border-radius: var(--radius-md); border: 1px solid var(--border-color);
    background: var(--bg-surface); color: var(--text-heading); text-decoration: none; font-weight: 700; font-size: 0.9rem;
    transition: all var(--transition);
}
.pager a:hover { border-color: var(--border-hover); background: var(--bg-mint-soft); color: var(--primary-emerald-hover); }
.pager .is-active span { background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--primary-emerald-hover) 100%); color: #fff; border-color: transparent; box-shadow: var(--shadow-primary); }
.pager .is-disabled span { opacity: 0.45; cursor: not-allowed; }

/* ----------------------------------------------------------- Helpers */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.divider { height: 1px; background: var(--border-color); border: 0; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .nav-menu, .site-header .btn-call-header { display: none; }
    .hamburger-btn { display: flex; }
    .mobile-bottom-dock { display: block; }
    body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}

@media (max-width: 768px) {
    .section { padding: 52px 0; }
    .section-sm { padding: 40px 0; }
    .hero-premium { padding: 30px 0 40px; }
    .hero-title { font-size: 1.98rem; line-height: 1.14; letter-spacing: -0.5px; margin-bottom: 14px; }
    .hero-description { font-size: 1rem; line-height: 1.6; margin-bottom: 4px; }
    .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr; gap: 18px; }
    .split, .split.wide, .media-row, .card.media-row { grid-template-columns: 1fr; gap: 22px; }
    .chip { padding: 10px 14px; } /* comfortable touch target on mobile */
    .hero-actions { flex-direction: column; margin: 18px 0 16px; }
    .hero-actions .btn { width: 100%; }
    .hero-phone-line { margin: 2px 0 26px; }
    .hero-phone-line .hp-num { font-size: 1.2rem; }
    .stat-strip { padding: 18px; gap: 4px; }
    .stat-num { font-size: 1.5rem; }
    .stat-label { font-size: 0.68rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .section-head { margin-bottom: 32px; }
    .cta-dark { padding: 28px 20px; }
    .hero-premium::before, .hero-premium::after { display: none; }
}

@media (max-width: 560px) {
    .container { padding: 0 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .stat-div { display: none; }
    .stat-strip { flex-wrap: wrap; }
    .stat-cell { flex-basis: 30%; }
}

/* --------------------------------------------------------- Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .ticker-mask { animation: none; }
}
