/* =============================================
   EFSU Sigorta — Kurumsal Web Sitesi
   Renk paleti logodan: #0070bc / #5ba6da
   ============================================= */

:root {
    --primary: #0070bc;
    --primary-dark: #005a96;
    --primary-light: #e8f4fc;
    --accent: #5ba6da;
    --accent-light: #a8d4ef;
    --navy: #0a2540;
    --navy-light: #1a3a5c;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --surface-dark: #0a2540;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 112, 188, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 112, 188, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 112, 188, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-heading: 'Inter', system-ui, sans-serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --header-h: 80px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text);
    background: var(--surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul { list-style: none; }

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

.section {
    padding: 100px 0;
}

.section--alt {
    background: var(--surface-alt);
}

.section--dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.section__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: color-mix(in srgb, var(--text-muted) 78%, var(--text) 22%);
    margin-bottom: 16px;
}

.section__desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.text-gradient {
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--primary) 88%, var(--primary-dark) 12%) 0%,
        color-mix(in srgb, var(--accent) 85%, var(--primary) 15%) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 112, 188, 0.35);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 188, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary-light);
}

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

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
    overflow: visible;
}

.header--scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 100%;
    min-width: 0;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}

.nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 100%;
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    color: #fff;
    background: var(--primary);
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav__link:hover {
    background: var(--primary-dark);
    color: #fff;
}

.nav__link--hasar {
    background: #ea580c;
}

.nav__link--hasar:hover {
    background: #c2410c;
    color: #fff;
}

.nav__link--active {
    background: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(0, 112, 188, 0.35);
}

.nav__link--cta {
    margin-left: 0;
}

.nav__item--mobile {
    display: none;
}

#iletisim-bilgi {
    scroll-margin-top: calc(var(--header-h) + 16px);
}

.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
    background: linear-gradient(160deg, #e8f0f6 0%, #f4f7fa 45%, #e6eef5 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.32;
}

.hero__orb--1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -10%;
    right: -5%;
    opacity: 0.26;
    animation: float 8s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    bottom: 10%;
    left: -10%;
    opacity: 0.14;
    animation: float 10s ease-in-out infinite reverse;
}

.hero__orb--3 {
    width: 250px;
    height: 250px;
    background: var(--accent-light);
    top: 40%;
    left: 30%;
    opacity: 0.16;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.hero__content {
    min-width: 0;
}

.hero__break {
    display: none;
}

.hero__shell {
    min-width: 0;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0, 112, 188, 0.08);
    border: 1px solid rgba(0, 112, 188, 0.15);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: color-mix(in srgb, var(--text-muted) 78%, var(--text) 22%);
    margin-bottom: 20px;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    letter-spacing: -0.02em;
}

.hero__title .text-gradient {
    font-weight: 900;
    font-size: 1.06em;
    letter-spacing: -0.03em;
    filter: drop-shadow(0 2px 10px rgba(0, 112, 188, 0.22));
}

.hero__desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    overflow-wrap: anywhere;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.hero__trust-item strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.hero__trust-item span {
    font-size: 0.8125rem;
    color: var(--text-muted);
    overflow-wrap: anywhere;
}

.hero__trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.hero__perks {
    display: none;
}

.hero__visual {
    position: relative;
    height: 420px;
}

.hero__card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.hero__card--main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    padding: 36px;
    text-align: center;
    z-index: 2;
}

.hero__card--main .hero__card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-light), rgba(91, 166, 218, 0.2));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.hero__card--main .hero__card-icon svg {
    width: 32px;
    height: 32px;
}

.hero__card--main h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.hero__card--main p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.hero__card--float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite;
}

.hero__card--float svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.hero__card--top {
    top: 12%;
    right: 0;
    animation-delay: 0s;
}

.hero__card--bottom {
    bottom: 12%;
    left: 0;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* About */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about__visual {
    display: flex;
    justify-content: center;
}

.about__image-wrap {
    position: relative;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(91, 166, 218, 0.15) 100%);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    text-align: center;
}

.about__logo {
    max-width: 280px;
    margin: 0 auto;
}

.about__badge {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(50%, 38%);
    width: 92px;
    height: 114px;
}

.about__badge-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.about__badge-inner {
    position: absolute;
    top: 40.3%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.about__badge-year {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--primary-dark);
    line-height: 1;
    max-width: 100%;
}

.about__text {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about__features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text);
}

.about__features svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Services */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--primary);
    color: #fff;
}

.service-card__icon svg {
    width: 26px;
    height: 26px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card__link {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap var(--transition);
}

.service-card__link:hover {
    color: var(--primary-dark);
}

a.service-card--link {
    display: block;
    color: inherit;
    cursor: pointer;
}

a.service-card--link:hover {
    color: inherit;
}

a.service-card--link .service-card__link {
    pointer-events: none;
}

/* Service detail page */
.service-detail-hero {
    padding: calc(var(--header-h) + 48px) 0 40px;
    background: linear-gradient(160deg, #e8f0f6 0%, #f4f7fa 45%, #e6eef5 100%);
}

.service-detail-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-top: 16px;
}

.service-detail__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.service-detail__breadcrumb a:hover {
    color: var(--primary);
}

.service-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
}

.service-detail__intro {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.service-detail__block + .service-detail__block {
    margin-top: 36px;
}

.service-detail__block--lead {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}

.service-detail__block--lead .service-detail__heading {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

.service-detail__block--lead .service-detail__text:first-of-type {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.service-detail__heading {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.service-detail__text {
    font-size: 1.03125rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.service-detail__list {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.service-detail__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.service-detail__list svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-detail__benefits {
    margin-top: 48px;
    padding: 32px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 112, 188, 0.12);
}

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

.service-detail__benefits-list li {
    position: relative;
    padding-left: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

.service-detail__benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.service-detail__sidebar {
    display: grid;
    gap: 24px;
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.service-detail__sidebar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.service-detail__sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.service-detail__sidebar-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-detail__sidebar-card--cta {
    background: var(--surface-alt);
}

.service-detail__sidebar-card .btn + .btn {
    margin-top: 10px;
}

.service-detail__nav {
    display: grid;
    gap: 4px;
}

.service-detail__nav a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: background var(--transition), color var(--transition);
}

.service-detail__nav a:hover,
.service-detail__nav a.is-active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 500;
}

.service-detail__empty {
    text-align: center;
    padding: 48px 24px;
}

.service-detail__empty p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-detail__loading {
    color: var(--text-muted);
}

.service-detail.section {
    padding-top: 48px;
}

/* Legal / KVKK */
.legal-hero {
    padding: 140px 0 48px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--surface) 100%);
}

.legal-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.legal-hero__desc {
    color: var(--text-muted);
    font-size: 1.0625rem;
    max-width: 640px;
}

.legal__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.legal__breadcrumb a:hover {
    color: var(--primary);
}

.legal__content {
    max-width: 760px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    box-shadow: var(--shadow-sm);
}

.legal__updated {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 32px;
}

.legal__block + .legal__block {
    margin-top: 32px;
}

.legal__block h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.legal__block p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal__block p:last-child {
    margin-bottom: 0;
}

.legal__list {
    list-style: disc;
    padding-left: 1.25rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.legal__list li + li {
    margin-top: 6px;
}

.legal__block a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal__block a:hover {
    color: var(--primary-dark);
}

.footer__since a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer__since a:hover {
    color: var(--accent);
}

/* Why */
.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.why-card__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

#hakkimizda .section__label,
#hizmetler .section__label,
#neden-biz .section__label {
    font-size: 1rem;
    color: var(--primary-dark);
}

#hakkimizda .section__title,
#hizmetler .section__title,
#neden-biz .section__title {
    font-size: clamp(2.125rem, 5vw, 3.125rem);
    color: color-mix(in srgb, var(--text-muted) 52%, var(--text) 48%);
}

#hakkimizda .text-gradient,
#hizmetler .text-gradient,
#neden-biz .text-gradient {
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--primary) 78%, var(--primary-dark) 22%) 0%,
        color-mix(in srgb, var(--accent) 72%, var(--primary) 28%) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#hizmetler .section__desc {
    font-size: 1.3125rem;
    color: color-mix(in srgb, var(--text-muted) 62%, var(--text) 38%);
}

#hakkimizda .about__text {
    font-size: 1.3125rem;
    color: color-mix(in srgb, var(--text-muted) 62%, var(--text) 38%);
}

#hakkimizda .about__features li {
    font-size: 1.125rem;
    color: color-mix(in srgb, var(--text-muted) 45%, var(--text) 55%);
}

#hizmetler .service-card__title {
    font-size: 1.375rem;
    color: color-mix(in srgb, var(--navy) 55%, var(--text) 45%);
}

#hizmetler .service-card__desc {
    font-size: 1.125rem;
    color: color-mix(in srgb, var(--text-muted) 62%, var(--text) 38%);
}

#hizmetler .service-card__link {
    font-size: 1rem;
    color: var(--primary-dark);
}

#neden-biz .why-card h3 {
    font-size: 1.3125rem;
    color: color-mix(in srgb, var(--navy) 55%, var(--text) 45%);
}

#neden-biz .why-card p {
    font-size: 1.0625rem;
    color: color-mix(in srgb, var(--text-muted) 62%, var(--text) 38%);
}

#neden-biz .why-card__number {
    font-size: 2.5rem;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--primary) 78%, var(--primary-dark) 22%) 0%,
        color-mix(in srgb, var(--accent) 72%, var(--primary) 28%) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats */
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
}

.stat__suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--accent-light);
}

.stat__label {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
}

/* CTA */
.cta__box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.cta__box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta__content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
}

/* Contact */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact__desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact__icon svg {
    width: 22px;
    height: 22px;
}

.contact__list strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact__list a,
.contact__list span {
    font-size: 0.9375rem;
    color: var(--text);
}

.contact__list a:hover {
    color: var(--primary);
}

#teklif-form {
    scroll-margin-top: calc(var(--header-h) + 16px);
}

.contact__form-wrap--focus .contact__form {
    box-shadow: 0 0 0 3px rgba(0, 112, 188, 0.14), var(--shadow-sm);
}

.contact__grid--form-focus .contact__form-wrap {
    order: 0;
}

@media (max-width: 1024px) {
    .contact__grid--form-focus .contact__form-wrap {
        order: -1;
    }
}

.contact__form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-required {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 112, 188, 0.12);
    background: var(--surface);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-secondary-service {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease;
}

.form-secondary-service.is-visible {
    max-height: 120px;
    opacity: 1;
}

.form-secondary-service .form-group {
    margin-bottom: 20px;
}

.form-hint {
    margin-top: 8px;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--text-muted);
}

.form-vehicle-fields {
    display: none;
}

.form-vehicle-fields.is-visible {
    display: block;
}

.form-trafik-fields {
    display: none;
    margin-bottom: 16px;
}

.form-trafik-fields.is-visible {
    display: block;
}

.form-trafik-type {
    margin-bottom: 16px;
}

.form-trafik-type__label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
}

.form-trafik-type__options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.form-trafik-type__btn {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.form-trafik-type__btn:hover {
    border-color: var(--accent);
    color: var(--primary);
}

.form-trafik-type__btn.is-active {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary-dark);
    box-shadow: inset 0 0 0 1px rgba(0, 112, 188, 0.08);
}

@media (max-width: 520px) {
    .form-trafik-type__options {
        grid-template-columns: 1fr;
    }
}

.form-trafik-yeni,
.form-trafik-sifir {
    display: none;
}

.form-trafik-yeni.is-visible,
.form-trafik-sifir.is-visible {
    display: block;
}

.form-trafik-sifir .form-group {
    margin-bottom: 16px;
}

.form-proforma-capture__trigger:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.form-vehicle-fields .form-row.is-hidden {
    display: none !important;
}

.form-proforma-capture {
    padding: 16px;
    border: 1px dashed rgba(0, 112, 188, 0.28);
    border-radius: var(--radius-md);
    background: var(--surface-alt);
}

.form-proforma-capture.is-visible {
    display: block;
}

.form-proforma-capture__desc {
    margin: 0 0 12px;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.form-proforma-capture__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    padding: 12px 18px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.form-proforma-capture__trigger svg {
    width: 22px;
    height: 22px;
}

.form-proforma-capture__trigger:hover {
    background: var(--primary-light);
}

.form-proforma-capture__preview {
    display: grid;
    gap: 12px;
}

.form-proforma-capture__image {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #fff;
}

.form-home-fields {
    display: none;
}

.form-home-fields.is-visible {
    display: block;
}

.form-home-fields .form-group {
    margin-bottom: 16px;
}

.form-policy-upload {
    margin-top: 4px;
    padding-top: 4px;
}

.form-policy-upload__label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
}

.form-optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form-policy-upload__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.form-policy-upload__list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-policy-upload__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface-alt);
}

.form-policy-upload__name {
    flex: 1;
    min-width: 0;
    font-size: 0.875rem;
    color: var(--text);
    word-break: break-word;
}

.form-policy-upload__size {
    flex-shrink: 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.form-policy-upload__remove {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.form-policy-upload__remove svg {
    width: 16px;
    height: 16px;
}

.form-policy-upload__remove:hover {
    color: #dc2626;
    border-color: #fca5a5;
    background: #fef2f2;
}

.form-policy-upload__status {
    margin-top: 10px;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #b45309;
}

.form-input-with-action {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.form-input-with-action input {
    flex: 1;
    min-width: 0;
}

.form-input-with-action .btn {
    flex-shrink: 0;
    align-self: center;
    white-space: nowrap;
}

.form-vehicle-fields.is-visible.form-vehicle-fields--kasko {
    display: block;
}

.form-vehicle-fields.is-visible.form-vehicle-fields--kasko.has-accessories {
    max-height: 900px;
}

.form-kasko-fields {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease;
}

.form-kasko-fields.is-visible {
    max-height: 160px;
    opacity: 1;
}

.form-kasko-fields.is-visible.has-accessories {
    max-height: 760px;
}

.form-kasko-fields .form-group {
    margin-bottom: 16px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.45;
}

.form-checkbox input {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox--kvkk {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.form-kvkk-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface-alt);
}

.form-kvkk-group .form-checkbox--kvkk strong {
    color: var(--text);
    font-weight: 600;
}

.form-checkbox--kvkk a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-checkbox--kvkk a:hover {
    color: var(--primary-dark);
}

.form-accessories {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease;
}

.form-accessories.is-visible {
    max-height: 600px;
    opacity: 1;
}

.form-accessories-list {
    margin-bottom: 4px;
}

.form-accessories .btn--sm {
    margin-top: 0;
}

.form-accessory-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px 40px;
    gap: 12px;
    margin-bottom: 10px;
    align-items: end;
}

.form-accessory-row:last-child {
    margin-bottom: 4px;
}

.form-accessory-row .form-group {
    margin-bottom: 0;
}

.form-accessory-row label {
    font-size: 0.8125rem;
}

.form-accessory-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.form-accessory-remove svg {
    width: 18px;
    height: 18px;
}

.form-accessory-remove:hover {
    color: #dc2626;
    border-color: #fca5a5;
    background: #fef2f2;
}

.btn--sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.form-vehicle-fields .form-row {
    margin-bottom: 0;
}

.form-vehicle-fields .form-group {
    margin-bottom: 20px;
}

.form-ruhsat-qr {
    display: none;
    margin-top: 4px;
    padding-top: 4px;
}

.form-ruhsat-qr.is-visible {
    display: block;
}

.form-ruhsat-qr__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px dashed var(--accent);
    border-radius: var(--radius-sm);
    background: rgba(91, 166, 218, 0.08);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.form-ruhsat-qr__btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.form-ruhsat-qr__btn:hover {
    background: rgba(91, 166, 218, 0.16);
    border-color: var(--primary);
    color: var(--primary);
}

.form-ruhsat-qr__status {
    margin-top: 10px;
    font-size: 0.875rem;
    line-height: 1.45;
}

.form-ruhsat-qr__status--success {
    color: #059669;
}

.form-ruhsat-qr__status--warning {
    color: #b45309;
}

.form-ruhsat-qr__status--error {
    color: #dc2626;
}

.qr-scanner-open {
    overflow: hidden;
}

.qr-scanner-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 37, 64, 0.72);
}

.qr-scanner-modal[hidden] {
    display: none;
}

.qr-scanner-modal__dialog {
    width: min(100%, 420px);
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.qr-scanner-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
}

.qr-scanner-modal__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
}

.qr-scanner-modal__close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 999px;
    background: var(--surface-alt);
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.qr-scanner-modal__viewport {
    min-height: 280px;
    background: #000;
    overflow: hidden;
    position: relative;
}

.qr-scanner-modal__viewport > div {
    width: 100% !important;
    min-height: 280px;
}

.qr-scanner-modal__viewport video {
    width: 100%;
    display: block;
    object-fit: cover;
}

.qr-scanner-modal__hint {
    margin: 0;
    padding: 14px 18px 18px;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-muted);
    text-align: center;
}

/* Vehicle photo capture page */
.vehicle-photo-hero {
    padding: calc(var(--header-h) + 16px) 0 12px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--surface) 100%);
}

.vehicle-photo-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.vehicle-photo-hero__breadcrumb a {
    color: var(--primary);
}

.vehicle-photo-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0;
}

.vehicle-photo.section {
    padding: 20px 0 80px;
}

.vehicle-photo-hero__desc {
    max-width: 720px;
    color: var(--text-muted);
    line-height: 1.7;
}

.vehicle-photo__layout {
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.vehicle-photo__guide {
    background: linear-gradient(180deg, #fff 0%, var(--primary-light) 100%);
    border: 1px solid rgba(0, 112, 188, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}

.vehicle-photo__guide-details {
    margin: 0;
}

.vehicle-photo__guide-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    cursor: pointer;
    margin-bottom: 20px;
}

.vehicle-photo__guide-summary::-webkit-details-marker {
    display: none;
}

.vehicle-photo__guide-summary-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.vehicle-photo__guide-toggle {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.vehicle-photo__guide-toggle::after {
    content: 'Rehberi göster';
}

.vehicle-photo__guide-details[open] .vehicle-photo__guide-toggle::after {
    content: 'Gizle';
}

.vehicle-photo__guide-details[open] .vehicle-photo__guide-summary {
    margin-bottom: 16px;
}

.vehicle-photo__guide-content {
    padding-top: 4px;
}

@media (min-width: 769px) {
    .vehicle-photo__guide-summary {
        cursor: default;
        pointer-events: none;
    }

    .vehicle-photo__guide-toggle {
        display: none;
    }
}

.vehicle-photo__guide-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.vehicle-photo__guide-lead {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.vehicle-photo__guide-overview,
.vehicle-photo__guide-map {
    margin: 0 0 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 112, 188, 0.1);
    border: 1px solid rgba(0, 112, 188, 0.1);
    background: #fff;
}

.vehicle-photo__angle-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
}

.vehicle-photo__angle {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    min-width: 0;
}

.vehicle-photo__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #eef2f6;
    overflow: hidden;
}

.vehicle-photo__media--thumb {
    aspect-ratio: 3 / 2;
    max-height: 72px;
}

.vehicle-photo__angle-img,
.vehicle-photo__example-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    image-rendering: auto;
}

.vehicle-photo__angle-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
}

.vehicle-photo__step-example {
    margin: 0;
}

.vehicle-photo__map-caption {
    display: block;
    padding: 10px 14px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: var(--primary-light);
    border-bottom: 1px solid rgba(0, 112, 188, 0.1);
    text-align: center;
}

.vehicle-photo__map-svg {
    display: block;
    width: 100%;
    height: auto;
}

.vehicle-photo__steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.vehicle-photo__step {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 112, 188, 0.08);
}

.vehicle-photo__step-num {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 112, 188, 0.25);
    flex-shrink: 0;
}

.vehicle-photo__step-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.vehicle-photo__step-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

.vehicle-photo__step-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.vehicle-photo__mini-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.vehicle-photo__mini-map svg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.vehicle-photo__phone {
    background: #0f172a;
    border-radius: 18px;
    padding: 7px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}

.vehicle-photo__phone::before {
    content: '';
    display: block;
    width: 28%;
    height: 3px;
    margin: 0 auto 5px;
    border-radius: 999px;
    background: #334155;
}

.vehicle-photo__phone-screen {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0f172a;
}

.vehicle-photo__preview-art {
    display: block;
    width: 100%;
    height: auto;
}

.vehicle-photo__frame-tag {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 3;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.95);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.vehicle-photo__form-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.vehicle-photo__shots {
    margin: 28px 0 24px;
}

.vehicle-photo__shots-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.vehicle-photo__shots-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.vehicle-photo__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vehicle-photo__slot {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.vehicle-photo__slot-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    border: 2px dashed rgba(0, 112, 188, 0.28);
    border-radius: var(--radius-md);
    background: var(--primary-light);
    overflow: hidden;
}

.vehicle-photo__slot.is-filled .vehicle-photo__slot-media {
    border-style: solid;
    border-color: rgba(0, 112, 188, 0.18);
}

.vehicle-photo__slot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    padding: 12px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
}

.vehicle-photo__slot-placeholder svg {
    width: 28px;
    height: 28px;
}

.vehicle-photo__slot-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-photo__slot-label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

.photo-capture-open {
    overflow: hidden;
}

.photo-capture-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 37, 64, 0.72);
}

.photo-capture-modal[hidden] {
    display: none;
}

.photo-capture-modal__dialog {
    width: min(100%, 460px);
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.photo-capture-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
}

.photo-capture-modal__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
}

.photo-capture-modal__close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 999px;
    background: var(--surface-alt);
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.photo-capture-modal__viewport {
    background: #000;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.photo-capture-modal__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-capture-modal__hint {
    margin: 0;
    padding: 14px 18px 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-muted);
    text-align: center;
}

.photo-capture-modal__actions {
    padding: 16px 18px 18px;
}

.form-success {
    text-align: center;
    color: #059669;
    font-weight: 500;
    margin-top: 16px;
    padding: 12px;
    background: #ecfdf5;
    border-radius: var(--radius-sm);
}

.form-error {
    text-align: center;
    color: #dc2626;
    font-weight: 500;
    margin-top: 16px;
    padding: 12px;
    background: #fef2f2;
    border-radius: var(--radius-sm);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Hasar İhbar */
.hasar-hero {
    padding: calc(var(--header-h) + 16px) 0 12px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--surface) 100%);
}

.hasar-hero--detail {
    padding-bottom: 16px;
}

.hasar-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.hasar-hero__breadcrumb a {
    color: var(--primary);
}

.hasar-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.hasar-hero__lead {
    max-width: 720px;
    color: var(--text-muted);
    line-height: 1.6;
}

.hasar.section {
    padding: 20px 0 72px;
}

.hasar-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.hasar-back:hover {
    color: var(--primary-dark);
}

.hasar-intro {
    text-align: center;
    margin-bottom: 28px;
}

.hasar-intro__title {
    font-family: var(--font-heading);
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.hasar-intro__desc {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.6;
}

.hasar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.hasar-picker {
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.hasar-picker__label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
}

.hasar-picker__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hasar-picker__select {
    flex: 1 1 220px;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    font: inherit;
    color: var(--text);
}

.hasar-picker__btn {
    flex: 0 0 auto;
    min-width: 140px;
}

.hasar-options {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.hasar-option {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.hasar-option:hover {
    border-color: rgba(0, 112, 188, 0.35);
    box-shadow: 0 8px 20px rgba(0, 112, 188, 0.1);
    transform: translateY(-1px);
}

.hasar-option__num {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
}

.hasar-option__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hasar-option__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.hasar-option__desc {
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--text-muted);
}

.hasar-option__arrow {
    flex-shrink: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary);
    font-weight: 700;
}

.hasar-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hasar-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 112, 188, 0.25);
    box-shadow: 0 12px 28px rgba(0, 112, 188, 0.12);
}

.hasar-card__media {
    position: relative;
    min-height: 150px;
    background-color: var(--primary-light);
    background-size: cover;
    background-position: center;
}

.hasar-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.08) 0%, rgba(10, 37, 64, 0.72) 100%);
}

.hasar-card__title {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 1;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
}

.hasar-card__desc {
    margin: 0;
    padding: 14px 16px 16px;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.hasar-emergency,
.hasar-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    margin-bottom: 18px;
    border-radius: var(--radius-md);
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.hasar-emergency--bottom {
    margin-bottom: 0;
    margin-top: 20px;
}

.hasar-emergency__icon,
.hasar-alert__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #ffedd5;
    color: #c2410c;
}

.hasar-emergency__icon svg,
.hasar-alert__icon svg {
    width: 22px;
    height: 22px;
}

.hasar-emergency__title,
.hasar-alert__title {
    margin: 0 0 4px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #9a3412;
}

.hasar-emergency__text,
.hasar-alert__text {
    margin: 0;
    color: #7c2d12;
    line-height: 1.5;
}

.hasar-emergency__text a,
.hasar-alert__text a {
    color: inherit;
}

.hasar-detail {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hasar-detail__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hasar-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    box-shadow: var(--shadow-sm);
}

.hasar-panel__title {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
}

.hasar-detail__steps,
.hasar-detail__docs {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text);
    line-height: 1.7;
}

.hasar-detail__steps li + li,
.hasar-detail__docs li + li {
    margin-top: 8px;
}

.hasar-accordions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hasar-accordion {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.hasar-accordion__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    list-style: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--navy);
    background: linear-gradient(180deg, #fff 0%, var(--primary-light) 100%);
}

.hasar-accordion__summary::-webkit-details-marker {
    display: none;
}

.hasar-accordion__summary::after {
    content: '+';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 1.125rem;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hasar-accordion[open] .hasar-accordion__summary::after {
    content: '−';
    background: var(--primary-dark);
}

.hasar-accordion__body {
    padding: 0 18px 18px;
    border-top: 1px solid rgba(0, 112, 188, 0.1);
}

.hasar-accordion__lead {
    margin: 14px 0 0;
    color: var(--text-muted);
    line-height: 1.55;
}

.hasar-accordion__heading {
    margin: 16px 0 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.hasar-subtypes {
    display: grid;
    gap: 14px;
}

.hasar-subtype {
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    border: 1px solid rgba(0, 112, 188, 0.12);
}

.hasar-subtype__title {
    margin: 0 0 6px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.hasar-subtype__desc {
    margin: 0 0 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.hasar-subtype__heading {
    margin: 14px 0 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.hasar-tools {
    display: grid;
    gap: 14px;
}

.hasar-tool {
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--surface-alt);
    border: 1px solid var(--border);
}

.hasar-tool__title {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.hasar-tool__desc {
    margin: 0 0 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.hasar-tools__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hasar-tools__btn {
    min-width: 140px;
}

.hasar-panel--companies {
    margin-bottom: 0;
}

.hasar-company-select {
    display: block;
    margin-bottom: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.hasar-company-select__input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    font: inherit;
    color: var(--text);
}

.hasar-company-details {
    margin-top: 16px;
}

.hasar-company {
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    border: 1px solid rgba(0, 112, 188, 0.12);
}

.hasar-company__name {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
}

.hasar-company__grid {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.hasar-company__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.875rem;
}

.hasar-company__item--phone {
    gap: 4px;
}

.hasar-company__item span {
    color: var(--text-muted);
    font-weight: 600;
}

.hasar-company__item a {
    color: var(--primary);
    font-weight: 600;
    word-break: break-word;
}

.hasar-company__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hasar-type-resources-wrap {
    margin-bottom: 20px;
}

.hasar-type-resources {
    display: grid;
    gap: 12px;
}

.hasar-type-resource {
    padding: 16px;
    border-radius: var(--radius-md);
    background: #fff8ef;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.hasar-type-resource__title {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.hasar-type-resource__desc {
    margin: 0 0 12px;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.hasar-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    padding: 24px;
}

/* Footer */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__social {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer__social a {
    color: var(--accent-light);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}

.footer__social a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer__col h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col a {
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer__col a:hover {
    color: var(--accent-light);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8125rem;
}

.footer__since {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--accent);
    font-style: italic;
}

/* Reveal animations — JS yoksa veya yuklenemezse icerik gorunur kalir */
.reveal {
    opacity: 1;
    transform: none;
}

html.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

body.nav-open {
    overflow: hidden;
}

body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10, 37, 64, 0.42);
    z-index: 1050;
}

/* Responsive */
@media (max-width: 1024px) {
    .header__toggle {
        display: flex;
        position: relative;
        z-index: 1102;
    }

    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        z-index: 1101;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 12px 24px calc(20px + env(safe-area-inset-bottom, 0px));
        padding-left: max(24px, env(safe-area-inset-left, 0px));
        padding-right: max(24px, env(safe-area-inset-right, 0px));
        max-height: calc(100dvh - var(--header-h));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateY(calc(-100% - 12px));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
        box-shadow: var(--shadow-md);
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        max-width: none;
        gap: 4px;
    }

    .nav__list li {
        width: 100%;
    }

    .nav__list li + li:not(:last-child):not(.nav__item--mobile) {
        border-top: none;
    }

    .nav__item--mobile {
        display: list-item;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }

    .nav__list li:last-child {
        margin-top: 8px;
        padding-top: 0;
        border-top: none;
    }

    .nav__link {
        display: block;
        width: 100%;
        padding: 14px 16px;
        text-align: left;
        background: transparent;
        color: var(--text);
        border-radius: var(--radius-sm);
        font-size: 1rem;
        line-height: 1.45;
        box-shadow: none;
    }

    .nav__link:hover,
    .nav__link--active {
        background: var(--primary-light);
        color: var(--primary);
        box-shadow: none;
    }

    .nav__link--hasar {
        color: #ea580c !important;
        font-weight: 700;
    }

    .nav__link--hasar:hover,
    .nav__link--hasar.nav__link--active {
        background: #fff7ed;
        color: #c2410c !important;
    }

    .nav__link--cta {
        margin-left: 0;
        padding: 14px 16px;
        text-align: center;
        border-radius: var(--radius-sm);
        background: transparent;
        color: var(--primary) !important;
        border: 2px solid var(--primary);
        box-shadow: none;
    }

    .nav__link--cta:hover,
    .nav__link--cta.nav__link--active {
        background: var(--primary-light);
        color: var(--primary-dark) !important;
    }

    .nav__link--quote {
        padding: 14px 16px;
        text-align: center;
        border-radius: var(--radius-sm);
        background: var(--primary);
        color: #fff !important;
        box-shadow: none;
    }

    .nav__link--quote:hover,
    .nav__link--quote.nav__link--active {
        background: var(--primary-dark);
        color: #fff !important;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px 0;
    }

    .hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__visual {
        height: 340px;
        max-width: 480px;
        margin: 0 auto;
        overflow: hidden;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta__box {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

    .vehicle-photo__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vehicle-photo__form-wrap {
        order: -1;
    }

    .vehicle-photo__guide {
        order: 1;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 72px;
    }

    .section {
        padding: 72px 0;
    }

    .container {
        padding: 0 16px;
    }

    .header__logo img {
        height: 38px;
    }

    .hero {
        min-height: auto;
        align-items: flex-start;
        padding-top: calc(var(--header-h) + 8px);
        background: linear-gradient(165deg, #e2ebf3 0%, #eef3f8 42%, #f6f8fb 100%);
    }

    .hero__orb--1 {
        width: 220px;
        height: 220px;
        top: -8%;
        right: -18%;
    }

    .hero__orb--2 {
        width: 180px;
        height: 180px;
        left: -20%;
    }

    .hero__orb--3 {
        width: 120px;
        height: 120px;
    }

    .hero__inner {
        padding: 16px 0 36px;
        gap: 0;
        text-align: left;
    }

    .hero__content {
        width: 100%;
    }

    .hero__shell {
        position: relative;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(0, 112, 188, 0.1);
        border-radius: 24px;
        padding: 22px 18px 20px;
        box-shadow: 0 16px 40px rgba(0, 112, 188, 0.1);
        overflow: hidden;
    }

    .hero__shell::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    }

    .hero__break {
        display: block;
    }

    .hero__badge {
        font-size: 0.6875rem;
        padding: 5px 12px;
        margin-bottom: 14px;
        letter-spacing: 0.01em;
    }

    .hero__title {
        font-size: clamp(1.625rem, 7.2vw, 2rem);
        line-height: 1.22;
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }

    .hero__desc {
        margin-left: 0;
        margin-right: 0;
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 18px;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 16px;
        white-space: normal;
        text-align: center;
    }

    .hero__actions .btn--primary {
        box-shadow: 0 10px 24px rgba(0, 112, 188, 0.26);
        font-size: 0.9375rem;
    }

    .hero__actions .btn--outline {
        font-size: 0.875rem;
    }

    .hero__perks {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin: 0 0 16px;
        padding: 0;
        overflow: visible;
    }

    .hero__perks::-webkit-scrollbar {
        display: none;
    }

    .hero__perk {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
        border: 1px solid rgba(0, 112, 188, 0.1);
        border-radius: 16px;
        padding: 12px 8px;
        text-align: center;
        box-shadow: none;
        min-width: 0;
    }

    .hero__perk-icon {
        width: 34px;
        height: 34px;
        margin: 0 auto 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--primary-light), rgba(91, 166, 218, 0.18));
        border-radius: 10px;
        color: var(--primary);
    }

    .hero__perk-icon svg {
        display: block;
        width: 17px;
        height: 17px;
    }

    .hero__perk strong {
        display: block;
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--navy);
        font-size: 0.6875rem;
        margin-bottom: 3px;
        overflow-wrap: anywhere;
    }

    .hero__perk > span:not(.hero__perk-icon) {
        display: block;
        font-size: 0.625rem;
        line-height: 1.3;
        color: var(--text-muted);
        overflow-wrap: anywhere;
    }

    .hero__trust {
        display: flex;
        align-items: stretch;
        gap: 0;
        background: var(--primary-light);
        border: 1px solid rgba(0, 112, 188, 0.08);
        border-radius: 16px;
        padding: 12px 6px;
        box-shadow: none;
    }

    .hero__trust-divider {
        display: none;
    }

    .hero__trust-item {
        flex: 1 1 0;
        align-items: center;
        text-align: center;
        padding: 0 4px;
        min-width: 0;
        border-right: 1px solid rgba(0, 112, 188, 0.12);
    }

    .hero__trust-item:last-child {
        border-right: none;
    }

    .hero__trust-item strong {
        font-size: 1rem;
        line-height: 1.2;
    }

    .hero__trust-item span {
        font-size: 0.625rem;
        line-height: 1.25;
        display: block;
        max-width: 100%;
    }

    .hero__visual {
        display: none;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .why__grid {
        grid-template-columns: 1fr;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-input-with-action {
        flex-direction: column;
    }

    .form-input-with-action .btn {
        align-self: stretch;
        text-align: center;
    }

    .form-secondary-service.is-visible {
        max-height: 160px;
    }

    .form-vehicle-fields.is-visible {
        display: block;
    }

    .form-home-fields.is-visible {
        display: block;
    }

    .form-vehicle-fields.is-visible.form-vehicle-fields--kasko {
        display: block;
    }

    .form-vehicle-fields.is-visible.form-vehicle-fields--kasko.has-accessories {
        max-height: 1200px;
    }

    .form-kasko-fields.is-visible.has-accessories {
        max-height: 1100px;
    }

    .form-accessory-row {
        grid-template-columns: minmax(0, 1fr) 1fr 40px;
    }

    .contact__form {
        padding: 28px 24px;
    }

    .vehicle-photo-hero {
        padding: calc(var(--header-h) + 10px) 0 8px;
    }

    .vehicle-photo.section {
        padding: 12px 0 48px;
    }

    .vehicle-photo__form-wrap {
        padding: 24px 20px;
    }

    .vehicle-photo__guide {
        padding: 20px 16px;
    }

    .vehicle-photo__guide-summary {
        margin-bottom: 0;
    }

    .vehicle-photo__guide-details:not([open]) .vehicle-photo__guide-summary {
        margin-bottom: 0;
    }

    .vehicle-photo__guide-details[open] .vehicle-photo__guide-summary {
        margin-bottom: 12px;
    }

    .vehicle-photo__guide-overview,
    .vehicle-photo__guide-map {
        margin-bottom: 12px;
    }

    .vehicle-photo__angle-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        padding: 10px;
    }

    .vehicle-photo__media--thumb {
        max-height: 56px;
    }

    .vehicle-photo__angle-label {
        font-size: 0.6875rem;
    }

    .vehicle-photo__map-caption {
        padding: 8px 12px;
        font-size: 0.6875rem;
    }

    .vehicle-photo__map-svg {
        max-height: 150px;
    }

    .vehicle-photo__steps {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .vehicle-photo__step {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 8px;
        padding: 8px 10px;
    }

    .vehicle-photo__step-num {
        width: 28px;
        height: 28px;
        font-size: 0.8125rem;
    }

    .vehicle-photo__step-title {
        font-size: 0.875rem;
    }

    .vehicle-photo__step-desc {
        font-size: 0.6875rem;
    }

    .hasar-hero {
        padding: calc(var(--header-h) + 10px) 0 8px;
    }

    .hasar.section {
        padding: 12px 0 48px;
    }

    .hasar-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hasar-picker {
        padding: 16px;
    }

    .hasar-picker__row {
        flex-direction: column;
    }

    .hasar-picker__btn {
        width: 100%;
    }

    .hasar-accordion__summary {
        padding: 14px 16px;
        font-size: 0.9375rem;
    }

    .hasar-accordion__body {
        padding: 0 16px 16px;
    }

    .hasar-option {
        padding: 12px 14px;
        gap: 10px;
    }

    .hasar-panel {
        padding: 18px 16px;
    }

    .about__visual {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        overflow: visible;
        padding-bottom: 8px;
    }

    .about__image-wrap {
        position: relative;
        width: 100%;
        max-width: 352px;
        margin-inline: auto;
        padding: 42px 26px 48px;
        box-sizing: border-box;
        overflow: visible;
        text-align: center;
    }

    .about__logo {
        display: block;
        width: auto;
        max-width: min(276px, 100%);
        height: auto;
        margin-inline: auto;
        object-fit: contain;
    }

    .about__badge {
        position: absolute;
        bottom: 0;
        right: 0;
        transform: translate(46%, 36%);
        width: 68px;
        height: 84px;
    }

    .about__badge-inner {
        width: 34%;
        top: 40.5%;
    }

    .about__badge-year {
        font-size: 0.5rem;
        letter-spacing: -0.07em;
    }

    .legal__content {
        padding: 28px 24px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .hero__inner {
        padding-bottom: 28px;
    }

    .hero__shell {
        padding: 20px 16px 18px;
        border-radius: 20px;
    }

    .hero__title {
        font-size: 1.625rem;
    }

    .hero__perk {
        padding: 10px 6px;
    }

    .hero__trust {
        padding: 10px 4px;
    }

    .hero__trust-item strong {
        font-size: 0.9375rem;
    }

    .hero__trust-item span {
        font-size: 0.5625rem;
    }

    .about__image-wrap {
        max-width: 312px;
        padding: 38px 20px 44px;
    }

    .about__logo {
        max-width: min(240px, 100%);
    }

    .about__badge {
        width: 60px;
        height: 74px;
        transform: translate(44%, 34%);
    }

    .about__badge-inner {
        width: 33%;
        top: 40.5%;
    }

    .about__badge-year {
        font-size: 0.4375rem;
        letter-spacing: -0.08em;
    }
}

/* Floating contact bubble */
.fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.fab__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    pointer-events: none;
}

.fab--open .fab__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.fab__action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.fab__action svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.fab__action:hover {
    transform: translateX(-2px);
    box-shadow: var(--shadow-lg);
}

.fab__action--whatsapp {
    color: #128c7e;
    border-color: rgba(18, 140, 126, 0.2);
}

.fab__action--whatsapp:hover {
    color: #0f7668;
    border-color: rgba(18, 140, 126, 0.35);
}

.fab__action--phone {
    color: var(--primary-dark);
    border-color: rgba(0, 112, 188, 0.15);
}

.fab__action--phone:hover {
    color: var(--primary);
    border-color: rgba(0, 112, 188, 0.3);
}

.fab__toggle {
    position: relative;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 112, 188, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.fab__toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 112, 188, 0.4);
}

.fab__icon {
    width: 24px;
    height: 24px;
    position: absolute;
    transition: opacity var(--transition), transform var(--transition);
}

.fab__icon--close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.fab--open .fab__icon--open {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.fab--open .fab__icon--close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

@media (max-width: 480px) {
    .fab {
        right: 16px;
        bottom: 16px;
    }

    .fab__toggle {
        width: 52px;
        height: 52px;
    }

    .fab__action span {
        font-size: 0.75rem;
    }

    .service-detail__layout {
        grid-template-columns: 1fr;
    }

    .service-detail__sidebar {
        position: static;
    }
}

/* =============================================
   404 — Sayfa bulunamadı
   ============================================= */

.error-page {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    flex-direction: column;
}

.error-page__hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 0 5rem;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 112, 188, 0.12), transparent),
        var(--surface-alt);
}

.error-page__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.error-page__code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 18vw, 8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: transparent;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 1rem;
}

.error-page__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.error-page__desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.error-page__links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    justify-content: center;
}

.error-page__links a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}

.error-page__links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
