/* İşlem Tamam — Kurumsal tema */
:root {
    --bg: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-muted: #f1f5f9;
    --bg-elevated: #ffffff;
    --text: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --primary: #C8102E;
    --primary-dark: #9E0C24;
    --primary-light: #E01A3A;
    --primary-soft: #FDF0F2;
    --primary-border: #F2C4CD;
    --primary-rgb: 200, 16, 46;
    --accent: #9E0C24;
    --success: #059669;
    --warning-bg: #fffbeb;
    --warning-border: #fcd34d;
    --warning-text: #92400e;
    --error-bg: #FDF0F2;
    --error-border: #F2C4CD;
    --error-text: #9E0C24;
    --success-bg: #ecfdf5;
    --success-border: #6ee7b7;
    --success-text: #047857;
    --whatsapp: #25d366;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 4px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.12);
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --font: "Plus Jakarta Sans", system-ui, sans-serif;
    --header-h: 88px;
    --logo-h: 52px;
    --logo-max-w: 300px;
    --topbar-h: 40px;
    --container: min(1180px, 92vw);
    --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-secondary);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--primary-light); }

.container { width: var(--container); margin-inline: auto; }

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* Top bar */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
}
.top-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    min-height: var(--topbar-h);
}
.top-bar__left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}
.top-bar__right {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}
.top-bar__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.top-bar__item a {
    color: #fff;
    font-weight: 500;
}
.top-bar__item a:hover { color: rgba(255, 255, 255, 0.75); }
.top-bar__dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.site-header.is-scrolled {
    box-shadow: var(--shadow);
}
.site-header:has(.nav-item--dropdown:hover),
.site-header:has(.nav-item--dropdown.is-open) {
    z-index: 500;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1.5rem;
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}
.logo:hover { opacity: 0.92; }
.logo__img {
    display: block;
    width: auto;
    height: var(--logo-h);
    max-width: min(var(--logo-max-w), 62vw);
    object-fit: contain;
    object-position: left center;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    display: block;
    padding: 0.55rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}
.nav-link:hover {
    color: var(--primary);
    background: var(--primary-soft);
}
.nav-link.is-active {
    color: var(--primary);
    background: var(--primary-soft);
}
.nav-link--cta {
    margin-left: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3);
}
.nav-link--cta:hover {
    background: var(--primary-dark);
    color: #fff !important;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.25);
}
.btn--primary:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.35);
}
.btn--ghost {
    background: #fff;
    color: var(--primary);
    border: 1.5px solid var(--border-strong);
}
.btn--ghost:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--primary-dark);
}
.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}
.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { color: #fff; filter: brightness(1.05); }
.btn--lg { padding: 0.9rem 1.85rem; font-size: 1rem; }
.btn--block { width: 100%; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid var(--primary-border);
    border-radius: 999px;
    margin-bottom: 1.25rem;
}
.badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.text-gradient {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: unset;
}

/* Hero */
.hero {
    padding: 4rem 0 0;
    background: linear-gradient(180deg, var(--primary-soft) 0%, var(--bg) 55%);
    border-bottom: 1px solid var(--border);
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
    padding-bottom: 4rem;
}
.hero__title {
    font-size: clamp(2.1rem, 4.2vw, 3.15rem);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 1.25rem;
    letter-spacing: -0.03em;
    color: var(--text);
}
.hero__lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin: 0 0 2rem;
    max-width: 34rem;
    line-height: 1.7;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}
.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.hero__stats li {
    padding: 1.25rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.hero__stats strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.hero__stats span {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
}

.hero__visual {
    position: relative;
}
.hero-panel {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.hero-panel__head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    background: var(--bg-muted);
    border-bottom: 1px solid var(--border);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
}
.hero-panel__dots {
    display: flex;
    gap: 5px;
}
.hero-panel__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-strong);
}
.hero-panel__dots span:first-child { background: #f87171; }
.hero-panel__dots span:nth-child(2) { background: #fbbf24; }
.hero-panel__dots span:nth-child(3) { background: #4ade80; }
.hero-panel__body { padding: 1.5rem; }
.hero-service {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 0.85rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.hero-service:last-child { margin-bottom: 0; }
.hero-service:hover {
    border-color: var(--primary-border);
    box-shadow: var(--shadow);
}
.hero-service__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    border-radius: var(--radius);
    color: var(--primary);
}
.hero-service__icon svg { width: 24px; height: 24px; }
.hero-service h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.hero-service p {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Trust bar */
.trust-bar {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}
.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.trust-item__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
}
.trust-item__icon svg { width: 22px; height: 22px; }
.trust-item strong {
    font-size: 0.9375rem;
    color: var(--text);
    font-weight: 700;
}
.trust-item span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Sections */
.section {
    padding: 5.5rem 0;
    background: var(--bg);
}
.section--alt {
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.section-header {
    margin-bottom: 3.5rem;
    max-width: 40rem;
}
.section-header--center {
    text-align: center;
    margin-inline: auto;
    max-width: 42rem;
}
.section-header h2 {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 800;
    margin: 0.65rem 0;
    letter-spacing: -0.025em;
    color: var(--text);
    line-height: 1.2;
}
.section-header p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.0625rem;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

/* Service cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.service-card__media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-muted);
}
.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.service-card:hover .service-card__media img {
    transform: scale(1.04);
}
.service-card__media .service-card__badge {
    top: 1rem;
    right: 1rem;
}
.service-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.75rem 2rem 2.25rem;
}
.service-card__body .service-card__icon {
    margin-bottom: 1.25rem;
}

.service-card:hover {
    border-color: var(--primary-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.service-card--featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.service-card--featured .service-card__media::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}
.service-card__badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.65rem;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
}
.service-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    padding: 14px;
    background: var(--primary-soft);
    border-radius: var(--radius-md);
    color: var(--primary);
}
.service-card h3 {
    margin: 0 0 0.85rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0 0 1.25rem;
    flex-grow: 1;
}
.service-card__list {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.service-card__list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--bg-muted);
}
.service-card__list li:last-child { border-bottom: none; }
.service-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}
.link-arrow {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--primary);
    margin-top: auto;
}
.link-arrow::after { content: " →"; }

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.feature {
    padding: 2rem 1.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.feature:hover { box-shadow: var(--shadow); }
.feature__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
    font-weight: 800;
    color: #fff;
    background: var(--primary);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.feature h3 {
    margin: 0 0 0.65rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
}
.feature p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 4.5rem 0;
    color: #fff;
}
.cta-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.cta-band h2 {
    margin: 0 0 0.5rem;
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.0625rem;
    max-width: 28rem;
}
.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}
.cta-band .btn--primary {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: var(--shadow);
}
.cta-band .btn--primary:hover {
    background: var(--bg-subtle);
    color: var(--primary-dark);
}

/* Page hero */
.page-hero {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, var(--primary-soft) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
}
.page-hero--accent {
    background: linear-gradient(180deg, #dbeafe 0%, var(--bg) 100%);
}
.page-hero h1 {
    margin: 0.75rem 0;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
}
.page-hero__lead {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0;
    line-height: 1.7;
}
.breadcrumb {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.breadcrumb a { color: var(--text-muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--border-strong); margin: 0 0.35rem; }

/* Content pages */
.content-split {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3.5rem;
    align-items: start;
}
.content-main h2 {
    margin: 2.5rem 0 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--text-muted); }
.check-list, .process-list { color: var(--text-secondary); }
.check-list { list-style: none; padding: 0; }
.check-list li {
    padding: 0.65rem 0 0.65rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--success);
    border-radius: 50%;
}
.process-list { padding-left: 1.25rem; }
.process-list li { margin-bottom: 1rem; padding-left: 0.5rem; }
.process-list strong { color: var(--text); }

.sidebar-card {
    position: sticky;
    top: calc(var(--header-h) + var(--topbar-h) + 1.5rem);
    padding: 2rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.sidebar-card--accent {
    border-color: var(--primary-border);
    border-top: 4px solid var(--primary);
}
.sidebar-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}
.sidebar-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}
.sidebar-card .btn { margin-top: 0.65rem; }
.sidebar-card hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.5rem 0;
}
.sidebar-note {
    font-size: 0.8125rem;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.55;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    border-left: 4px solid;
}
.alert--warning {
    background: var(--warning-bg);
    border-color: #f59e0b;
    color: var(--warning-text);
}
.alert--success {
    background: var(--success-bg);
    border-color: var(--success);
    color: var(--success-text);
}
.alert--error {
    background: var(--error-bg);
    border-color: var(--primary);
    color: var(--error-text);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 3rem;
    align-items: start;
}
.contact-details {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.contact-details__row {
    display: grid;
    grid-template-columns: 9.5rem 1fr;
    gap: 0.75rem 1.25rem;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    align-items: start;
}
.contact-details__row:last-child {
    border-bottom: none;
}
.contact-details__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    line-height: 1.5;
    padding-top: 0.15rem;
}
.contact-details__value {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}
.contact-details__value a {
    color: var(--text);
    text-decoration: none;
}
.contact-details__value a:hover {
    color: var(--primary);
}
.contact-details__value em {
    font-weight: 500;
    color: var(--text-muted);
    font-style: normal;
    font-size: 0.9375rem;
}
@media (max-width: 520px) {
    .contact-details__row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}
.contact-hours {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.contact-hours strong { color: var(--text); }

.contact-form-wrap {
    padding: 2.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form-wrap h2 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
}
.contact-form-wrap > p {
    margin: 0 0 1.75rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    color: var(--text);
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}
.form-row textarea { resize: vertical; min-height: 130px; }

/* Data recovery — ücretsiz ön analiz */
.dr-analysis__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
}
.dr-analysis__intro h2 {
    margin: 0.35rem 0 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
}
.dr-analysis__intro > p { margin: 0 0 1.25rem; }
.dr-analysis__phone {
    margin: 1.5rem 0 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.dr-analysis__phone a { font-weight: 600; color: var(--primary); }
.dr-analysis__form-wrap {
    padding: 2rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.dr-analysis__form-wrap .contact-form { margin: 0; }
.dr-analysis__form-wrap .alert { margin-bottom: 1.25rem; }
.cta-inline { margin: 1.25rem 0 0; }
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding: 1rem 1.25rem;
    margin: 0 0 1.5rem;
    background: var(--primary-soft);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.trust-strip span { white-space: nowrap; }
.trust-strip strong { color: var(--primary-dark); }
@media (max-width: 900px) {
    .dr-analysis__grid { grid-template-columns: 1fr; }
    .trust-strip { flex-direction: column; gap: 0.5rem; }
}

/* Footer */
.site-footer {
    margin-top: auto;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.75);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
}
.footer-legal {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
}
.company-details {
    padding: 1.25rem 1.5rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.65;
}
.company-details p { margin: 0; }
.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    max-width: 24rem;
    line-height: 1.65;
    margin-top: 1rem;
}
.footer-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 1.25rem;
    font-weight: 700;
}
.footer-links, .footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li, .footer-contact li { margin-bottom: 0.65rem; }
.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}
.footer-links a:hover, .footer-contact a:hover { color: #F4A8B5; }
.footer-contact li:not(:has(a)) { color: rgba(255, 255, 255, 0.75); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.35rem 0;
}
.footer-bottom__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
}
.footer-bottom p { margin: 0; }
.logo--footer:hover { opacity: 0.95; }
.logo--footer .logo__img {
    height: 48px;
    max-width: 280px;
    padding: 0.45rem 0.85rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-sizing: content-box;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.06);
    color: #fff;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero__visual { max-width: 520px; margin-inline: auto; }
    .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .content-split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .sidebar-card { position: static; }
}

@media (max-width: 720px) {
    :root {
        --header-h: 76px;
        --logo-h: 50px;
        --logo-max-w: 280px;
    }
    .top-bar__inner { justify-content: center; text-align: center; }
    .top-bar__left { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        inset: auto 0 0 0;
        top: calc(var(--topbar-h) + var(--header-h));
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
    }
    .nav-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-link--cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }
    .hero__stats { grid-template-columns: 1fr; }
    .trust-bar__grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-band__inner { flex-direction: column; text-align: center; }
    .cta-band p { margin-inline: auto; }
    .cta-band__actions { justify-content: center; width: 100%; }
}

/* Nav dropdown */
.nav-item--dropdown { position: relative; }
.nav-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
}
.nav-chevron { transition: transform var(--transition); }
.nav-item--dropdown.is-open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 680px;
    max-width: 92vw;
    padding: 1.25rem;
    margin-top: 0.35rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 200;
}
/* Fare menüye inerken hover kopmasın */
.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
}
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.nav-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.nav-dropdown__heading {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--border);
}
.nav-dropdown__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-dropdown__col a {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.nav-dropdown__col a:hover,
.nav-dropdown__col a.is-active { color: var(--primary); }

/* FAQ */
.faq-list { max-width: 48rem; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    background: var(--bg);
    overflow: hidden;
}
.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
    margin: 0;
    padding: 0 1.25rem 1rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.blog-card {
    padding: 1.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.blog-card__date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-card h3 { margin: 0.5rem 0; font-size: 1.125rem; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

/* İçerik görselleri */
.content-figure {
    margin: 0 0 1.75rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.content-figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Ana sayfa ek bölümler */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-split__media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}
.about-split__content h2 {
    margin: 0.5rem 0 1rem;
    color: var(--text);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: none;
}
.steps-grid li {
    padding: 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.steps-grid strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.35rem;
}
.steps-grid span {
    display: block;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}
.steps-grid p { margin: 0; font-size: 0.9rem; }
.section-cta { text-align: center; margin: 2rem 0 0; }
.pricing-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.pricing-teaser__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pricing-teaser__list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}
.pricing-teaser__list strong { color: var(--primary); }
.home-faq .faq-list { max-width: 720px; margin: 0 auto; }

/* İletişim harita */
.contact-map-section .section-header p { margin: 0.5rem 0 0; }
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
    max-height: 420px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}
.contact-map__link {
    text-align: center;
    margin: 1rem 0 0;
    font-size: 0.9375rem;
}

/* Referanslar */
.refs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.ref-card {
    margin: 0;
    padding: 1.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}
.ref-card p { margin: 0 0 1rem; font-style: italic; color: var(--text-secondary); }
.ref-card cite { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); font-style: normal; }

/* Fiyat tablosu */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}
.price-table th,
.price-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.price-table th {
    background: var(--bg-subtle);
    font-weight: 700;
    color: var(--text);
}

/* Yasal içerik */
.legal-content { max-width: 48rem; }
.legal-content h2 {
    margin: 2rem 0 0.75rem;
    font-size: 1.2rem;
    color: var(--text);
}
.legal-content p { color: var(--text-muted); }

/* Footer geniş */
.footer-grid--wide {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 36px;
    padding: 0 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 1024px) {
    .footer-grid--wide { grid-template-columns: 1fr 1fr; }
    .blog-grid, .refs-grid { grid-template-columns: 1fr; }
    .about-split, .pricing-teaser { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-dropdown {
        position: static;
        transform: none;
        min-width: 0;
        max-width: none;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 0 1rem;
        display: none;
    }
    .nav-item--dropdown:hover .nav-dropdown,
    .nav-item--dropdown:focus-within .nav-dropdown,
    .nav-item--dropdown.is-open .nav-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-dropdown__grid { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 640px) {
    .steps-grid { grid-template-columns: 1fr; }
}

/* Site haritası */
.sitemap-intro {
    margin: 0 0 1.5rem;
    color: var(--color-muted, #64748b);
    font-size: 0.95rem;
}
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem 2.5rem;
}
.sitemap-col h2 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--color-primary, #C8102E);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sitemap-list li {
    margin-bottom: 0.4rem;
}
.sitemap-list a {
    color: var(--color-text, #0f172a);
    text-decoration: none;
    font-size: 0.9375rem;
}
.sitemap-list a:hover {
    color: var(--color-primary, #C8102E);
    text-decoration: underline;
}
