*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --white: #FFFFFF;
    --black: #1D1D1F;
    --gray-1: #F5F5F7;
    --gray-2: #86868B;
    --gray-3: #D2D2D7;
    --gray-4: #6E6E73;
    --font: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    --max: 1200px;
    --radius-card: 18px;
    --radius-btn: 980px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

    html::-webkit-scrollbar {
        display: none;
    }

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
/* ─── ANNOUNCEMENT BAND ─── */
#announcement-band {
    position: relative;
    height: 48px;
    background: transparent;
    border-bottom: 1px solid #D2D2D7;
    overflow: hidden;
    display: flex;
    align-items: center;
}

    #announcement-band[data-announcement=""], #announcement-band:not([data-announcement]) {
        display: none;
    }

.announcement-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: #CC0000;
    padding: 0 320px;
}

    .announcement-item .material-symbols-outlined {
        font-size: 18px;
        font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
        flex-shrink: 0;
    }

@keyframes hero-fade-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-label        { animation: hero-fade-in 0.6s ease both; animation-delay: 0.15s; }
.hero-title        { animation: hero-fade-in 0.6s ease both; animation-delay: 0.28s; }
.hero-sub          { animation: hero-fade-in 0.6s ease both; animation-delay: 0.40s; }
.hero-ctas         { animation: hero-fade-in 0.6s ease both; animation-delay: 0.52s; }

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1023px) {
    .announcement-track {
        animation-duration: 20s;
    }
}
/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--gray-3);
    transition: background 0.2s;
}

.nav-logo {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .nav-logo span.dot {
        color: var(--gray-2);
        font-weight: 400;
    }

.nav-links {
    display: none;
    list-style: none;
    gap: 28px;
}

    .nav-links a {
        font-size: 13px;
        font-weight: 400;
        color: var(--black);
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.15s;
    }

        .nav-links a:hover {
            opacity: 1;
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    display: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    gap: 4px;
    align-items: center;
}

.nav-whatsapp {
    display: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #25D366;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-hamburger {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 4px;
}

    .nav-hamburger span {
        display: block;
        width: 20px;
        height: 1.5px;
        background: var(--black);
        border-radius: 2px;
        transition: all 0.2s;
    }
/* Desktop nav */
@media (min-width: 1024px) {
    nav {
        padding: 0 40px;
        height: 56px;
    }

    .nav-links {
        display: flex;
    }

    .nav-phone {
        display: flex;
    }

    .nav-whatsapp {
        display: flex;
    }

    .nav-hamburger {
        display: none;
    }
}
/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 80px 24px 120px;
    flex-direction: column;
    gap: 0;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-size: 22px;
        font-weight: 500;
        color: var(--black);
        text-decoration: none;
        padding: 16px 0;
        border-bottom: 1px solid var(--gray-3);
        display: block;
    }

        .mobile-menu a:first-child {
            border-top: 1px solid var(--gray-3);
        }
/* ─── HERO ─── */
.hero {
    margin-top: 52px;
    position: relative;
    overflow: hidden;
    height: 50vh;
    min-height: 360px;
    max-height: 600px;
    display: flex;
    align-items: center;
    background: var(--black);
    background-color: #1D1D1F;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    max-width: var(--max);
    margin: 0 auto;
    width: 100%;
}

.hero-content-inner {
    max-width: 560px;
}

.hero-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    display: block;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: clamp(36px, 4.5vw, 48px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #FFFFFF !important;
    margin-bottom: 12px;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

    .hero-title strong {
        font-weight: 800;
    }

.hero-sub {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    color: #FFFFFF !important;
    margin-bottom: 28px;
    line-height: 1.35;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    background: var(--white);
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        transform: scale(1.02);
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 28px;
    border-radius: var(--radius-btn);
    background: transparent;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}

    .btn-outline:hover {
        transform: scale(1.02);
        border-color: rgba(255,255,255,0.7);
    }

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    background: var(--black);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

    .btn-dark:hover {
        transform: scale(1.02);
        opacity: 0.85;
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 28px;
    border-radius: var(--radius-btn);
    background: transparent;
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--gray-3);
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}

    .btn-ghost:hover {
        transform: scale(1.02);
        border-color: var(--black);
    }

@media (min-width: 768px) {
    .hero {
        margin-top: 56px;
        background-color: #1D1D1F;
    }

    .hero-content {
        padding: 0 48px;
    }
}

@media (max-width: 500px) {
    .hero-content {
        padding: 0 24px;
    }
}
/* ─── GÜVEN ROZETİ ─── */
.trust-bar {
    padding: 48px 24px;
    border-bottom: 1px solid var(--gray-3);
}

.trust-bar-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.trust-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-3);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

    .trust-item:last-child {
        border-bottom: none;
    }

.trust-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.trust-text h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.trust-text p {
    font-size: 13px;
    color: var(--gray-2);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .trust-bar {
        padding: 64px 40px;
    }

    .trust-bar-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .trust-item {
        padding: 0 40px;
        border-bottom: none;
        border-right: 1px solid var(--gray-3);
        flex-direction: column;
        gap: 16px;
    }

        .trust-item:first-child {
            padding-left: 0;
        }

        .trust-item:last-child {
            border-right: none;
            padding-right: 0;
        }
}
/* ─── SECTION ORTAK ─── */
section {
    padding: 32px 24px;
}

@media (min-width: 768px) {
    section {
        padding: 36px 40px;
    }
}

.section-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-2);
    margin-bottom: 6px;
}

.section-title {
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 0;
}

.section-sub {
    font-size: 17px;
    color: var(--gray-2);
    line-height: 1.6;
    max-width: 520px;
}
/* ─── NİYET SEÇİCİ ─── */
#niyet {
    background: var(--white);
    padding-top: 36px;
    padding-bottom: 36px;
}

.niyet-header {
    margin-bottom: 40px;
}

.niyet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (min-width: 700px) {
    .niyet-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }
}

.niyet-card {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.niyet-card-visual {
    aspect-ratio: 3/4;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: transform 0.2s;
}

.niyet-card:hover .niyet-card-visual {
    transform: scale(1.02);
}
/* Arka plan renkleri */
.niyet-card:nth-child(1) .niyet-card-visual {
    background: #1a1a1a;
}

.niyet-card:nth-child(2) .niyet-card-visual {
    background: #2a3828;
}

.niyet-card:nth-child(3) .niyet-card-visual {
    background: #1a3060;
}

.niyet-card:nth-child(4) .niyet-card-visual {
    background: #111;
}

.niyet-card:nth-child(5) .niyet-card-visual {
    background: #d0d0d2;
}

.niyet-card:nth-child(6) .niyet-card-visual {
    background: #b0b0b5;
}

.niyet-card-ph {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
}

.niyet-card-ph-icon {
    font-size: 20px;
    opacity: 0.25;
    margin-bottom: 6px;
}

.niyet-card-ph-name {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    line-height: 1.4;
}

.niyet-card:nth-child(5) .niyet-card-ph-name,
.niyet-card:nth-child(6) .niyet-card-ph-name {
    color: rgba(0,0,0,0.3);
}

.niyet-card:nth-child(5) .niyet-card-ph-icon,
.niyet-card:nth-child(6) .niyet-card-ph-icon {
    opacity: 0.2;
}

.niyet-card-label {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.3;
}

@media (min-width: 700px) {
    .niyet-card-label {
        font-size: 11px;
    }
}
/* ─── KAMPANYA BANNER ─── */
#kampanya {
    padding: 60px 24px;
}

@media (min-width: 768px) {
    #kampanya {
        padding: 80px 40px;
    }
}

.kampanya-banner {
    max-width: var(--max);
    margin: 0 auto;
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    background: var(--black);
    min-height: 180px;
    display: flex;
    align-items: center;
}

.kampanya-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #444;
    padding: 24px;
}

.kampanya-bg-inner {
}

    .kampanya-bg-inner .icon {
        font-size: 24px;
        opacity: 0.3;
        margin-bottom: 8px;
    }

    .kampanya-bg-inner .filename {
        font-size: 11px;
        color: #555;
    }

    .kampanya-bg-inner .dims {
        font-size: 10px;
        color: #444;
        margin-top: 2px;
    }

    .kampanya-bg-inner .folder {
        font-size: 9px;
        color: #3a3a3a;
        margin-top: 2px;
    }

.kampanya-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.kampanya-content {
    position: relative;
    z-index: 2;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kampanya-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 4px;
    width: fit-content;
}

.kampanya-title {
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    line-height: 1.15;
}

.kampanya-detail {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .kampanya-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 52px 64px;
    }

    .kampanya-info {
        flex: 1;
    }

    .kampanya-cta-wrap {
        flex-shrink: 0;
    }
}
/* ─── MODELLER ─── */
.model-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.model-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 24px 20px;
    margin: 0 -24px;
    justify-content: safe center;
}

    .model-grid::-webkit-scrollbar {
        display: none;
    }

@media (min-width: 768px) {
    .model-grid {
        margin: 0 -40px;
        padding: 4px 40px 20px;
        gap: 20px;
    }
}

.model-card {
    flex-shrink: 0;
    width: 280px;
    scroll-snap-align: start;
    gap: 16px;
}
/* model-grid responsive: tek satır yatay scroll — override yok */

.model-card {
    display: block;
    text-decoration: none;
    color: var(--black);
    border: 1px solid var(--gray-3);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

    .model-card:hover {
        border-color: var(--black);
        transform: translateY(-2px);
    }

.model-card-img {
    width: 100%;
}

.model-card-body {
    padding: 20px 20px 24px;
}

.model-card-brand {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-2);
    margin-bottom: 4px;
}

.model-card-name {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--black);
    margin-bottom: 6px;
}

.model-card-price {
    font-size: 13px;
    color: var(--gray-2);
}

    .model-card-price strong {
        font-size: 15px;
        font-weight: 600;
        color: var(--black);
    }
/* ─── FIRSAT CAROUSEL ─── */
#firsat {
    background: var(--gray-1);
}

/* ─── KAMPANYA SCROLL ─── */
.kampanya-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin: 0 -24px;
    padding: 4px 24px 20px;
}

.kampanya-scroll::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
    .kampanya-scroll {
        margin: 0 -40px;
        padding: 4px 40px 20px;
    }
}

.kampanya-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    border: 1px solid var(--gray-3);
    border-radius: var(--radius-card);
    overflow: hidden;
    text-decoration: none;
    color: var(--black);
    background: var(--white);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
}

@media (hover: hover) {
    .kampanya-card:hover {
        border-color: var(--black);
        transform: translateY(-2px);
    }
}

.kampanya-card-img {
    aspect-ratio: 16/9;
    background: var(--gray-1);
    overflow: hidden;
}

.kampanya-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kampanya-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kampanya-card-badge {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    background: #1D1D1F;
    color: #fff;
    width: fit-content;
}

.kampanya-card-title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--black);
}

.kampanya-card-sub {
    font-size: 13px;
    color: var(--gray-2);
    line-height: 1.4;
}

.kampanya-card-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.kampanya-card-date {
    font-size: 11px;
    color: var(--gray-2);
    margin-top: 4px;
}

.firsat-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: safe center;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -24px;
    padding: 4px 24px 20px;
}

    .firsat-scroll::-webkit-scrollbar {
        display: none;
    }

@media (min-width: 768px) {
    .firsat-scroll {
        margin: 0 -40px;
        padding: 4px 40px 20px;
    }
}

.firsat-scroll {
    align-items: stretch;
}

.firsat-scroll > .arac-card,
.firsat-scroll > a {
    flex: 0 0 280px;
    scroll-snap-align: start;
    height: auto;
}

.firsat-scroll > a .arac-card {
    height: 100%;
}

.firsat-scroll > .arac-card .arac-body,
.firsat-scroll > a .arac-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.firsat-scroll > .arac-card .arac-iletisim-btn,
.firsat-scroll > a .arac-iletisim-btn {
    margin-top: auto;
}

.firsat-card {
    flex-shrink: 0;
    width: 280px;
    scroll-snap-align: start;
    border: 1px solid var(--gray-3);
    border-radius: var(--radius-card);
    background: var(--white);
    overflow: hidden;
    text-decoration: none;
    color: var(--black);
    display: block;
    transition: border-color 0.2s;
}

    .firsat-card:hover {
        border-color: var(--black);
    }

.firsat-card {
    display: flex;
    flex-direction: column;
}

.firsat-card-img {
    width: 100%;
}

.firsat-card-body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 130px;
}

.firsat-card-name {
    margin-top: auto;
}

.firsat-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    min-height: 28px;
}

.tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 4px;
    border: none;
    color: #fff;
    background: var(--black);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

    .tag .material-symbols-outlined {
        font-size: 14px;
        font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
        line-height: 1;
        color: #fff;
    }

    .tag.dark {
        background: #1D1D1F;
    }

    .tag.green {
        background: #1a6b3a;
    }

    .tag.navy {
        background: #1a3a6b;
    }

    .tag.darkgray {
        background: #3a3a3a;
    }

.firsat-card-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.firsat-card-detail {
    font-size: 12px;
    color: var(--gray-2);
    margin-bottom: 12px;
}

.firsat-card-alt {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.firsat-card-price {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.firsat-card-alt .card-arrow {
    margin-left: auto;
}
/* ─── SCROLL FADE WRAPPER ─── */
.scroll-fade-wrap {
    position: relative;
}
/* ─── WIDE BANNERS ─── */
.wide-banner {
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    background: #1D1D1F;
    min-height: 220px;
    display: flex;
    align-items: stretch;
}
/* Placeholder sağ tarafa yaslanmış, yarı şeffaf */
.wide-banner-ph {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    opacity: 0.35;
    border-left: 1px dashed #444;
    background: linear-gradient(to left, rgba(255,255,255,0.03), transparent);
}

    .wide-banner-ph .icon {
        font-size: 28px;
        margin-bottom: 10px;
        display: block;
    }

    .wide-banner-ph .filename {
        font-size: 12px;
        font-weight: 500;
        color: #aaa;
    }

    .wide-banner-ph .dims {
        font-size: 10px;
        color: #777;
        margin-top: 4px;
    }

    .wide-banner-ph .folder {
        font-size: 9px;
        color: #555;
        margin-top: 3px;
    }

.wide-banner-content {
    position: relative;
    z-index: 2;
    padding: 40px 32px;
    width: 60%; /* içerik sol tarafta */
}

@media (min-width: 768px) {
    .wide-banner-content {
        padding: 56px 64px;
    }

    .wide-banner {
        min-height: 280px;
    }

    .wide-banner-ph {
        width: 42%;
    }
}

@media (max-width: 500px) {
    .wide-banner-ph {
        display: none;
    }

    .wide-banner-content {
        width: 100%;
        padding: 32px 24px;
    }
}

.wide-banner-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.wide-banner-title {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}

.wide-banner-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
    line-height: 1.5;
    max-width: 480px;
}
/* ─── SERVİS ─── */
#servis-kalite {
    background: var(--gray-1);
}

.servis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 900px) {
    .servis-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.servis-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.servis-feature {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-3);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

    .servis-feature:first-child {
        padding-top: 0;
    }

.servis-feature-num {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-2);
    width: 24px;
    flex-shrink: 0;
    padding-top: 2px;
}

.servis-feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.servis-feature-text p {
    font-size: 13px;
    color: var(--gray-2);
    line-height: 1.5;
}
/* ─── YORUMLAR ─── */
.yorumlar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
}

.yorumlar-slider-wrap {
    overflow: visible;
}

@media (min-width: 700px) {
    .yorumlar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 699px) {
    .yorumlar-slider-wrap {
        margin: 0 -16px;
        overflow: hidden;
    }

    .yorumlar-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 28px 0 0;
        padding: 4px 16px 14px;
        scroll-padding-left: 16px;
    }

    #yorumlar .inline-slider-prev {
        left: 6px;
    }

    #yorumlar .inline-slider-next {
        right: 6px;
    }

    .yorumlar-grid::-webkit-scrollbar {
        display: none;
    }

    .yorum-card {
        flex: 0 0 min(82vw, 320px);
        scroll-snap-align: start;
    }
}

.yorum-card {
    padding: 28px 28px 32px;
    border: 1px solid var(--gray-3);
    border-radius: var(--radius-card);
    transition: border-color 0.2s;
}

    .yorum-card:hover {
        border-color: var(--black);
    }

.yorum-stars {
    color: #1D1D1F;
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.yorum-text {
    font-size: 15px;
    color: var(--black);
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
}

.yorum-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.yorum-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-1);
    border: 1px solid var(--gray-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-2);
    flex-shrink: 0;
}

.yorum-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.yorum-date {
    font-size: 11px;
    color: var(--gray-2);
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px 24px;
    border: 1px solid var(--gray-3);
    border-radius: var(--radius-card);
    width: fit-content;
}

.google-rating-score {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--black);
}

.google-rating-info {
}

.google-rating-stars {
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--black);
}

.google-rating-count {
    font-size: 12px;
    color: var(--gray-2);
    margin-top: 2px;
    line-height: 1.35;
}
/* ─── KURUMSAl ─── */
#kurumsal {
    background: var(--black);
}

    #kurumsal .section-label {
        color: var(--gray-2);
    }

    #kurumsal .section-title {
        color: #FFFFFF;
    }

    #kurumsal .section-sub {
        color: rgba(255,255,255,0.55);
    }

.kurumsal-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 56px;
    align-items: center;
}

@media (min-width: 900px) {
    .kurumsal-split {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.kurumsal-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.kurumsal-stat {
}

.kurumsal-stat-num {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 6px;
}

.kurumsal-stat-label {
    font-size: 13px;
    color: var(--gray-2);
    line-height: 1.4;
}
/* ─── FOOTER ─── */
footer {
    background: #1D1D1F;
    border-top: 1px solid #333;
    padding: 64px 24px 32px;
    color: rgba(255,255,255,0.6);
}

@media (min-width: 768px) {
    footer {
        padding: 80px 40px 40px;
    }
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid #333;
}

@media (min-width: 600px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

.footer-brand .logo {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.45);
}

.footer-brand .contact-info {
    margin-top: 20px;
}

    .footer-brand .contact-info a {
        display: block;
        font-size: 13px;
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        margin-bottom: 6px;
        transition: color 0.15s;
    }

        .footer-brand .contact-info a:hover {
            color: #FFFFFF;
        }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

    .footer-social-link:hover {
        background: rgba(255,255,255,0.15);
        color: #fff;
    }

.footer-col h4 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.15s;
        }

            .footer-col ul li a:hover {
                color: #FFFFFF;
            }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-legal {
    display: flex;
    gap: 16px;
}

    .footer-legal a {
        font-size: 12px;
        color: rgba(255,255,255,0.3);
        text-decoration: none;
        transition: color 0.15s;
    }

        .footer-legal a:hover {
            color: rgba(255,255,255,0.7);
        }

.footer-hours {
    padding: 24px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footer-hours-item h5 {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.footer-hours-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
/* ─── STICKY ALT CTA (Mobil) ─── */
.sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--gray-3);
    padding: 12px 16px 16px;
    gap: 8px;
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

.sticky-cta-btn {
    flex: 1;
    padding: 12px 8px;
    border-radius: 12px;
    border: 1px solid var(--gray-3);
    background: transparent;
    color: var(--black);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    font-family: var(--font);
}

    .sticky-cta-btn:hover {
        background: var(--gray-1);
    }

    .sticky-cta-btn.wa {
        background: #25D366;
        border-color: #25D366;
        color: #FFFFFF;
        flex: 0 0 44px;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .sticky-cta-btn.wa:hover {
            opacity: 0.9;
        }

    .sticky-cta-btn.primary-m {
        background: #1D1D1F;
        color: var(--white);
        border-color: var(--black);
    }
/* chatbot removed */
/* ─── IMAGE PLACEHOLDER (standart) ─── */
.img-ph {
    background: var(--gray-1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-3);
    border-radius: 12px;
    text-align: center;
    color: var(--gray-2);
    font-family: var(--font);
    padding: 24px;
}

.img-ph-icon {
    font-size: 28px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.img-ph-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
}

.img-ph-dims {
    font-size: 11px;
    margin-top: 3px;
    color: var(--gray-2);
}

.img-ph-folder {
    font-size: 10px;
    margin-top: 3px;
    color: var(--gray-3);
}
/* ─── FADE-IN ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
/* ─── DIVIDER ─── */
.divider {
    border: none;
    border-top: 1px solid var(--gray-3);
}
/* ─── MOBILE ≤480px ─── */
@media (max-width: 480px) {
    section {
        padding: 56px 16px;
    }

    .footer-hours {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .niyet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .google-rating {
        width: 100%;
        flex-wrap: wrap;
        padding: 16px 18px;
        gap: 12px;
    }

    .kampanya-content {
        padding: 28px 20px;
    }

    .model-grid {
        padding: 4px 16px 16px;
        margin: 0 -16px;
        gap: 12px;
    }

    .model-card {
        width: 240px;
    }

    .firsat-scroll {
        padding: 4px 16px 16px;
        margin: 0 -16px;
        gap: 12px;
    }

    .firsat-card {
        width: 240px;
    }

    .wide-banner-content {
        padding: 24px 16px;
    }

    .kurumsal-stats {
        gap: 16px;
    }

    .announcement-item {
        font-size: 16px;
        padding: 0 160px;
    }
}


#apple-cards-section {
    padding: 80px 0 100px;
}

@media (min-width: 768px) {
    #apple-cards-section {
        padding: 100px 0 120px;
    }
}

.apple-cards-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .apple-cards-inner {
        grid-template-columns: 1fr 1fr;
        padding: 0 48px;
        gap: 24px;
    }
}

.apple-card {
    display: flex;
    flex-direction: column;
    background: var(--gray-1);
    border: 1px solid var(--gray-3);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .apple-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }

.apple-card-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    background: #E8E8ED;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.apple-card-ph {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apple-card-body {
    padding: 32px 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.apple-card-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-2);
}

.apple-card-title {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--black);
    margin: 0;
}

.apple-card-sub {
    font-size: 15px;
    color: var(--gray-2);
    line-height: 1.55;
    margin: 0;
    max-width: 380px;
}

.apple-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
    min-height: 42px;
    padding: 11px 18px 11px 20px;
    border-radius: var(--radius-btn);
    background: var(--black);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(29,29,31,0.14);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.apple-card-link .material-symbols-outlined {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.apple-card:hover .apple-card-link {
    background: #000;
    box-shadow: 0 10px 28px rgba(29,29,31,0.2);
    transform: translateY(-1px);
}

.apple-card:hover .apple-card-link .material-symbols-outlined {
    transform: translateX(2px);
}

.hero-img-ph {
    background: var(--white);
    border: 1px solid var(--gray-3);
    border-radius: 16px;
    aspect-ratio: 2/1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

    .hero-img-ph .ph-icon {
        font-size: 28px;
        opacity: 0.35;
        margin-bottom: 10px;
    }

    .hero-img-ph .ph-name {
        font-size: 12px;
        font-weight: 600;
        color: var(--black);
    }

    .hero-img-ph .ph-dims {
        font-size: 10px;
        color: var(--gray-2);
        margin-top: 3px;
    }

    .hero-img-ph .ph-folder {
        font-size: 9px;
        color: var(--gray-3);
        margin-top: 3px;
    }

/* Mobile home polish */
@media (max-width: 699px) {
    section {
        padding: 52px 16px;
    }

    .section-title {
        font-size: clamp(30px, 10vw, 42px);
        letter-spacing: -0.02em;
    }

    .section-label {
        margin-bottom: 8px;
    }

    .hero {
        min-height: 360px;
        height: auto;
        padding: 86px 0 34px;
        align-items: flex-end;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-content-inner {
        max-width: 310px;
    }

    .hero-label {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.08;
        margin-bottom: 8px;
    }

    .hero-sub {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .hero-ctas {
        gap: 8px;
    }

    .btn-primary,
    .btn-outline,
    .btn-dark,
    .btn-ghost {
        padding: 10px 16px;
        font-size: 12px;
    }

    #announcement-band {
        height: 34px;
    }

    .announcement-item {
        font-size: 13px;
        padding: 0 96px;
    }

    #niyet {
        padding-top: 38px;
        padding-bottom: 46px;
    }

    .niyet-header,
    .model-header {
        margin-bottom: 18px;
    }

    .niyet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .niyet-card-visual {
        aspect-ratio: 3 / 4;
        border-radius: 12px;
    }

    .niyet-card-label {
        margin-top: 7px;
        font-size: 10px;
        line-height: 1.25;
    }

    #kampanya {
        padding: 48px 16px 46px;
    }

    #kampanya-section,
    #modeller,
    #firsat,
    #sss {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .model-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
        flex-wrap: wrap !important;
    }

    .model-header .section-title {
        font-size: 24px !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        letter-spacing: -0.02em !important;
        color: #1D1D1F !important;
        margin-bottom: 12px !important;
    }

    .model-header .section-label {
        font-size: 10px !important;
        font-weight: 700 !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        color: #86868B !important;
        margin-bottom: 4px !important;
    }

    .model-header .btn-ghost {
        display: inline-flex !important;
        align-items: center !important;
        padding: 8px 18px !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        color: #1D1D1F !important;
        border: 1px solid #D2D2D7 !important;
        border-radius: 980px !important;
        margin-top: 4px !important;
        margin-bottom: 0 !important;
        white-space: nowrap !important;
        align-self: flex-start !important;
    }

    .scroll-fade-wrap {
        max-width: none;
        width: 100%;
    }

    .model-grid,
    .kampanya-scroll,
    .firsat-scroll {
        justify-content: flex-start;
        gap: 12px;
        margin: 0 -16px;
        padding: 4px 16px 14px;
        scroll-padding-left: 16px;
    }

    .model-card,
    .firsat-card,
    .firsat-scroll > a {
        width: min(78vw, 310px);
        flex: 0 0 min(78vw, 310px);
    }

    .kampanya-card {
        width: min(82vw, 320px);
        flex: 0 0 min(82vw, 320px);
    }

    .kampanya-card-img,
    .model-card-img,
    .arac-img {
        min-height: 132px;
    }

    .kampanya-card-body,
    .model-card-body {
        padding: 14px;
    }

    .apple-cards-inner {
        padding: 0 16px;
        gap: 14px;
    }

    #apple-cards-section {
        padding: 44px 0 52px;
    }

    .apple-card {
        border-radius: 12px;
    }

    .apple-card-body {
        padding: 18px;
    }

    .apple-card-title {
        font-size: 28px;
    }

    .servis-grid {
        gap: 22px;
    }

    .servis-feature {
        padding: 14px 0;
        gap: 12px;
    }

    .google-rating {
        align-items: center;
    }

    #kurumsal {
        padding-top: 52px;
        padding-bottom: 52px;
    }
}

@media (min-width: 768px) {
    #kampanya .scroll-fade-wrap,
    #modeller .scroll-fade-wrap,
    #firsat .scroll-fade-wrap {
        max-width: calc(var(--max) + 96px);
        padding-left: 48px;
        padding-right: 48px;
        overflow: visible;
    }

    #kampanya .kampanya-scroll,
    #modeller .model-grid,
    #firsat .firsat-scroll {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    #kampanya .inline-slider-prev,
    #modeller .inline-slider-prev,
    #firsat .inline-slider-prev {
        left: 24px;
    }

    #kampanya .inline-slider-next,
    #modeller .inline-slider-next,
    #firsat .inline-slider-next {
        right: 24px;
    }
}

@media (max-width: 767px) {
    #kampanya .scroll-fade-wrap,
    #modeller .scroll-fade-wrap,
    #firsat .scroll-fade-wrap {
        overflow: hidden;
    }
}
